Tagged Questions

4
votes
1answer
197 views

ptrace and threads

I'm working on an linux application incorporating ptrace to observe the threads of another process. When the application I observe forks a child process this already works quite well. By calling ...
3
votes
2answers
579 views

How to ptrace a multi-threaded application?

EDIT (MADE PROGRESS): I am trying to ptrace a vsftpd daemon. I have the following code which is attaching to the daemon. Then it successfully displays the PID of the first spawned process. However, ...
3
votes
3answers
1k views

can you use multiple threads to ptrace an application?

I am writing a GUI oriented debugger which targets Linux primarily, but I plan ports to other OSes in the future. Because the GUI must stay interactive at all times, I have a few threads handling ...
2
votes
1answer
154 views

Multithreading, Multiprocessing with STOP and Continue Signals

I am working on a project, where i need to get native stack of the Java Application. i am able to achieve this partially. thanks to ptrace/multiprocessing and signals. on Linux normal java ...
0
votes
0answers
36 views

PTRACE_EXIT_EVENT behavior with multithreaded process

If a multithreaded process is being traced using ptrace with the ptrace option PTRACE_O_TRACEEXIT set; how does the tracing process determine which thread has exited upon receiving a ...