about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-07-06 17:37:11 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-07-06 17:37:11 +0200
commit06053027a90b482974fa157f181b8716d12ac74d (patch)
treea8491d2c907856e00f1a410cff6cc8d9a98605f3 /src
parent9291d15215eb86ff9890f3a530f0ca31afef091c (diff)
downloadbox64-06053027a90b482974fa157f181b8716d12ac74d.tar.gz
box64-06053027a90b482974fa157f181b8716d12ac74d.zip
Added syscall 35 (for #14)
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 02a76dad..2b0c03d8 100755
--- a/src/emu/x64syscall.c
+++ b/src/emu/x64syscall.c
@@ -91,6 +91,7 @@ scwrap_t syscallwrap[] = {
     { 23, __NR_select, 5},
     #endif
     //{ 25, __NR_mremap, 5},    // wrapped to track protection
+    { 35, __NR_nanosleep, 2},
     { 39, __NR_getpid, 0},
     { 41, __NR_socket, 3},
     { 42, __NR_connect, 3},