debugserver附加进程SpringBoard后。通过lldb connect,如何知道已经connect成功了?通过imagelist命令,为什么把osx的进程也打印出来了?

debugserver信息:
Yyy:~ root# debugserver *:1234 -a “SpringBoard”
debugserver-@(#)PROGRAM:debugserver PROJECT:debugserver-340.3.124
for arm64.
Attaching to process SpringBoard…
Listening to port 1234 for a connection from *…

Waiting for debugger instructions for process 0.

OSX信息:
process connect connect://10.8.154.157:1234
Process 2694 stopped

  • thread #1: tid = 0x1b882, 0x0000000181d2cfd8 libsystem_kernel.dylibmach_msg_trap + 8, queue = 'com.apple.main-thread', stop reason = signal SIGSTOP frame #0: 0x0000000181d2cfd8 libsystem_kernel.dylibmach_msg_trap + 8
    libsystem_kernel.dylib`mach_msg_trap:
    → 0x181d2cfd8 <+8>: ret

libsystem_kernel.dylib`mach_msg_overwrite_trap:
0x181d2cfdc <+0>: movn x16, #0x1f
0x181d2cfe0 <+4>: svc #0x80
0x181d2cfe4 <+8>: ret

执行image list后:
[ 0] 0x00000000000a0000 /System/Library/CoreServices/SpringBoard.app/SpringBoard(0x00000001000a0000)
[ 1] 0x0000000100944000 /Library/MobileSubstrate/MobileSubstrate.dylib(0x0000000100944000)
[ 2] 0x000000000176c000 /Users/tomyang/Library/Developer/Xcode/iOS DeviceSupport/9.3 (13E233)/Symbols/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
前两个是iOS的进程信息,从第3个开始到后面400+多都是OSX的信息。

Waiting for debugger instructions for process 0.这个是一直这样吗????