diff options
-rw-r--r-- | src/library.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js index d4eeb353..57ac5755 100644 --- a/src/library.js +++ b/src/library.js @@ -6407,6 +6407,11 @@ LibraryManager.library = { _pthread_key_create.keys[key] = value; }, + pthread_cleanup__deps: ['atexit'], + pthread_cleanup_push: function(routine, arg) { + _atexit(routine, arg); + }, + // ========================================================================== // malloc.h // ========================================================================== |