POSIX Simulator: Handle `pthread`s not created by FreeRTOS differently (#1223)

pull/1230/head^2
John Boiles 6 days ago committed by GitHub
parent 72bb476bf3
commit 2b35979a1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -105,6 +105,8 @@ static BaseType_t xSchedulerEnd = pdFALSE;
static pthread_t hTimerTickThread;
static bool xTimerTickThreadShouldRun;
static uint64_t prvStartTimeNs;
static pthread_mutex_t xThreadMutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_key_t xThreadKey = 0;
/*-----------------------------------------------------------*/
static void prvSetupSignalsAndSchedulerPolicy( void );
@ -119,6 +121,45 @@ static void vPortStartFirstTask( void );
static void prvPortYieldFromISR( void );
/*-----------------------------------------------------------*/
void prvThreadKeyDestructor( void * data )
{
free( data );
}
static void prvInitThreadKey()
{
pthread_mutex_lock( &xThreadMutex );
if( xThreadKey == 0 )
{
pthread_key_create( &xThreadKey, prvThreadKeyDestructor );
}
pthread_mutex_unlock( &xThreadMutex );
}
static void prvMarkAsFreeRTOSThread( pthread_t thread )
{
prvInitThreadKey();
uint8_t * thread_data = malloc( 1 );
configASSERT( thread_data != NULL );
*thread_data = 1;
pthread_setspecific( xThreadKey, thread_data );
}
static BaseType_t prvIsFreeRTOSThread( pthread_t thread )
{
uint8_t * thread_data = ( uint8_t * ) pthread_getspecific( xThreadKey );
return thread_data != NULL && *thread_data == 1;
}
static void prvDestroyThreadKey()
{
pthread_key_delete( xThreadKey );
}
/*-----------------------------------------------------------*/
static void prvFatalError( const char * pcCall,
int iErrno ) __attribute__( ( __noreturn__ ) );
@ -249,6 +290,8 @@ BaseType_t xPortStartScheduler( void )
/* Restore original signal mask. */
( void ) pthread_sigmask( SIG_SETMASK, &xSchedulerOriginalSignalMask, NULL );
prvDestroyThreadKey();
return 0;
}
/*-----------------------------------------------------------*/
@ -266,8 +309,12 @@ void vPortEndScheduler( void )
( void ) pthread_kill( hMainThread, SIG_RESUME );
/* Waiting to be deleted here. */
if( prvIsFreeRTOSThread( pthread_self() ) == pdTRUE )
{
pxCurrentThread = prvGetThreadFromTask( xTaskGetCurrentTaskHandle() );
event_wait( pxCurrentThread->ev );
}
pthread_testcancel();
}
/*-----------------------------------------------------------*/
@ -321,15 +368,21 @@ void vPortYield( void )
/*-----------------------------------------------------------*/
void vPortDisableInterrupts( void )
{
if( prvIsFreeRTOSThread( pthread_self() ) == pdTRUE )
{
pthread_sigmask(SIG_BLOCK, &xAllSignals, NULL);
}
}
/*-----------------------------------------------------------*/
void vPortEnableInterrupts( void )
{
if( prvIsFreeRTOSThread( pthread_self() ) == pdTRUE )
{
pthread_sigmask(SIG_UNBLOCK, &xAllSignals, NULL);
}
}
/*-----------------------------------------------------------*/
UBaseType_t xPortSetInterruptMask( void )
@ -364,6 +417,8 @@ static void * prvTimerTickHandler( void * arg )
{
( void ) arg;
prvMarkAsFreeRTOSThread( pthread_self() );
prvPortSetCurrentThreadName("Scheduler timer");
while( xTimerTickThreadShouldRun )
@ -395,6 +450,8 @@ void prvSetupTimerInterrupt( void )
/*-----------------------------------------------------------*/
static void vPortSystemTickHandler( int sig )
{
if( prvIsFreeRTOSThread( pthread_self() ) == pdTRUE )
{
Thread_t * pxThreadToSuspend;
Thread_t * pxThreadToResume;
@ -416,6 +473,9 @@ static void vPortSystemTickHandler( int sig )
}
uxCriticalNesting--;
} else {
fprintf( stderr, "vPortSystemTickHandler called from non-FreeRTOS thread\n" );
}
}
/*-----------------------------------------------------------*/
@ -448,6 +508,8 @@ static void * prvWaitForStart( void * pvParams )
{
Thread_t * pxThread = pvParams;
prvMarkAsFreeRTOSThread( pthread_self() );
prvSuspendSelf( pxThread );
/* Resumed for the first time, unblocks all signals. */

Loading…
Cancel
Save