Merge implementations of priority scheduling by Themis and Saleh #11

Closed
td1223 wants to merge 14 commits from task1/priority-scheduling into task1/merged/priority-scheduling
4 changed files with 25 additions and 131 deletions
Showing only changes of commit 54b46806ba - Show all commits

View File

@@ -219,6 +219,7 @@ thread_create (const char *name, int priority,
/* Add to run queue. */
thread_unblock (t);
thread_yield ();
return tid;
}