This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / um / kernel / tt / exec_user.c
index 6d5fa82..35d1082 100644 (file)
 void do_exec(int old_pid, int new_pid)
 {
        unsigned long regs[FRAME_SIZE];
-       int err;
 
        if((ptrace(PTRACE_ATTACH, new_pid, 0, 0) < 0) ||
-          (ptrace(PTRACE_CONT, new_pid, 0, 0) < 0))
+          (ptrace(PTRACE_CONT, new_pid, 0, 0) < 0) ||
+          (waitpid(new_pid, 0, WUNTRACED) < 0))
                tracer_panic("do_exec failed to attach proc - errno = %d",
                             errno);
 
-       CATCH_EINTR(err = waitpid(new_pid, 0, WUNTRACED));
-       if (err < 0)
-               tracer_panic("do_exec failed to attach proc in waitpid - errno = %d",
-                            errno);
-
        if(ptrace_getregs(old_pid, regs) < 0)
                tracer_panic("do_exec failed to get registers - errno = %d",
                             errno);