about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2022-06-30 14:05:36 +0200
committerptitSeb <sebastien.chev@gmail.com>2022-06-30 14:05:36 +0200
commit41744425582650a55300d85b68e69efcf586294e (patch)
tree6d3a247976136cf43cf12e4207c8b4945b52b15c /src
parent9fcb6e1f388665361ae3fcaba85cb539bede628e (diff)
downloadbox64-41744425582650a55300d85b68e69efcf586294e.tar.gz
box64-41744425582650a55300d85b68e69efcf586294e.zip
Added syscall 27 (for #333)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/emu/x64syscall.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/x64syscall.c b/src/emu/x64syscall.c
index 17d1af46..8950e2e5 100755
--- a/src/emu/x64syscall.c
+++ b/src/emu/x64syscall.c
@@ -96,6 +96,7 @@ scwrap_t syscallwrap[] = {
     { 23, __NR_select, 5},
     #endif
     //{ 25, __NR_mremap, 5},    // wrapped to track protection
+    { 27, __NR_mincore, 3},
     { 35, __NR_nanosleep, 2},
     { 39, __NR_getpid, 0},
     { 41, __NR_socket, 3},