le_thread.h
Go to the documentation of this file.
66 * le_thread_Cancel() or <c>pthread_cancel()</c>), it will be blocked and remain in a pending state67 * until cancellation is unblocked (also using pthread_setcancelstate()), at which time the thread104 * lack of synchronization. If threads share data, they @b MUST be synchronized with each other to107 * @warning This documentation assumes that the reader is familiar with multi-thread synchronization148 * dies, then that thread must call le_thread_CleanupLegatoThreadData() before it exits. Otherwise171 //--------------------------------------------------------------------------------------------------177 //--------------------------------------------------------------------------------------------------181 //--------------------------------------------------------------------------------------------------186 * They are privileged levels and will therefore not be allowed unless the application is executed193 //--------------------------------------------------------------------------------------------------245 //--------------------------------------------------------------------------------------------------251 //--------------------------------------------------------------------------------------------------255 //--------------------------------------------------------------------------------------------------264 //--------------------------------------------------------------------------------------------------266 (272 //--------------------------------------------------------------------------------------------------283 //--------------------------------------------------------------------------------------------------292 //--------------------------------------------------------------------------------------------------296 //--------------------------------------------------------------------------------------------------299 //--------------------------------------------------------------------------------------------------310 //--------------------------------------------------------------------------------------------------323 //--------------------------------------------------------------------------------------------------331 //--------------------------------------------------------------------------------------------------339 //--------------------------------------------------------------------------------------------------356 //--------------------------------------------------------------------------------------------------365 //--------------------------------------------------------------------------------------------------372 //--------------------------------------------------------------------------------------------------379 //--------------------------------------------------------------------------------------------------391 //--------------------------------------------------------------------------------------------------396 //--------------------------------------------------------------------------------------------------400 * Setting the stack explicitly allows the caller to control the memory allocation of the thread's404 * The macro LE_THREAD_DEFINE_STATIC_STACK() may be used to create a statically allocated stack for407 * @attention In general, this function is only useful on embedded, RTOS based systems in order to416 //--------------------------------------------------------------------------------------------------427 //--------------------------------------------------------------------------------------------------433 //--------------------------------------------------------------------------------------------------440 //--------------------------------------------------------------------------------------------------445 //--------------------------------------------------------------------------------------------------452 //--------------------------------------------------------------------------------------------------474 //--------------------------------------------------------------------------------------------------484 //--------------------------------------------------------------------------------------------------488 //--------------------------------------------------------------------------------------------------497 //--------------------------------------------------------------------------------------------------509 //--------------------------------------------------------------------------------------------------516 //--------------------------------------------------------------------------------------------------522 //--------------------------------------------------------------------------------------------------529 //--------------------------------------------------------------------------------------------------533 //--------------------------------------------------------------------------------------------------542 //--------------------------------------------------------------------------------------------------546 //--------------------------------------------------------------------------------------------------553 //--------------------------------------------------------------------------------------------------560 //--------------------------------------------------------------------------------------------------562 (568 //--------------------------------------------------------------------------------------------------572 //--------------------------------------------------------------------------------------------------576 //--------------------------------------------------------------------------------------------------587 //--------------------------------------------------------------------------------------------------595 //--------------------------------------------------------------------------------------------------604 * avoid a race condition that can cause resource leakage when a parent thread passes dynamically609 * For example, a thread @e T1 could allocate an object from a memory pool, create a thread @e T2,614 * released. So, we allow @e T1 to register a destructor function for @e T2 before starting @e T2.618 //--------------------------------------------------------------------------------------------------627 //--------------------------------------------------------------------------------------------------631 //--------------------------------------------------------------------------------------------------639 //--------------------------------------------------------------------------------------------------650 //--------------------------------------------------------------------------------------------------657 //--------------------------------------------------------------------------------------------------661 //--------------------------------------------------------------------------------------------------664 //--------------------------------------------------------------------------------------------------675 //--------------------------------------------------------------------------------------------------686 //--------------------------------------------------------------------------------------------------688 * Clean-up the thread-specific data that was initialized using le_thread_InitLegatoThreadData().695 //--------------------------------------------------------------------------------------------------LE_FULL_API le_result_t le_thread_Cancel(le_thread_Ref_t threadToCancel)void le_thread_RemoveDestructor(le_thread_DestructorRef_t destructor)struct le_thread_Destructor * le_thread_DestructorRef_tDefinition: le_thread.h:573le_result_t le_thread_SetStackSize(le_thread_Ref_t thread, size_t size)le_result_t le_thread_SetPriority(le_thread_Ref_t thread, le_thread_Priority_t priority)void le_thread_GetName(le_thread_Ref_t threadRef, char *buffPtr, size_t buffSize)le_result_t le_thread_Join(le_thread_Ref_t thread, void **resultValuePtr)void le_thread_SetJoinable(le_thread_Ref_t thread)le_thread_Ref_t le_thread_GetCurrent(void)Medium, non-real-time priority level. THIS IS THE DEFAULT.Definition: le_thread.h:203le_result_t le_thread_SetStack(le_thread_Ref_t thread, void *stack, size_t size)void le_thread_CleanupLegatoThreadData(void)void le_thread_InitLegatoThreadData(const char *name)void le_thread_Exit(void *resultValue)le_thread_DestructorRef_t le_thread_AddDestructor(le_thread_Destructor_t destructor, void *context)void le_thread_AddChildDestructor(le_thread_Ref_t thread, le_thread_Destructor_t destructor, void *context)Definition: le_thread.h:198const char * le_thread_GetMyName(void)Lowest priority level. Only runs when nothing else to do.Definition: le_thread.h:196void le_thread_Start(le_thread_Ref_t thread)Definition: le_thread.h:206le_thread_Ref_t le_thread_Create(const char *name, le_thread_MainFunc_t mainFunc, void *context)