Changeset 367 for trunk/kernel/kern/thread.h
- Timestamp:
- Aug 14, 2017, 11:39:03 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/thread.h
r337 r367 368 368 *************************************************************************************** 369 369 * @ thread : local pointer on target thread. 370 * @ mask : mask on selected signal.370 *s released all locks @ mask : mask on selected signal. 371 371 **************************************************************************************/ 372 372 inline void thread_set_signal( thread_t * thread, … … 400 400 401 401 /*************************************************************************************** 402 * This function checks if the calling thread must be descheduled.403 * **************************************************************************************404 * @ returns true if no locks taken, and elapsed time.405 **************************************************************************************/ 406 bool_tthread_check_sched();402 * This function implements the delayed descheduling machanism : It is called by 403 * all lock release functions, and calls the sched_yield() function when all locks 404 * have beeen released and the THREAD_FLAG_SCHED flag is set. 405 **************************************************************************************/ 406 void thread_check_sched(); 407 407 408 408 /***************************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.