Merge pull request #924 from waywardmonkeys/implement-sched-yield

Implement stub for sched_yield().
This commit is contained in:
Alon Zakai 2013-03-05 17:23:27 -08:00
Родитель 566f2d6abe 4c0a6fa14e
Коммит 509dc21a48
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -6702,6 +6702,13 @@ LibraryManager.library = {
return 0;
},
// ==========================================================================
// sched.h (stubs only - no thread support yet!)
// ==========================================================================
sched_yield: function() {
return 0;
},
// ==========================================================================
// pthread.h (stubs for mutexes only - no thread support yet!)
// ==========================================================================