File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
portable/ThirdParty/GCC/Posix Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 44
44
*
45
45
* In addition to it's value, each list item contains a pointer to the next
46
46
* item in the list (pxNext), a pointer to the list it is in (pxContainer)
47
- * and a pointer to back to the object that contains it. These later two
47
+ * and a pointer back to the object that contains it. These later two
48
48
* pointers are included for efficiency of list manipulation. There is
49
49
* effectively a two way link between the object containing the list item and
50
50
* the list item itself.
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ void prvFatalError( const char * pcCall,
193
193
}
194
194
/*-----------------------------------------------------------*/
195
195
196
- static void prvPortSetCurrentThreadName ( char * pxThreadName )
196
+ static void prvPortSetCurrentThreadName ( const char * pxThreadName )
197
197
{
198
198
#ifdef __APPLE__
199
199
pthread_setname_np ( pxThreadName );
You can’t perform that action at this time.
0 commit comments