mirror of
https://github.com/ptitSeb/box86.git
synced 2024-11-26 16:31:08 +00:00
Fixed a libc syscall fallback
This commit is contained in:
parent
d927dae7e7
commit
56b23e0668
@ -924,7 +924,7 @@ long EXPORT my_syscall(x86emu_t *emu)
|
||||
#endif
|
||||
#ifndef __NR_memfd_create
|
||||
case 356: // memfd_create
|
||||
return my_memfd_create(emu, (void*)R_EBX, R_ECX);
|
||||
return my_memfd_create(emu, p(4), u32(8));
|
||||
#endif
|
||||
case 449:
|
||||
#ifdef __NR_futex_waitv
|
||||
|
Loading…
Reference in New Issue
Block a user