Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Xcode can follow child process on debug mode?

I'm trying to implement multiple process server in C. I'd like to check child process step by step. But on default debug mode, I have no choice to follow parent process, calling fork function. And google does not help me lead to what I want.
How Xcode can follow child process on debug mode?
Any help or web page would be awesome.

like image 827
inherithandle Avatar asked May 11 '13 14:05

inherithandle


1 Answers

Xcode uses LLDB, and that currently doesn't support this. The issue to add the support is https://bugs.llvm.org/show_bug.cgi?id=17972

like image 164
jwatt Avatar answered Sep 27 '22 23:09

jwatt