diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-02 17:37:49 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-02 17:37:49 -0800 |
commit | a5b5727088bcdbe4a8d0c10043ebc95fadfbd0c7 (patch) | |
tree | d06798d5a646a46f4c896a0b790ebc7a825e2d8c | |
parent | 87b9fe11e545049173d9fb251c403dbd87786490 (diff) |
SDL mutex stubs
-rw-r--r-- | src/library_sdl.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/library_sdl.js b/src/library_sdl.js index f8d252fb..dcf71053 100644 --- a/src/library_sdl.js +++ b/src/library_sdl.js @@ -1160,6 +1160,8 @@ var LibrarySDL = { SDL_CreateMutex: function() { return 0 }, SDL_LockMutex: function() {}, SDL_UnlockMutex: function() {}, + SDL_mutexP: function() { return 0 }, + SDL_mutexV: function() { return 0 }, SDL_DestroyMutex: function() {}, SDL_CreateCond: function() { return 0 }, |