5 #include <asm/unistd.h>
7 #include "ptrace_user.h"
10 #include "uml-config.h"
11 #include "sysdep/stub.h"
13 /* This is in a separate file because it needs to be compiled with any
14 * extraneous gcc flags (-pg, -fprofile-arcs, -ftest-coverage) disabled
16 void __attribute__ ((__section__ (".__syscall_stub")))
17 stub_clone_handler(void)
20 struct stub_data
*from
= (struct stub_data
*) UML_CONFIG_STUB_DATA
;
22 err
= stub_syscall2(__NR_clone
, CLONE_PARENT
| CLONE_FILES
| SIGCHLD
,
23 UML_CONFIG_STUB_DATA
+ PAGE_SIZE
/ 2 -
28 err
= stub_syscall4(__NR_ptrace
, PTRACE_TRACEME
, 0, 0, 0);
32 err
= stub_syscall3(__NR_setitimer
, ITIMER_VIRTUAL
,
33 (long) &from
->timer
, 0);
37 err
= stub_syscall6(STUB_MMAP_NR
, UML_CONFIG_STUB_DATA
, PAGE_SIZE
,
38 PROT_READ
| PROT_WRITE
, MAP_FIXED
| MAP_SHARED
,
39 from
->fd
, from
->offset
);
41 /* save current result. Parent: pid; child: retcode of mmap */