Searched refs:handle (Results 1 – 6 of 6) sorted by relevance
59 uint32_t os_wrapper_mutex_acquire( void * handle, in os_wrapper_mutex_acquire() argument64 if( !handle ) in os_wrapper_mutex_acquire()69 xRet = xSemaphoreTake( ( SemaphoreHandle_t ) handle, in os_wrapper_mutex_acquire()84 uint32_t os_wrapper_mutex_release( void * handle ) in os_wrapper_mutex_release() argument88 if( !handle ) in os_wrapper_mutex_release()93 xRet = xSemaphoreGive( ( SemaphoreHandle_t ) handle ); in os_wrapper_mutex_release()106 uint32_t os_wrapper_mutex_delete( void * handle ) in os_wrapper_mutex_delete() argument108 vSemaphoreDelete( ( SemaphoreHandle_t ) handle ); in os_wrapper_mutex_delete()
103 size_t __write( int handle, in __write() argument117 if( ( handle != _LLIO_STDOUT ) && ( handle != _LLIO_STDERR ) ) in __write()
99 size_t __read( int handle, in __read() argument107 if( handle != _LLIO_STDIN ) in __read()
49 …han 83 microseconds for each cycle, whilst still running the Scheduler to handle display and input.
335 reserve space on its stack to handle interrupts. The size of the interrupt581 are mentioned because there is code to handle them in xtensa_vectors.S.
520 + If there is an attempt to add the same queue or semaphore handle to the1012 + Added the xTaskGetTaskHandle() API function, which obtains a task handle1015 The handle returned by xTaskGetTaskHandle() can then be stored locally for1018 a queue from the queue's handle.2050 + xTaskCreateGeneric() has a parameter that can be used to pass the handle2607 + Allow a task to delete itself by passing in its own handle. Previously