setitimer syscall
This commit is contained in:
Родитель
d55e8edfac
Коммит
96284de706
|
@ -690,6 +690,9 @@ mergeInto(LibraryManager.library, {
|
||||||
case 97: { // setpriority
|
case 97: { // setpriority
|
||||||
return -ERRNO_CODES.EPERM;
|
return -ERRNO_CODES.EPERM;
|
||||||
}
|
}
|
||||||
|
case 104: { // setitimer
|
||||||
|
return -ERRNO_CODES.ENOSYS; // unsupported feature
|
||||||
|
}
|
||||||
case 118: { // fsync
|
case 118: { // fsync
|
||||||
var stream = getStreamFromFD();
|
var stream = getStreamFromFD();
|
||||||
return 0; // we can't do anything synchronously; the in-memory FS is already synced to
|
return 0; // we can't do anything synchronously; the in-memory FS is already synced to
|
||||||
|
|
Загрузка…
Ссылка в новой задаче