diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-04 17:46:21 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-04 17:46:21 -0800 |
commit | 8cdfca24e3955fd1c340bbc0635e8c442963fe6f (patch) | |
tree | 23112cdd330f0626b7159985561db39ccd4e9035 /src | |
parent | 71ea2d712934c28b866a19041d3d9459398d9528 (diff) |
pthread_mutexattr_setpshared stub
Diffstat (limited to 'src')
-rw-r--r-- | src/library.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js index 106c4f74..aec98b2d 100644 --- a/src/library.js +++ b/src/library.js @@ -6876,6 +6876,10 @@ LibraryManager.library = { pthread_mutex_trylock: function() { return 0; }, + pthread_mutexattr_setpshared: function(attr, pshared) { + // XXX implement if/when getpshared is required + return 0; + }, pthread_cond_init: function() {}, pthread_cond_destroy: function() {}, pthread_cond_broadcast: function() { |