File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
portable/ThirdParty/GCC/Posix Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 70
70
typedef struct THREAD
71
71
{
72
72
pthread_t pthread ;
73
- pdTASK_CODE pxCode ;
73
+ TaskFunction_t pxCode ;
74
74
void * pvParams ;
75
75
BaseType_t xDying ;
76
76
struct event * ev ;
@@ -122,7 +122,7 @@ static void prvFatalError( const char *pcCall, int iErrno )
122
122
*/
123
123
portSTACK_TYPE * pxPortInitialiseStack ( portSTACK_TYPE * pxTopOfStack ,
124
124
portSTACK_TYPE * pxEndOfStack ,
125
- pdTASK_CODE pxCode , void * pvParameters )
125
+ TaskFunction_t pxCode , void * pvParameters )
126
126
{
127
127
Thread_t * thread ;
128
128
pthread_attr_t xThreadAttributes ;
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ typedef unsigned long TickType_t;
70
70
#define portSTACK_GROWTH ( -1 )
71
71
#define portHAS_STACK_OVERFLOW_CHECKING ( 1 )
72
72
#define portTICK_PERIOD_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ )
73
- #define portTICK_RATE_MICROSECONDS ( ( portTickType ) 1000000 / configTICK_RATE_HZ )
73
+ #define portTICK_RATE_MICROSECONDS ( ( TickType_t ) 1000000 / configTICK_RATE_HZ )
74
74
#define portBYTE_ALIGNMENT 8
75
75
/*-----------------------------------------------------------*/
76
76
You can’t perform that action at this time.
0 commit comments