diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-11-25 17:06:27 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-11-25 17:06:27 +0000 |
| commit | 8f893a04b9915c407c99d5c3a61bf6ae880b7827 (patch) | |
| tree | 50aaf60c98fcee770245544b9eb06d80846f1a00 /src | |
| parent | d4bef7c39abfed385e472bc8e14bc459ce6ea982 (diff) | |
| download | focaccia-8f893a04b9915c407c99d5c3a61bf6ae880b7827.tar.gz focaccia-8f893a04b9915c407c99d5c3a61bf6ae880b7827.zip | |
Implement support for access system call 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 bed347c..ef071c1 100644 --- a/src/focaccia/qemu/x86.py +++ b/src/focaccia/qemu/x86.py @@ -6,6 +6,7 @@ emulated_system_calls = { 1: SyscallInfo('write'), 19: SyscallInfo('readv', patchup_address_registers=['rsi']), 20: SyscallInfo('writev'), + 21: SyscallInfo('access'), 34: SyscallInfo('pause', []), 39: SyscallInfo('getpid', []), 102: SyscallInfo('getuid', []), |