IOS 中启动app的问题

springboard的中使用
[BSLaunchdUtilities createJobWithLabel:bundleIdentifier:path:containerPath:arguments:environment:standardOutputPath:standa…]来启动app,在这个方法的内部会调用launch_msg->_xpc_launch_routine->xpc_pipe_routine->mach_msg 通知其他进程来创建新的进程
查看了一下xpc_pipe_t结构的偏移48处应该是端口号,然后用procexp 查看了一下这个端口0x707,发现这是个所有进程都会有的端口,并且是指向launchd (SpringBoard:1010:0x707 (HSP: Coalition)->launchd:1:0xc03);

现在卡在这里了,不知道怎么能找到那个被通知的进程了