We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8252ede commit 995cec9Copy full SHA for 995cec9
portable/ThirdParty/GCC/Posix/port.c
@@ -73,7 +73,7 @@
73
typedef struct THREAD
74
{
75
pthread_t pthread;
76
- pdTASK_CODE pxCode;
+ TaskFunction_t pxCode;
77
void * pvParams;
78
BaseType_t xDying;
79
struct event * ev;
@@ -124,9 +124,9 @@ static void prvFatalError( const char * pcCall,
124
/*
125
* See header file for description.
126
*/
127
-portSTACK_TYPE * pxPortInitialiseStack( portSTACK_TYPE * pxTopOfStack,
128
- portSTACK_TYPE * pxEndOfStack,
129
- pdTASK_CODE pxCode,
+portSTACK_TYPE * pxPortInitialiseStack( StackType_t * pxTopOfStack,
+ StackType_t * pxEndOfStack,
+ TaskFunction_t pxCode,
130
void * pvParameters )
131
132
Thread_t * thread;
0 commit comments