Saved Bookmarks
| 1. |
What Is The Difference Between Yielding And Sleeping? |
|
Answer» When a task invokes its YIELD() METHOD, it RETURNS to the ready STATE. When a task invokes its SLEEP() method, it returns to the waiting state. When a task invokes its yield() method, it returns to the ready state. When a task invokes its sleep() method, it returns to the waiting state. |
|