about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/focaccia/qemu/x86.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/focaccia/qemu/x86.py b/src/focaccia/qemu/x86.py
index 7d11c0e..8907da3 100644
--- a/src/focaccia/qemu/x86.py
+++ b/src/focaccia/qemu/x86.py
@@ -10,5 +10,8 @@ emulated_system_calls = {
 
 passthrough_system_calls = {
     56:  SyscallInfo('clone', patchup_address_registers=['rdx', 'r10'], creates_thread=True),
+    57:  SyscallInfo('fork', creates_thread=True),
+    58:  SyscallInfo('vfork', creates_thread=True),
+    435:  SyscallInfo('clone3', patchup_address_registers=['rdi'], creates_thread=True),
 }