This commit is contained in:
Alon Zakai 2015-05-24 15:46:04 -07:00
Родитель 6fa67cfeec
Коммит 34cfb6d01e
1 изменённых файлов: 10 добавлений и 0 удалений

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

@ -425,6 +425,16 @@ mergeInto(LibraryManager.library, {
return handleSyscallFSError(e);
}
}
case 10: { // unlink
var path = get();
path = Pointer_stringify(path);
try {
FS.unlink(path);
return 0;
} catch (e) {
return handleSyscallFSError(e);
}
}
case 33: { // access
var path = get(), amode = get();
path = Pointer_stringify(path);