Hook up the munmap() syscall for 32-bit x86.
This is straightforward, as munmapFunc() doesn't do anything. I've tested it with code running munmap() just in case.
This commit is contained in:
parent
2b181fc3e7
commit
30a185dcd0
1 changed files with 1 additions and 1 deletions
|
@ -598,7 +598,7 @@ SyscallDesc I386LinuxProcess::syscallDescs[] = {
|
|||
/* 88 */ SyscallDesc("reboot", unimplementedFunc),
|
||||
/* 89 */ SyscallDesc("readdir", unimplementedFunc),
|
||||
/* 90 */ SyscallDesc("mmap", unimplementedFunc),
|
||||
/* 91 */ SyscallDesc("munmap", unimplementedFunc),
|
||||
/* 91 */ SyscallDesc("munmap", munmapFunc),
|
||||
/* 92 */ SyscallDesc("truncate", unimplementedFunc),
|
||||
/* 93 */ SyscallDesc("ftruncate", unimplementedFunc),
|
||||
/* 94 */ SyscallDesc("fchmod", unimplementedFunc),
|
||||
|
|
Loading…
Reference in a new issue