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/
- PATCH(?): linux-2.4.4-pre2: fork should run child first Adam J. Richter
- Re: PATCH(?): linux-2.4.4-pre2: fork should run child... Horst von Brand
- Re: PATCH(?): linux-2.4.4-pre2: fork should run c... �ric Brunet
- Re: PATCH(?): linux-2.4.4-pre2: fork should r... Jesse Pollard
- Re: PATCH(?): linux-2.4.4-pre2: fork shou... �ric Brunet
- Re: PATCH(?): linux-2.4.4-pre2: fork should run child... John Fremlin
- Re: PATCH(?): linux-2.4.4-pre2: fork should run child... Rik van Riel
- Re: PATCH(?): linux-2.4.4-pre2: fork should run c... Linus Torvalds
- Re: PATCH(?): linux-2.4.4-pre2: fork should r... Rik van Riel
- Re: PATCH(?): linux-2.4.4-pre2: fork should run child... Hubertus Franke
- Re: PATCH(?): linux-2.4.4-pre2: fork should run child... Adam J. Richter
- Re: PATCH(?): linux-2.4.4-pre2: fork should run child... Adam J. Richter
- Re: PATCH(?): linux-2.4.4-pre2: fork should run child... Hubertus Franke
- Re: PATCH(?): linux-2.4.4-pre2: fork should run child... Adam J. Richter
- Re: PATCH(?): linux-2.4.4-pre2: fork should run c... John Fremlin

