diff options
| author | bellard | 2003-03-19 01:00:28 +0100 |
|---|---|---|
| committer | bellard | 2003-03-19 01:00:28 +0100 |
| commit | dc99065b5f97cc0410f88e3f90c7440531a55f9f (patch) | |
| tree | a0566030175ea990f8aeeec662b3fa2e6b704bcf /linux-user/syscall.c | |
| parent | gcc 3.x fixes (diff) | |
| download | qemu-dc99065b5f97cc0410f88e3f90c7440531a55f9f.tar.gz qemu-dc99065b5f97cc0410f88e3f90c7440531a55f9f.tar.xz qemu-dc99065b5f97cc0410f88e3f90c7440531a55f9f.zip | |
added flags computation optimization
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@34 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/syscall.c')
| -rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 1e7dcedbdd..e6f04a8408 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -1000,7 +1000,7 @@ long do_syscall(void *cpu_env, int num, long arg1, long arg2, long arg3, ret = get_errno(setsid()); break; case TARGET_NR_sigaction: -#if 1 +#if 0 { ret = 0; } |
