mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-01 08:54:14 -04:00
Minor updates to fix issues with the Segger kernel aware plug since V10.1.0.
This commit is contained in:
parent
9bda04b472
commit
0d6e3df7ec
3 changed files with 4 additions and 4 deletions
|
@ -44,7 +44,7 @@ extern "C" {
|
|||
* returns an QueueHandle_t variable that can then be used as a parameter to
|
||||
* xQueueSend(), xQueueReceive(), etc.
|
||||
*/
|
||||
struct QueueDefinition;
|
||||
struct QueueDefinition; /* Using old naming convention so as not to break kernel aware debuggers. */
|
||||
typedef struct QueueDefinition * QueueHandle_t;
|
||||
|
||||
/**
|
||||
|
|
|
@ -58,8 +58,8 @@ extern "C" {
|
|||
* \defgroup TaskHandle_t TaskHandle_t
|
||||
* \ingroup Tasks
|
||||
*/
|
||||
struct TaskControlBlock_t;
|
||||
typedef struct TaskControlBlock_t* TaskHandle_t;
|
||||
struct tskTaskControlBlock;
|
||||
typedef struct tskTaskControlBlock* TaskHandle_t;
|
||||
|
||||
/*
|
||||
* Defines the prototype to which the application task hook function must
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue