Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@virtuozzo.com>2016-10-27 12:10:30 +0300
committerAndrei Vagin <avagin@virtuozzo.com>2017-03-15 00:06:00 +0300
commit6fee9c70a787c5368976562888711687f8218d98 (patch)
tree89a9efd03a06566e8c879ee4ab1503e6514c02ab /compel/arch/aarch64
parent5156b096b1d58cf0f115089ea0a763065adc8b87 (diff)
infect: Remove parasite-syscall.h from infect
This is * Move parasite_setup_regs() and related into arch/infect * Move arch_can_dump_task() into infect * Move parasite_send_fd() into infect-util and completes parasite-syscall.h removal. Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
Diffstat (limited to 'compel/arch/aarch64')
-rw-r--r--compel/arch/aarch64/src/lib/include/ptrace.h4
-rw-r--r--compel/arch/aarch64/src/lib/include/syscall.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/compel/arch/aarch64/src/lib/include/ptrace.h b/compel/arch/aarch64/src/lib/include/ptrace.h
new file mode 100644
index 000000000..9cf7d460d
--- /dev/null
+++ b/compel/arch/aarch64/src/lib/include/ptrace.h
@@ -0,0 +1,4 @@
+#ifndef __COMPEL_PTRACE_H__
+#define __COMPEL_PTRACE_H__
+#define ARCH_SI_TRAP TRAP_BRKPT
+#endif
diff --git a/compel/arch/aarch64/src/lib/include/syscall.h b/compel/arch/aarch64/src/lib/include/syscall.h
new file mode 100644
index 000000000..e2ec1272e
--- /dev/null
+++ b/compel/arch/aarch64/src/lib/include/syscall.h
@@ -0,0 +1,4 @@
+#ifndef __COMPEL_SYSCALL_H__
+#define __COMPEL_SYSCALL_H__
+#define __NR(syscall, compat) __NR_##syscall
+#endif