diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-11-26 20:14:30 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-11-26 20:14:30 +0000 |
| commit | 0a451b07fc969540ebf26457806bee66a89abfd6 (patch) | |
| tree | 8ac7a3e57fd869d0ab4b330d95812d17a538c623 | |
| parent | 848dca8e622f1aa74b75ebaa5a224f231e3bd98e (diff) | |
| download | focaccia-0a451b07fc969540ebf26457806bee66a89abfd6.tar.gz focaccia-0a451b07fc969540ebf26457806bee66a89abfd6.zip | |
Implement support for accept4
| -rw-r--r-- | src/focaccia/qemu/x86.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/focaccia/qemu/x86.py b/src/focaccia/qemu/x86.py index c8d2045..6f5bc99 100644 --- a/src/focaccia/qemu/x86.py +++ b/src/focaccia/qemu/x86.py @@ -102,6 +102,7 @@ emulated_system_calls = { 233: SyscallInfo('epoll_ctl', patchup_address_registers=['r10']), 281: SyscallInfo('epoll_pwait', patchup_address_registers=['rsi', 'r8']), 284: SyscallInfo('eventfd'), + 288: SyscallInfo('accept4', patchup_address_registers=['rsi', 'rdx']), 290: SyscallInfo('eventfd2'), 291: SyscallInfo('epoll_create1'), 292: SyscallInfo('dup3'), |