setpriority and setpriority syscalls

This commit is contained in:
Alon Zakai 2015-05-30 16:35:36 -07:00
Родитель b2282d6cd7
Коммит e2d04a54af
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -683,6 +683,12 @@ mergeInto(LibraryManager.library, {
FS.fchmod(fd, mode);
return 0;
}
case 96: { // getpriority
return 0;
}
case 97: { // setpriority
return -ERRNO_CODES.EPERM;
}
case 118: { // fsync
var stream = getStreamFromFD();
return 0; // we can't do anything synchronously; the in-memory FS is already synced to