Fix pthread_cleanup_push() to new API after rebase.

This commit is contained in:
Jukka Jylänki 2015-05-27 15:38:14 +03:00
Родитель 52072b4412
Коммит fe15b39f30
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -622,7 +622,7 @@ var LibraryPThread = {
if (PThread.exitHandlers === null) {
PThread.exitHandlers = [];
if (!ENVIRONMENT_IS_PTHREAD) {
__ATEXIT__.push({ func: function() { PThread.runExitHandlers(); } });
__ATEXIT__.push(function() { PThread.runExitHandlers(); });
}
}
PThread.exitHandlers.push(function() { Runtime.dynCall('vi', routine, [arg]) });

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

@ -102,7 +102,7 @@ var LibraryPThreadStub = {
},
pthread_cleanup_push: function(routine, arg) {
__ATEXIT__.push({ func: function() { Runtime.dynCall('vi', routine, [arg]) } })
__ATEXIT__.push(function() { Runtime.dynCall('vi', routine, [arg]) })
_pthread_cleanup_push.level = __ATEXIT__.length;
},