1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-22 16:16:16 +04:00

add unimplemented syscall SYS_MEMNARRIER from musl-1.1.22 with pthread OPs

This commit is contained in:
chyyuu 2019-05-08 13:18:04 +08:00
parent 537eecaf5e
commit 2fa3338b4f

View File

@ -263,6 +263,7 @@ impl Syscall<'_> {
SYS_SETGROUPS => self.unimplemented("setgroups", Ok(0)),
SYS_SETPRIORITY => self.sys_set_priority(args[0]),
SYS_PRCTL => self.unimplemented("prctl", Ok(0)),
SYS_MEMBARRIER => self.unimplemented("membarrier", Ok(0)),
SYS_PRLIMIT64 => self.sys_prlimit64(
args[0],
args[1],