I'm currently trying to program a debugger in C usin ptrace() syscall on Linux Mint (I know it's unefficient to use ptrace but for the sake of practice ... )
Now here is the situation -> I've forked a new process with fork() then ptrace(PTRACE_TRACEME...) and then exec the debugee
Now the debugee is sigtrapped and i decide what's next with the debugee
so far so good now i've discovered that if the parent process uses printf the child/debugee will continue the execution, but if i use for example getchar() it just get killed.
Can anyone explain me the why this behaves like this?
Edit:This is weird this time it works normaly, that means that the child just gets killed