In ens.mailing-lists.linux-kernel, you wrote:
>
>I believe it allows the debugger to start the process to be debugged.
>
Well, the debugger simply needs to do something like

        pid_t child = fork();
        if (child == 0) {
                ptrace(PTRACE_TRACEME,0,0,0);
                execve(the_debugged_process,args,env);
        }

It is more portable, more traditionnal and works very well.

Éric Brunet
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to