Home
last modified time | relevance | path

Searched refs:handle (Results 1 – 6 of 6) sorted by relevance

/Kernel-v11.1.0/portable/ThirdParty/GCC/ARM_TFM/
Dos_wrapper_freertos.c59 uint32_t os_wrapper_mutex_acquire( void * handle, in os_wrapper_mutex_acquire() argument
64 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() argument
88 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() argument
108 vSemaphoreDelete( ( SemaphoreHandle_t ) handle ); in os_wrapper_mutex_delete()
/Kernel-v11.1.0/portable/IAR/AVR32_UC3/
Dwrite.c103 size_t __write( int handle, in __write() argument
117 if( ( handle != _LLIO_STDOUT ) && ( handle != _LLIO_STDERR ) ) in __write()
Dread.c99 size_t __read( int handle, in __read() argument
107 if( handle != _LLIO_STDIN ) in __read()
/Kernel-v11.1.0/portable/ThirdParty/GCC/ATmega/
Dreadme.md49 …han 83 microseconds for each cycle, whilst still running the Scheduler to handle display and input.
/Kernel-v11.1.0/portable/ThirdParty/XCC/Xtensa/
Dreadme_xtensa.txt335 reserve space on its stack to handle interrupts. The size of the interrupt
581 are mentioned because there is code to handle them in xtensa_vectors.S.
/Kernel-v11.1.0/
DHistory.txt520 + If there is an attempt to add the same queue or semaphore handle to the
1012 + Added the xTaskGetTaskHandle() API function, which obtains a task handle
1015 The handle returned by xTaskGetTaskHandle() can then be stored locally for
1018 a queue from the queue's handle.
2050 + xTaskCreateGeneric() has a parameter that can be used to pass the handle
2607 + Allow a task to delete itself by passing in its own handle. Previously