Merge implementations of priority scheduling form Themis and Saleh #10

Closed
td1223 wants to merge 13 commits from task1/priority-scheduling into task1/merged/priority-scheduling
4 changed files with 26 additions and 139 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. */ /* Add to run queue. */
thread_unblock (t); thread_unblock (t);
thread_yield ();
return tid; return tid;
} }