How can Xcode monitor a child process in debug mode?

I am trying to implement several process servers in C. I would like to test the child process step by step. But in default debugging mode, I have no choice to follow the parent process by calling the fork function. And google does not help me lead to what I want.
How can Xcode monitor a child process in debug mode?
Any help or webpage would be awesome.

+7
source share
1 answer

Xcode uses LLDB, and it does not currently support this. The problem of adding support - https://bugs.llvm.org/show_bug.cgi?id=17972

0
source

All Articles