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 (271 //--------------------------------------------------------------------------------------------------278 //--------------------------------------------------------------------------------------------------287 //--------------------------------------------------------------------------------------------------295 //--------------------------------------------------------------------------------------------------303 //--------------------------------------------------------------------------------------------------320 //--------------------------------------------------------------------------------------------------329 //--------------------------------------------------------------------------------------------------335 //--------------------------------------------------------------------------------------------------342 //--------------------------------------------------------------------------------------------------347 //--------------------------------------------------------------------------------------------------354 //--------------------------------------------------------------------------------------------------376 //--------------------------------------------------------------------------------------------------386 //--------------------------------------------------------------------------------------------------390 //--------------------------------------------------------------------------------------------------399 //--------------------------------------------------------------------------------------------------408 //--------------------------------------------------------------------------------------------------415 //--------------------------------------------------------------------------------------------------421 //--------------------------------------------------------------------------------------------------428 //--------------------------------------------------------------------------------------------------432 //--------------------------------------------------------------------------------------------------441 //--------------------------------------------------------------------------------------------------445 //--------------------------------------------------------------------------------------------------452 //--------------------------------------------------------------------------------------------------459 //--------------------------------------------------------------------------------------------------461 (467 //--------------------------------------------------------------------------------------------------471 //--------------------------------------------------------------------------------------------------475 //--------------------------------------------------------------------------------------------------486 //--------------------------------------------------------------------------------------------------494 //--------------------------------------------------------------------------------------------------503 * avoid a race condition that can cause resource leakage when a parent thread passes dynamically508 * For example, a thread @e T1 could allocate an object from a memory pool, create a thread @e T2,513 * released. So, we allow @e T1 to register a destructor function for @e T2 before starting @e T2.517 //--------------------------------------------------------------------------------------------------526 //--------------------------------------------------------------------------------------------------530 //--------------------------------------------------------------------------------------------------537 //--------------------------------------------------------------------------------------------------546 //--------------------------------------------------------------------------------------------------553 //--------------------------------------------------------------------------------------------------555 * Clean-up the thread-specific data that was initialized using le_thread_InitLegatoThreadData().562 //--------------------------------------------------------------------------------------------------void le_thread_RemoveDestructor(le_thread_DestructorRef_t destructor)le_result_t le_thread_Cancel(le_thread_Ref_t threadToCancel)struct le_thread_Destructor * le_thread_DestructorRef_tDefinition: le_thread.h:472le_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:203void 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)