Home
last modified time | relevance | path

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

/Kernel-v10.6.2/portable/ThirdParty/GCC/ARM_TFM/
Dos_wrapper_freertos.c58 uint32_t os_wrapper_mutex_acquire( void * handle, uint32_t timeout ) in os_wrapper_mutex_acquire() argument
62 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() argument
80 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() argument
94 vSemaphoreDelete( ( SemaphoreHandle_t ) handle ); in os_wrapper_mutex_delete()
/Kernel-v10.6.2/portable/IAR/AVR32_UC3/
Dwrite.c102 size_t __write(int handle, const uint8_t *buffer, size_t size) in __write() argument
114 if (handle != _LLIO_STDOUT && handle != _LLIO_STDERR) in __write()
Dread.c98 size_t __read(int handle, uint8_t *buffer, size_t size) in __read() argument
104 if (handle != _LLIO_STDIN) in __read()
/Kernel-v10.6.2/portable/ThirdParty/GCC/ATmega/
Dreadme.md49 …han 83 microseconds for each cycle, whilst still running the Scheduler to handle display and input.
/Kernel-v10.6.2/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-v10.6.2/
DHistory.txt351 + If there is an attempt to add the same queue or semaphore handle to the
843 + Added the xTaskGetTaskHandle() API function, which obtains a task handle
846 The handle returned by xTaskGetTaskHandle() can then be stored locally for
849 a queue from the queue's handle.
1881 + xTaskCreateGeneric() has a parameter that can be used to pass the handle
2438 + Allow a task to delete itself by passing in its own handle. Previously