Searched refs:handle (Results 1 – 6 of 6) sorted by relevance
58 uint32_t os_wrapper_mutex_acquire( void * handle, uint32_t timeout ) in os_wrapper_mutex_acquire() argument62 if( ! handle ) in os_wrapper_mutex_acquire()65 xRet = xSemaphoreTake( ( SemaphoreHandle_t ) handle, in os_wrapper_mutex_acquire()76 uint32_t os_wrapper_mutex_release( void * handle ) in os_wrapper_mutex_release() argument80 if( !handle ) in os_wrapper_mutex_release()83 xRet = xSemaphoreGive( ( SemaphoreHandle_t ) handle ); in os_wrapper_mutex_release()92 uint32_t os_wrapper_mutex_delete( void * handle ) in os_wrapper_mutex_delete() argument94 vSemaphoreDelete( ( SemaphoreHandle_t ) handle ); in os_wrapper_mutex_delete()
102 size_t __write(int handle, const uint8_t *buffer, size_t size) in __write() argument114 if (handle != _LLIO_STDOUT && handle != _LLIO_STDERR) in __write()
98 size_t __read(int handle, uint8_t *buffer, size_t size) in __read() argument104 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.
351 + If there is an attempt to add the same queue or semaphore handle to the843 + Added the xTaskGetTaskHandle() API function, which obtains a task handle846 The handle returned by xTaskGetTaskHandle() can then be stored locally for849 a queue from the queue's handle.1881 + xTaskCreateGeneric() has a parameter that can be used to pass the handle2438 + Allow a task to delete itself by passing in its own handle. Previously