Meaning of "Detaching after fork from child process 15***"?
when I use linux console to develop, I use gdb to trace the program's behavior, Always the console print "Detaching after fork from child process 15***." can any body help to explain the sentence in quotation mark? How and 开发者_开发百科Who will do What jobs after Detaching from child process? Thanks first:)
When GDB is debugging a particular process, and the process forks off a child process, GDB can only follow one of the two processes, so it must detach (stop following) the other. This line informs you of this selective detachment. The child process will run without being debugged by GDB.
You can select which process to follow using the set follow-fork-mode
command. Use set follow-fork-mode child
to follow child processes, and set follow-fork-mode parent
to return to the default behavior. For more details, see this page on the Apple development website.
精彩评论