Changeset 581 for trunk/kernel/kern/scheduler.c
- Timestamp:
- Oct 10, 2018, 3:11:53 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/scheduler.c
r564 r581 411 411 #endif 412 412 413 // check current thread busylocks counter 413 // This assert should never be false, as this check must be 414 // done before by any function that can possibly deschedule... 414 415 assert( (current->busylocks == 0), 415 " thread cannot yield :busylocks = %d\n", current->busylocks );416 "unexpected descheduling of thread holding %d busylocks = %d\n", current->busylocks ); 416 417 417 418 // activate or create an RPC thread if RPC_FIFO non empty
Note: See TracChangeset
for help on using the changeset viewer.