diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-11-26 19:05:19 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-11-26 19:05:19 +0000 |
| commit | aac2e69527d216d3b837d94b468dd6480cad6144 (patch) | |
| tree | 696dc79d427fa6e0003e3b8b7b99cfeab60a90db /src | |
| parent | 83c709bd38b2ed6eca39e83225f4d72c561b13f1 (diff) | |
| download | focaccia-aac2e69527d216d3b837d94b468dd6480cad6144.tar.gz focaccia-aac2e69527d216d3b837d94b468dd6480cad6144.zip | |
Add support for additional epoll interface emulation
Diffstat (limited to 'src')
| -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 557879b..269200c 100644 --- a/src/focaccia/qemu/x86.py +++ b/src/focaccia/qemu/x86.py @@ -99,6 +99,7 @@ emulated_system_calls = { 281: SyscallInfo('epoll_pwait', patchup_address_registers=['rsi', 'r8']), 284: SyscallInfo('eventfd'), 290: SyscallInfo('eventfd2'), + 291: SyscallInfo('epoll_create1'), 293: SyscallInfo('pipe2', patchup_address_registers=['rdi']), 297: SyscallInfo('rt_tgsigqueueinfo', patchup_address_registers=['r10']), 318: SyscallInfo('getrandom', patchup_address_registers=['rdi']) |