diff options
| author | Charles.Forsyth <devnull@localhost> | 2008-11-03 06:22:00 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2008-11-03 06:22:00 +0000 |
| commit | 789babf1e4e327e47fe013ee96214f246977321b (patch) | |
| tree | 8e2e7c755ba829e944888438eb4a7eae08751212 /emu/Linux/os.c | |
| parent | 9fa4e08855c41e6c4cee680b463f595549f5dae2 (diff) | |
20081103-0621
Diffstat (limited to 'emu/Linux/os.c')
| -rw-r--r-- | emu/Linux/os.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emu/Linux/os.c b/emu/Linux/os.c index c6a0b559..49aec7e5 100644 --- a/emu/Linux/os.c +++ b/emu/Linux/os.c @@ -16,6 +16,10 @@ #include <sys/syscall.h> #define getpid() syscall(SYS_getpid) +/* temporarily suppress CLONE_PTRACE so it works on broken Linux kernels */ +#undef CLONE_PTRACE +#define CLONE_PTRACE 0 + enum { DELETE = 0x7f, |
