mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-01 08:54:14 -04:00
Update the documentation contained in the header files to be correct for V9.0.0 release candidate 2.
This commit is contained in:
parent
6568ba6eb0
commit
9dda62372c
9 changed files with 176 additions and 153 deletions
|
@ -261,6 +261,16 @@ StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t px
|
|||
xThreadState *pxThreadState = NULL;
|
||||
int8_t *pcTopOfStack = ( int8_t * ) pxTopOfStack;
|
||||
|
||||
#ifdef portSOAK_TEST
|
||||
{
|
||||
/* Ensure highest priority class is inherited. */
|
||||
if( !SetPriorityClass( GetCurrentProcess(), REALTIME_PRIORITY_CLASS ) )
|
||||
{
|
||||
printf( "SetPriorityClass() failed\r\n" );
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
/* In this simulated case a stack is not initialised, but instead a thread
|
||||
is created that will execute the task being created. The thread handles
|
||||
the context switching itself. The xThreadState object is placed onto
|
||||
|
|
|
@ -70,6 +70,7 @@
|
|||
#ifndef PORTMACRO_H
|
||||
#define PORTMACRO_H
|
||||
|
||||
#include <Windows.h>
|
||||
|
||||
/******************************************************************************
|
||||
Defines
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue