]> git.proxmox.com Git - mirror_qemu.git/blobdiff - linux-user/strace.c
target/i386: Use env_cpu, env_archcpu
[mirror_qemu.git] / linux-user / strace.c
index 7318392e571cdc1f2ede34eb24aff08b10b28c15..6f72a74c091853106780ed5fd171d676602c4d72 100644 (file)
@@ -1235,6 +1235,18 @@ print_chdir(const struct syscallname *name,
 }
 #endif
 
+#ifdef TARGET_NR_chroot
+static void
+print_chroot(const struct syscallname *name,
+    abi_long arg0, abi_long arg1, abi_long arg2,
+    abi_long arg3, abi_long arg4, abi_long arg5)
+{
+    print_syscall_prologue(name);
+    print_string(arg0, 1);
+    print_syscall_epilogue(name);
+}
+#endif
+
 #ifdef TARGET_NR_chmod
 static void
 print_chmod(const struct syscallname *name,