stub for clock_nanosleep syscall

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

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

@ -602,6 +602,12 @@ mergeInto(LibraryManager.library, {
}
}
}
case 265: { // clock_nanosleep
#if SYSCALL_DEBUG
Module.printErr('warning: ignoring SYS_clock_nanosleep');
#endif
return 0;
}
default: abort('bad syscall ' + which);
}
},