We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ea47e0 commit d032a89Copy full SHA for d032a89
src/library_syscall.js
@@ -305,10 +305,6 @@ var SyscallsLibrary = {
305
return 0;
306
},
307
308
- __sys_exit: function(status) {
309
- exit(status);
310
- // no return
311
- },
312
__sys_open: function(path, flags, varargs) {
313
var pathname = SYSCALLS.getStr(path);
314
var mode = varargs ? SYSCALLS.get() : 0;
@@ -1214,13 +1210,6 @@ var SyscallsLibrary = {
1214
1210
#endif // SYSCALLS_REQUIRE_FILESYSTEM
1215
1211
1216
1212
1217
-#if MINIMAL_RUNTIME
1218
- __sys_exit_group__deps: ['$exit'],
1219
-#endif
1220
- __sys_exit_group: function(status) {
1221
1222
- return 0;
1223
1224
1213
__sys_statfs64: function(path, size, buf) {
1225
path = SYSCALLS.getStr(path);
1226
#if ASSERTIONS
0 commit comments