diff options
-rw-r--r-- | src/library.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/library.js b/src/library.js index a288b739..38e56091 100644 --- a/src/library.js +++ b/src/library.js @@ -6718,8 +6718,15 @@ LibraryManager.library = { }, pthread_cond_init: function() {}, pthread_cond_destroy: function() {}, - pthread_cond_broadcast: function() {}, - pthread_cond_wait: function() {}, + pthread_cond_broadcast: function() { + return 0; + }, + pthread_cond_wait: function() { + return 0; + }, + pthread_cond_timedwait: function() { + return 0; + }, pthread_self: function() { //FIXME: assumes only a single thread return 0; |