mirror of
https://github.com/checkpoint-restore/criu
synced 2025-09-05 08:45:49 +00:00
And use it in CRIU directly instead: - move syscalls into compel/arch/ARCH/plugins/std/syscalls - drop old symlinks - no build for 32bit on x86 as expected - use std.built-in.o inside criu directly (compel_main stub) - drop syscalls on x86 criu directory, I copied them already in first compel commist, so we can't move them now, but delete in place Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
28 lines
592 B
C
28 lines
592 B
C
#ifndef __NR_mmap2
|
|
# define __NR_mmap2 192
|
|
#endif
|
|
|
|
#ifndef __ARM_NR_BASE
|
|
# define __ARM_NR_BASE 0x0f0000
|
|
#endif
|
|
|
|
#ifndef __ARM_NR_breakpoint
|
|
# define __ARM_NR_breakpoint (__ARM_NR_BASE+1)
|
|
#endif
|
|
|
|
#ifndef __ARM_NR_cacheflush
|
|
# define __ARM_NR_cacheflush (__ARM_NR_BASE+2)
|
|
#endif
|
|
|
|
#ifndef __ARM_NR_usr26
|
|
# define __ARM_NR_usr26 (__ARM_NR_BASE+3)
|
|
#endif
|
|
|
|
#ifndef __ARM_NR_usr32
|
|
# define __ARM_NR_usr32 (__ARM_NR_BASE+4)
|
|
#endif
|
|
|
|
#ifndef __ARM_NR_set_tls
|
|
# define __ARM_NR_set_tls (__ARM_NR_BASE+5)
|
|
#endif
|