* returns an QueueHandle_t variable that can then be used as a parameter to\r
* xQueueSend(), xQueueReceive(), etc.\r
*/\r
-struct QueueDefinition;\r
+struct QueueDefinition; /* Using old naming convention so as not to break kernel aware debuggers. */\r
typedef struct QueueDefinition * QueueHandle_t;\r
\r
/**\r
* \defgroup TaskHandle_t TaskHandle_t\r
* \ingroup Tasks\r
*/\r
-struct TaskControlBlock_t;\r
-typedef struct TaskControlBlock_t* TaskHandle_t;\r
+struct tskTaskControlBlock;\r
+typedef struct tskTaskControlBlock* TaskHandle_t;\r
\r
/*\r
* Defines the prototype to which the application task hook function must\r
* and stores task state information, including a pointer to the task's context\r
* (the task's run time environment, including register values)\r
*/\r
-typedef struct TaskControlBlock_t\r
+typedef struct tskTaskControlBlock\r
{\r
volatile StackType_t *pxTopOfStack; /*< Points to the location of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */\r
\r