Strange behaviour of Multipeer connectivity Framework

333 views
Skip to first unread message

Egorov Alex

unread,
Mar 19, 2015, 5:20:24 AM3/19/15
to rob...@googlegroups.com
Hello all!

We're trying to make a multipeer connection between two devices using MPC framework.

What generally we've done successfully:
  1. Devices are connecting, session is establishing correctly. 
  2. After session is established nearBrowser and nearAdvertiser stop doing their stuff. 
  3. Then we do transition to the game scene. In the new scene one device can send a message to another. 
  4. DidReceiveData method from Session Delegate is called and there we've got right messages for both devices. After this we send to libgdx message for updating content (in main gdx thread).
BUT after a while when some device received data it immediately crashes. Sometimes it happens on 10th receiving, sometimes after 200th. Crash appears only on the device that recieved message. It doesn't matter how long  they are connected. Crash appears after all methods have done their work with data. So we don't know where exactly error happens.

// MCSession delegate method

public void didReceiveData(MCSession session, NSData data, MCPeerID peerID) {

     

     //there we make userInfoData


     // 

     DispatchQueue.getMainQueue().async(new Runnable() {

  @Override

  public void run() {

        NSNotificationCenter.getDefaultCenter().postNotification(new NSString("didReceiveData"), nulluserInfoData);

  }

      });


}


// Register observer in NSNotificationCenter

// NSNotificationCenter.getDefaultCenter().addObserver(this, Selector.register("updateDataWithNotification:"), new NSString("didReceiveData"), null);

//


// This method is called when device has received new data

@Method

private void updateDataWithNotification(NSNotification notification){


     userInfoDict = notification.getUserInfo();

     data = (NSData) userInfoDict.get(new NSString("data"));

     strBytesnew String(data.getBytes());

     

     // i'm not sure this Gdx.app.postRunnable is really needed

     Gdx.app.postRunnable(new Runnable() {

 @Override

 public void run() { 

              SBGlobalMessanger.getInstance().readBluetoothMessage(BluetoothData.RC_MESSAGE, strBytes);

}

     });

}


The questions are:

Where is the bug? And how can we fix it?


Niklas Therning

unread,
Mar 25, 2015, 4:16:10 AM3/25/15
to Egorov Alex, rob...@googlegroups.com
A symbolicated crash log would help. Also let us know which version of RoboVM you are using. If not 1.0 you should try that as we did some fixes regarding dispatch just before we released 1.0.

--
You received this message because you are subscribed to the Google Groups "RoboVM" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robovm+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Message has been deleted

Niklas Therning

unread,
Mar 27, 2015, 3:29:33 AM3/27/15
to Egorov Alex, rob...@googlegroups.com
No, this is not a symbolicated crash log. If it were you wouldn't see lines like

  0x41000 + 11297246

but nice looking function names. Make sure you use the exact same .dSYM that was generated when you compiled the version of the app that crashed.

Also, we need to know that you are using RoboVM 1.0. The version before that are known to fail randomly when using dispatch.


On Thu, Mar 26, 2015 at 11:05 AM, Egorov Alex <egorova...@gmail.com> wrote:
This is symbolicated crash log:

Incident Identifier: 38E8DF12-85E8-4A03-9C4B-182600A46791
CrashReporter Key:   6b3863390081c9e2e3c2d0b81dd048f35d6bf7ee
Hardware Model:      iPad2,5
Process:             IOSLauncher [14044]
Path:                /private/var/mobile/Containers/Bundle/Application/F0E02522-EF71-4D45-AD40-D490B56C7D97/IOSLauncher.app/IOSLauncher
Identifier:          com.byril.*****
Version:             1 (1.0)
Code Type:           ARM (Native)
Parent Process:      debugserver [14043]

Date/Time:           2015-03-26 12:44:16.673 +0300
Launch Time:         2015-03-26 12:42:48.171 +0300
OS Version:          iOS 8.1.3 (12B466)
Report Version:      105

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Triggered by Thread:  17

Thread 0 name:  main  Dispatch queue: com.apple.main-thread
Thread 0:
0   libsystem_kernel.dylib         0x32e0c518 mach_msg_trap + 20
1   libsystem_kernel.dylib         0x32e0c30c mach_msg + 36
2   CoreFoundation                 0x24bfa596 __CFRunLoopServiceMachPort + 142
3   CoreFoundation                 0x24bf8b5c __CFRunLoopRun + 1012
4   CoreFoundation                 0x24b45b2c CFRunLoopRunSpecific + 472
5   CoreFoundation                 0x24b4593e CFRunLoopRunInMode + 102
6   GraphicsServices               0x2befa04c GSEventRunModal + 132
7   UIKit                         0x28137f1c UIApplicationMain + 1436
8   IOSLauncher                   0x008c8966 0x41000 + 8943974
9   IOSLauncher                   0x008c7e8c 0x41000 + 8941196
10  IOSLauncher                   0x008c7eca 0x41000 + 8941258
11  IOSLauncher                   0x004556c2 0x41000 + 4277954
12  IOSLauncher                   0x00b12444 0x41000 + 11342916
13  IOSLauncher                   0x00b0b1de 0x41000 + 11313630
14  IOSLauncher                   0x00b0ce5a 0x41000 + 11320922
15  IOSLauncher                   0x00b0ceb4 0x41000 + 11321012
16  IOSLauncher                   0x00b07150 0x41000 + 11297104
17  IOSLauncher                   0x00aff836 0x41000 + 11266102
18  IOSLauncher                   0x0026b734 0x41000 + 2271028

Thread 1 name:  Dispatch queue: com.apple.libdispatch-manager
Thread 1:
0   libsystem_kernel.dylib         0x32e0c2c8 kevent64 + 24
1   libdispatch.dylib             0x32d2ee44 _dispatch_mgr_invoke + 276
2   libdispatch.dylib             0x32d2eb76 _dispatch_mgr_thread$VARIANT$mp + 34

Thread 2:
0   libsystem_kernel.dylib         0x32e1fb38 __psynch_cvwait + 24
1   libsystem_pthread.dylib       0x32e9e3dc _pthread_cond_wait + 516
2   libsystem_pthread.dylib       0x32e9f2ac pthread_cond_wait + 36
3   IOSLauncher                   0x00b23838 0x41000 + 11413560
4   IOSLauncher                   0x00b1d25c 0x41000 + 11387484
5   IOSLauncher                   0x00b2239e 0x41000 + 11408286
6   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
7   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
8   libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 3:
0   libsystem_kernel.dylib         0x32e0c518 mach_msg_trap + 20
1   libsystem_kernel.dylib         0x32e0c30c mach_msg + 36
2   libsystem_kernel.dylib         0x32e1be00 mach_msg_server + 324
3   IOSLauncher                   0x00b0123a 0x41000 + 11272762
4   IOSLauncher                   0x00b22222 0x41000 + 11407906
5   IOSLauncher                   0x00b1fd34 0x41000 + 11398452
6   IOSLauncher                   0x00b23340 0x41000 + 11412288
7   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
8   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
9   libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 4:
0   libsystem_kernel.dylib         0x32e1fb38 __psynch_cvwait + 24
1   libsystem_pthread.dylib       0x32e9e3dc _pthread_cond_wait + 516
2   libsystem_pthread.dylib       0x32e9f2ac pthread_cond_wait + 36
3   IOSLauncher                   0x00b0e120 0x41000 + 11325728
4   IOSLauncher                   0x00b0ded8 0x41000 + 11325144
5   IOSLauncher                   0x0004919e 0x41000 + 33182
6   IOSLauncher                   0x004afc80 0x41000 + 4648064
7   IOSLauncher                   0x004afc34 0x41000 + 4647988
8   IOSLauncher                   0x004a5d60 0x41000 + 4607328
9   IOSLauncher                   0x004c2b46 0x41000 + 4725574
10  IOSLauncher                   0x00b12444 0x41000 + 11342916
11  IOSLauncher                   0x00b0b1de 0x41000 + 11313630
12  IOSLauncher                   0x00b0afae 0x41000 + 11313070
13  IOSLauncher                   0x00b11d3a 0x41000 + 11341114
14  IOSLauncher                   0x00b22222 0x41000 + 11407906
15  IOSLauncher                   0x00b1fd34 0x41000 + 11398452
16  IOSLauncher                   0x00b23340 0x41000 + 11412288
17  libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
18  libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
19  libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 5:
0   libsystem_kernel.dylib         0x32e1fb38 __psynch_cvwait + 24
1   libsystem_pthread.dylib       0x32e9e3dc _pthread_cond_wait + 516
2   libsystem_pthread.dylib       0x32e9f2ac pthread_cond_wait + 36
3   IOSLauncher                   0x00b0e120 0x41000 + 11325728
4   IOSLauncher                   0x00b0ded8 0x41000 + 11325144
5   IOSLauncher                   0x0004919e 0x41000 + 33182
6   IOSLauncher                   0x004afc80 0x41000 + 4648064
7   IOSLauncher                   0x004afc54 0x41000 + 4648020
8   IOSLauncher                   0x004caa16 0x41000 + 4758038
9   IOSLauncher                   0x004cab90 0x41000 + 4758416
10  IOSLauncher                   0x004ca966 0x41000 + 4757862
11  IOSLauncher                   0x004a544a 0x41000 + 4605002
12  IOSLauncher                   0x004c2b46 0x41000 + 4725574
13  IOSLauncher                   0x00b12444 0x41000 + 11342916
14  IOSLauncher                   0x00b0b1de 0x41000 + 11313630
15  IOSLauncher                   0x00b0afae 0x41000 + 11313070
16  IOSLauncher                   0x00b11d3a 0x41000 + 11341114
17  IOSLauncher                   0x00b22222 0x41000 + 11407906
18  IOSLauncher                   0x00b1fd34 0x41000 + 11398452
19  IOSLauncher                   0x00b23340 0x41000 + 11412288
20  libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
21  libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
22  libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 6:
0   libsystem_kernel.dylib         0x32e1fb38 __psynch_cvwait + 24
1   libsystem_pthread.dylib       0x32e9e3dc _pthread_cond_wait + 516
2   libsystem_pthread.dylib       0x32e9f2ac pthread_cond_wait + 36
3   IOSLauncher                   0x00b0e120 0x41000 + 11325728
4   IOSLauncher                   0x00b0ded8 0x41000 + 11325144
5   IOSLauncher                   0x0004919e 0x41000 + 33182
6   IOSLauncher                   0x004afc80 0x41000 + 4648064
7   IOSLauncher                   0x004afc34 0x41000 + 4647988
8   IOSLauncher                   0x004a58f0 0x41000 + 4606192
9   IOSLauncher                   0x004a57be 0x41000 + 4605886
10  IOSLauncher                   0x004c2b46 0x41000 + 4725574
11  IOSLauncher                   0x00b12444 0x41000 + 11342916
12  IOSLauncher                   0x00b0b1de 0x41000 + 11313630
13  IOSLauncher                   0x00b0afae 0x41000 + 11313070
14  IOSLauncher                   0x00b11d3a 0x41000 + 11341114
15  IOSLauncher                   0x00b22222 0x41000 + 11407906
16  IOSLauncher                   0x00b1fd34 0x41000 + 11398452
17  IOSLauncher                   0x00b23340 0x41000 + 11412288
18  libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
19  libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
20  libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 7 name:  AVAudioSession Notify Thread
Thread 7:
0   libsystem_kernel.dylib         0x32e0c518 mach_msg_trap + 20
1   libsystem_kernel.dylib         0x32e0c30c mach_msg + 36
2   CoreFoundation                 0x24bfa596 __CFRunLoopServiceMachPort + 142
3   CoreFoundation                 0x24bf8b5c __CFRunLoopRun + 1012
4   CoreFoundation                 0x24b45b2c CFRunLoopRunSpecific + 472
5   CoreFoundation                 0x24b4593e CFRunLoopRunInMode + 102
6   libAVFAudio.dylib             0x238693e8 GenericRunLoopThread::Entry(void*) + 128
7   libAVFAudio.dylib             0x2385b8e4 CAPThread::Entry(CAPThread*) + 192
8   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
9   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
10  libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 8 name:  AURemoteIO::IOThread
Thread 8:
0   libsystem_kernel.dylib         0x32e0c518 mach_msg_trap + 20
1   libsystem_kernel.dylib         0x32e0c30c mach_msg + 36
2   AudioToolbox                   0x243b269e AURemoteIO::IOThread::Run() + 102
3   AudioToolbox                   0x243b5d58 AURemoteIO::IOThread::Entry(void*) + 4
4   AudioToolbox                   0x242eaa02 CAPThread::Entry(CAPThread*) + 206
5   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
6   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
7   libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 9:
0   libsystem_kernel.dylib         0x32e0c518 mach_msg_trap + 20
1   libsystem_kernel.dylib         0x32e0c30c mach_msg + 36
2   CoreFoundation                 0x24bfa596 __CFRunLoopServiceMachPort + 142
3   CoreFoundation                 0x24bf8b5c __CFRunLoopRun + 1012
4   CoreFoundation                 0x24b45b2c CFRunLoopRunSpecific + 472
5   CoreFoundation                 0x24b8f4f6 CFRunLoopRun + 94
6   CoreMotion                     0x2544cd1e 0x2540d000 + 261406
7   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
8   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
9   libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 10:
0   libsystem_kernel.dylib         0x32e1fb38 __psynch_cvwait + 24
1   libsystem_pthread.dylib       0x32e9e3dc _pthread_cond_wait + 516
2   libsystem_pthread.dylib       0x32e9f2ac pthread_cond_wait + 36
3   IOSLauncher                   0x00b0e120 0x41000 + 11325728
4   IOSLauncher                   0x00b0ded8 0x41000 + 11325144
5   IOSLauncher                   0x0004919e 0x41000 + 33182
6   IOSLauncher                   0x004afc80 0x41000 + 4648064
7   IOSLauncher                   0x004c393c 0x41000 + 4729148
8   IOSLauncher                   0x00aff5b2 0x41000 + 11265458
9   IOSLauncher                   0x005ab224 0x41000 + 5677604
10  IOSLauncher                   0x005ab25e 0x41000 + 5677662
11  IOSLauncher                   0x005aa7ac 0x41000 + 5674924
12  IOSLauncher                   0x0059db86 0x41000 + 5622662
13  IOSLauncher                   0x005a43d0 0x41000 + 5649360
14  IOSLauncher                   0x005a44ae 0x41000 + 5649582
15  IOSLauncher                   0x005a60d0 0x41000 + 5656784
16  IOSLauncher                   0x004c2b46 0x41000 + 4725574
17  IOSLauncher                   0x00b12444 0x41000 + 11342916
18  IOSLauncher                   0x00b0b1de 0x41000 + 11313630
19  IOSLauncher                   0x00b0afae 0x41000 + 11313070
20  IOSLauncher                   0x00b11d3a 0x41000 + 11341114
21  IOSLauncher                   0x00b22222 0x41000 + 11407906
22  IOSLauncher                   0x00b1fd34 0x41000 + 11398452
23  IOSLauncher                   0x00b23340 0x41000 + 11412288
24  libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
25  libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
26  libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 11 name:  com.apple.coreaudio.AQClient
Thread 11:
0   libsystem_kernel.dylib         0x32e0c518 mach_msg_trap + 20
1   libsystem_kernel.dylib         0x32e0c30c mach_msg + 36
2   CoreFoundation                 0x24bfa596 __CFRunLoopServiceMachPort + 142
3   CoreFoundation                 0x24bf8b5c __CFRunLoopRun + 1012
4   CoreFoundation                 0x24b45b2c CFRunLoopRunSpecific + 472
5   CoreFoundation                 0x24b4593e CFRunLoopRunInMode + 102
6   AudioToolbox                   0x243027a0 GenericRunLoopThread::Entry(void*) + 128
7   AudioToolbox                   0x242eaa02 CAPThread::Entry(CAPThread*) + 206
8   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
9   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
10  libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 12 name:  com.apple.gamekitservices.gcksession.recvproc
Thread 12:
0   libsystem_kernel.dylib         0x32e2008c __select + 20
1   MultipeerConnectivity         0x26b4e8cc gckSessionRecvProc + 5252
2   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
3   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
4   libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 13 name:  com.apple.gamekitservices.gcksession.sendproc
Thread 13:
0   libsystem_kernel.dylib         0x32e2008c __select + 20
1   MultipeerConnectivity         0x26b4ee68 gckSessionSendProc + 268
2   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
3   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
4   libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 14 name:  com.apple.gamekitservices.eventcallback.eventcbproc
Thread 14:
0   libsystem_kernel.dylib         0x32e1fb38 __psynch_cvwait + 24
1   libsystem_pthread.dylib       0x32e9e3dc _pthread_cond_wait + 516
2   libsystem_pthread.dylib       0x32e9f2ac pthread_cond_wait + 36
3   MultipeerConnectivity         0x26b68a4c EventCBProc + 76
4   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
5   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
6   libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 15 name:  com.apple.CFSocket.private
Thread 15:
0   libsystem_kernel.dylib         0x32e2008c __select + 20
1   CoreFoundation                 0x24bfed1e __CFSocketManager + 486
2   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
3   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
4   libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 16 name:  com.apple.NSURLConnectionLoader
Thread 16:
0   libsystem_kernel.dylib         0x32e0c518 mach_msg_trap + 20
1   libsystem_kernel.dylib         0x32e0c30c mach_msg + 36
2   CoreFoundation                 0x24bfa596 __CFRunLoopServiceMachPort + 142
3   CoreFoundation                 0x24bf8b5c __CFRunLoopRun + 1012
4   CoreFoundation                 0x24b45b2c CFRunLoopRunSpecific + 472
5   CoreFoundation                 0x24b4593e CFRunLoopRunInMode + 102
6   CFNetwork                     0x246fa78a +[NSURLConnection(Loader) _resourceLoadLoop:] + 482
7   Foundation                     0x25947936 __NSThread__main__ + 1114
8   libsystem_pthread.dylib       0x32e9ee64 _pthread_body + 136
9   libsystem_pthread.dylib       0x32e9edd6 _pthread_start + 114
10  libsystem_pthread.dylib       0x32e9cb80 thread_start + 4

Thread 17 name:  Dispatch queue: com.apple.MCSession.callbackQueue
Thread 17 Crashed:
0   libsystem_kernel.dylib         0x32e1fdfc __pthread_kill + 8
1   libsystem_pthread.dylib       0x32e9fd0e pthread_kill + 58
2   libsystem_c.dylib             0x32dbf934 abort + 72
3   IOSLauncher                   0x00b071de 0x41000 + 11297246
4   IOSLauncher                   0x00b0dae4 0x41000 + 11324132
5   IOSLauncher                   0x00b00780 0x41000 + 11270016
6   IOSLauncher                   0x00ae1b68 0x41000 + 11144040
7   IOSLauncher                   0x00ae1c7a 0x41000 + 11144314
8   IOSLauncher                   0x00ae05a2 0x41000 + 11138466
9   IOSLauncher                   0x00ae0286 0x41000 + 11137670
10  IOSLauncher                   0x00ae02b6 0x41000 + 11137718
11  IOSLauncher                   0x00ae213a 0x41000 + 11145530
12  IOSLauncher                   0x00ae2058 0x41000 + 11145304
13  IOSLauncher                   0x00ae209c 0x41000 + 11145372
14  IOSLauncher                   0x00ae3e6a 0x41000 + 11153002
15  IOSLauncher                   0x00ae3ec0 0x41000 + 11153088
16  IOSLauncher                   0x00829a00 0x41000 + 8292864
17  MultipeerConnectivity         0x26b3aa26 __58-[MCSession syncHandleNetworkEvent:pid:freeEventWhenDone:]_block_invoke617 + 114
18  libdispatch.dylib             0x32d1f420 _dispatch_call_block_and_release + 8
19  libdispatch.dylib             0x32d295d4 _dispatch_queue_drain$VARIANT$mp + 944
20  libdispatch.dylib             0x32d290a4 _dispatch_queue_invoke$VARIANT$mp + 80
21  libdispatch.dylib             0x32d2b0d0 _dispatch_root_queue_drain + 328
22  libdispatch.dylib             0x32d2c1f6 _dispatch_worker_thread3 + 102
23  libsystem_pthread.dylib       0x32e9ce22 _pthread_wqthread + 666
24  libsystem_pthread.dylib       0x32e9cb74 start_wqthread + 4

Thread 18:
0   libsystem_kernel.dylib         0x32e209cc __workq_kernreturn + 8
1   libsystem_pthread.dylib       0x32e9ce9c _pthread_wqthread + 788
2   libsystem_pthread.dylib       0x32e9cb74 start_wqthread + 4

Thread 17 crashed with ARM Thread State (32-bit):
    r0: 0x00000000    r1: 0x00000000      r2: 0x00000000      r3: 0x00000000
    r4: 0x00000006    r5: 0x06ba9000      r6: 0x00000000      r7: 0x06ba8ac0
    r8: 0x03fb5eb0    r9: 0x06ba9000     r10: 0x17ea7140     r11: 0x00000000
    ip: 0x00000148    sp: 0x06ba8ab4      lr: 0x32e9fd13      pc: 0x32e1fdfc
  cpsr: 0x00000010

Binary Images:
0x41000 - 0x1618fff IOSLauncher armv7  <1fb26eb3851c32068e16bc5005bc17af> /var/mobile/Containers/Bundle/Application/F0E02522-EF71-4D45-AD40-D490B56C7D97/IOSLauncher.app/IOSLauncher
0x1fe2c000 - 0x1fe4ffff dyld armv7  <4e5bac66e3d137b9aa8b1f5ee2cadd0b> /usr/lib/dyld
0x235c3000 - 0x236d7fff IMGSGX543GLDriver armv7  <3431ee9e329c390d9505699b4141fcf8> /System/Library/Extensions/IMGSGX543GLDriver.bundle/IMGSGX543GLDriver
0x236e3000 - 0x2384ffff AVFoundation armv7  <b1b9e3bf18b23e3cb7923bfe4a7fe497> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x23850000 - 0x238aefff libAVFAudio.dylib armv7  <5dc6f29e995d39c18712dec40a9ca7c6> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
0x238e9000 - 0x238e9fff Accelerate armv7  <79b84eb74f0234e4ac81d7c906641804> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x238fa000 - 0x23b13fff vImage armv7  <5ec259488c033a4f98b0f28ee14ecfc1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x23b14000 - 0x23bf1fff libBLAS.dylib armv7  <e5395e7ee45e353498dcb4e956bcf272> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x23bf2000 - 0x23eb5fff libLAPACK.dylib armv7  <689f4395215e3cef8bafa5f21e288cfe> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x23eb6000 - 0x23ec8fff libLinearAlgebra.dylib armv7  <b86c17150d2133b8baea239d17df5e28> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x23ec9000 - 0x23f3dfff libvDSP.dylib armv7  <bc358a699c2132a09e9150cfc2db34bb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x23f3e000 - 0x23f4ffff libvMisc.dylib armv7  <1a0561dd472b3c04ad84e0c48896173d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x23f50000 - 0x23f50fff vecLib armv7  <f4dbfd05244f30b2905a5dbf06f15fc8> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x23f51000 - 0x23f77fff Accounts armv7  <90965bef7f403d9791b800e9307da469> /System/Library/Frameworks/Accounts.framework/Accounts
0x23f79000 - 0x23fe9fff AddressBook armv7  <50e85e9355c934a8b86f69b59e3f1d2a> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x23fea000 - 0x2410efff AddressBookUI armv7  <0c6e45b5345535eebc00312bf0c01943> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x2410f000 - 0x24121fff AssetsLibrary armv7  <3fdf9d5c32413d2cbfb068705e102c4f> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x24122000 - 0x242a4fff AudioCodecs armv7  <bea7c885ba8a3d5999ce531df88bb7d6> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
0x242a5000 - 0x24516fff AudioToolbox armv7  <0e7d115e201731ae9002e3ac0e1cf723> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x2467e000 - 0x24806fff CFNetwork armv7  <91a44f5c23e4349e9532c46bcacf8793> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x24807000 - 0x24888fff CloudKit armv7  <3911d5e793ad3a6bb0a3218b99d6cdd6> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x24889000 - 0x248e7fff CoreAudio armv7  <5857be698f7b3a3d865b418b0a80dd95> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x24902000 - 0x2491ffff CoreBluetooth armv7  <d75ab8f476cd30daaf637c1b4cb2a7cc> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x24920000 - 0x24b2bfff CoreData armv7  <e179cf2529fc39ccb17bc43d6a1ad54e> /System/Library/Frameworks/CoreData.framework/CoreData
0x24b2c000 - 0x24e5cfff CoreFoundation armv7  <8903e0338b7a3055a6da8d09d9dd819c> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x24e5d000 - 0x24f86fff CoreGraphics armv7  <3ece7760b9ad3e7fa1b33befa649bf97> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x24fc6000 - 0x24fc8fff libCGXType.A.dylib armv7  <88ab0b29c4953be98733827cea815486> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib
0x251d7000 - 0x252e8fff CoreImage armv7  <5fa13521194435b0aa122590592bde9e> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x252e9000 - 0x25340fff CoreLocation armv7  <4bb2092b96923adf95a7c263091fb881> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x25372000 - 0x2540cfff CoreMedia armv7  <c50750b68b9f3dada82ca7a17229e544> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x2540d000 - 0x254ccfff CoreMotion armv7  <040286d5cb553e799d2b79899fb7e555> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x254cd000 - 0x2552bfff CoreTelephony armv7  <2c9a0ea2bc4631f09f0ad3482279ed2a> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x2552c000 - 0x255f3fff CoreText armv7  <a3b24e92ae2e33cda8f26dceb58bb900> /System/Library/Frameworks/CoreText.framework/CoreText
0x255f4000 - 0x25609fff CoreVideo armv7  <6c8fef3be5df3be49e848caafb61f3d4> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x2560a000 - 0x25700fff EventKit armv7  <8ed440c37b143d16af37c7ffd318669d> /System/Library/Frameworks/EventKit.framework/EventKit
0x25877000 - 0x25a79fff Foundation armv7  <03e4284e97fc3400945658d056252397> /System/Library/Frameworks/Foundation.framework/Foundation
0x25a7a000 - 0x25aa5fff GLKit armv7  <273ccbce6e5335e497d37423fda3458e> /System/Library/Frameworks/GLKit.framework/GLKit
0x25aa6000 - 0x25ac5fff GSS armv7  <0733a3155f563c9eae09a24372467be6> /System/Library/Frameworks/GSS.framework/GSS
0x25b5a000 - 0x25bb0fff IOKit armv7  <57f43286391832bf833d098bd0b62595> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x25bb1000 - 0x25df3fff ImageIO armv7  <527ec726ec1d3ff9abadc82909f89d88> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x25df4000 - 0x2613dfff JavaScriptCore armv7  <027ba624c3c93621b29530d38913afe9> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x26416000 - 0x2641efff MediaAccessibility armv7  <ac5de26eeeb93c8c8febc8360071cc5c> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x2641f000 - 0x265f8fff MediaPlayer armv7  <54c51720bfd23cc587f313c73ca1455a> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x265f9000 - 0x26974fff MediaToolbox armv7  <fa37a153e215342e9bc1e7532688068c> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x26975000 - 0x26a33fff MessageUI armv7  <f84be09d868c3a4f876466dce201ee21> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x26a34000 - 0x26aa0fff Metal armv7  <209361201b49352a848591a82e8a8c72> /System/Library/Frameworks/Metal.framework/Metal
0x26aa1000 - 0x26b30fff MobileCoreServices armv7  <876a393103af3b7fbabaf467ce758ad7> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x26b31000 - 0x26b84fff MultipeerConnectivity armv7  <67df95a2212a32faa2974bbcc164d65d> /System/Library/Frameworks/MultipeerConnectivity.framework/MultipeerConnectivity
0x26c25000 - 0x26c56fff OpenAL armv7  <e8f63258516339f0a710d433b87ebe21> /System/Library/Frameworks/OpenAL.framework/OpenAL
0x27523000 - 0x275fafff GLEngine armv7  <24c72152aeff311d8c66b2aecef82499> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
0x275fb000 - 0x27603fff OpenGLES armv7  <0e7ab2b493eb3e51b541842bda102761> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x27605000 - 0x27605fff libCVMSPluginSupport.dylib armv7  <754a49b6b063344288d7163e81e6efcd> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x27606000 - 0x27608fff libCoreFSCache.dylib armv7  <387bf7c1911a3e749f83037d6655a0e9> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x27609000 - 0x2760cfff libCoreVMClient.dylib armv7  <9ac8ebec447238cab588905e8173abec> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x2760d000 - 0x27615fff libGFXShared.dylib armv7  <a8cdc3dc15ce36d5a98e86677be92474> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x27616000 - 0x27655fff libGLImage.dylib armv7  <fbe6d2e0bd513965aff8eb090786e6b3> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x27656000 - 0x27790fff libGLProgrammability.dylib armv7  <b10f8e21d436364faee593f67f7e7590> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
0x27af5000 - 0x27c46fff QuartzCore armv7  <fb4d51b6117a343cbeedc0045821a7d3> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x27c47000 - 0x27c9afff QuickLook armv7  <e98f1038f2be34f8996edb4266ce0da9> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x27e87000 - 0x27ec7fff Security armv7  <7a4494b7060132e9bf85855b17f694c5> /System/Library/Frameworks/Security.framework/Security
0x2806b000 - 0x280c7fff SystemConfiguration armv7  <054ebf2b18913f589c139e058bae2ec9> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x280ca000 - 0x2896dfff UIKit armv7  <b4a8dd52c78d384aab3b03c0bc9a7ff4> /System/Library/Frameworks/UIKit.framework/UIKit
0x2896e000 - 0x289d5fff VideoToolbox armv7  <c5c531ac886c3ccdb103d77da4647eb0> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x289d6000 - 0x28bbcfff WebKit armv7  <bf906d7aa96b3918817d12318bf75b92> /System/Library/Frameworks/WebKit.framework/WebKit
0x28eb8000 - 0x28ec3fff AOSNotification armv7  <0596c0572cbb33798fbb5abd839d750b> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification
0x29018000 - 0x29064fff AccountsDaemon armv7  <1bdf9e93608e30eaa0f622d65e2b1e17> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x29065000 - 0x29086fff AccountsUI armv7  <f99c66167ba237b2bdadbd2a0ce7cf9a> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI
0x29087000 - 0x2908bfff AggregateDictionary armv7  <bf6e9572174f3a09985abe1a3ed3d052> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x29251000 - 0x2927bfff AirPlaySupport armv7  <4b8674a25d3b3245a936308911807016> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport
0x29474000 - 0x294b6fff AppSupport armv7  <451dd95cedd037b7b124522fdb2fb545> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x294b7000 - 0x294fefff AppleAccount armv7  <48a6b73143363685bef956ffe10f7127> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x295e6000 - 0x29623fff AppleJPEG armv7  <105c3957b1323c49a31e94c43f643b61> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x2962e000 - 0x29640fff ApplePushService armv7  <b88bd0d1314432dea65f7de3cae40178> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x29641000 - 0x29647fff AppleSRP armv7  <c320a73d635938c4998bcf2ec77997e4> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP
0x2967c000 - 0x29685fff AssertionServices armv7  <23d8209940e13b43abf99cfc04a22682> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x29686000 - 0x2969efff AssetsLibraryServices armv7  <2807f6296e6f3b41b93bfb9b170a39ba> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x2969f000 - 0x296c3fff AssistantServices armv7  <59440c7a3b163e988f1892ec96281c37> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x296f3000 - 0x296f7fff BTLEAudioController armv7  <600bfbfc528a34378b0b976b908b49fc> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController
0x296f8000 - 0x2970ffff BackBoardServices armv7  <691715d0d14a3a21871e86e4de703d4a> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x29712000 - 0x29747fff BaseBoard armv7  <d051b61623163e5db3572f35442b4fb8> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x29748000 - 0x2974efff BluetoothManager armv7  <8bcb2c2154d532dd9b2e715c8e9fbbe9> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x2974f000 - 0x29775fff Bom armv7  <ad0a4c0c0a9f320c90845a8af7ef6941> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x297f4000 - 0x297fbfff CacheDelete armv7  <af3da44fa94d39e28277fa210720b146> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x29840000 - 0x29869fff CalendarFoundation armv7  <0c198129b9343c0bbd34a2fab1e0a04c> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x29977000 - 0x2997ffff CaptiveNetwork armv7  <4bf8c2da6cae3b32b0d79da0063ea5b6> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x29980000 - 0x29aa2fff Celestial armv7  <6961fe4f31db3f7188c41215c700a922> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x29ab0000 - 0x29ac8fff CertInfo armv7  <e666b317be84333c9e764d4cc11f7f3e> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo
0x29ac9000 - 0x29acefff CertUI armv7  <4b9c782eb37c39539dceb50ef8ce1031> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x29bf9000 - 0x29c1afff ChunkingLibrary armv7  <524a86c48bb23111b9806d7989dfb828> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x29fc8000 - 0x2a073fff CloudPhotoLibrary armv7  <7526c5dd5c4e301db4e88ea72be08c61> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x2a0c4000 - 0x2a0c6fff CommonAuth armv7  <e8c98f31f63833b499b095609caeae51> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x2a0c7000 - 0x2a0d7fff CommonUtilities armv7  <2c365dc9d8283a62b5d26bde20e908d3> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x2a0d8000 - 0x2a0dcfff CommunicationsFilter armv7  <600820839b07343e88217f822fd87497> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x2a14d000 - 0x2a151fff ConstantClasses armv7  <e13a3f4544163ccf965efb936d22710c> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x2a152000 - 0x2a18afff ContentIndex armv7  <a3a89bf59db53a41830869428fba0b88> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
0x2a18b000 - 0x2a18efff CoreAUC armv7  <bd82bbb4214d31ba824f0d2796989976> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x2a1b3000 - 0x2a207fff CoreDAV armv7  <9acc66c8a9433c32a11ce98847bc7b99> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x2a208000 - 0x2a222fff CoreDuet armv7  <1d40d1f6e70f3f7e86226d6fd7c0e602> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x2a227000 - 0x2a236fff CoreDuetDaemonProtocol armv7  <34239fb5b6ea3d189876e419a43d5668> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x2a23d000 - 0x2a23ffff CoreDuetDebugLogging armv7  <66ad8a1fcae239bda7d26be708c086e3> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x2a38d000 - 0x2a48dfff CoreMediaStream armv7  <4ca4d60df4293effb1462e5f55d86a37> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x2a48e000 - 0x2a529fff CorePDF armv7  <1056dea427c2372ebdb67e704aa016c8> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x2a58a000 - 0x2a594fff CoreRecents armv7  <ce286a2ba2d036bca4e7c3f641589c62> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x2a828000 - 0x2a8a8fff CoreUI armv7  <77a9630e0e7438c68debfb0be86f637d> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x2a8a9000 - 0x2a912fff CoreUtils armv7  <cdcc7ef279423623b15fad54d9c6d263> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x2a913000 - 0x2a918fff CrashReporterSupport armv7  <de0efd3cb7d43c1b8dc83d84b29f3ac2> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x2a919000 - 0x2a91ffff DAAPKit armv7  <7b4b751331be32fca24ed7fd30590add> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x2a920000 - 0x2a92afff DCIMServices armv7  <3bd10778e9813f4f9eba5e761e63b272> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x2a92b000 - 0x2a970fff DataAccess armv7  <f0d4fe5bfcf339aeb7aff606b4d677d2> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x2ab62000 - 0x2ab83fff DataAccessExpress armv7  <b62ccf0334e538d7a0701d97c651978e> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x2abc2000 - 0x2abc8fff DataMigration armv7  <0d2533e6d6953ca0a13dca0f1c56956d> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x2abd2000 - 0x2abd3fff DiagnosticLogCollection armv7  <0999a3d19f1c3bd191bb788578dfc4e8> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x2abd4000 - 0x2abeefff DictionaryServices armv7  <ac194a01d12138c2ae5863e9e6c7c3d3> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
0x2ac0d000 - 0x2ac2cfff EAP8021X armv7  <e22993e2b4d8335dba7e5058c024cf5e> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x2ad2b000 - 0x2ad2dfff FTClientServices armv7  <6073dddab5673d709d4518b847d792d0> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x2ad2e000 - 0x2ad5efff FTServices armv7  <8b28c559431a3a94b928f61d026b6008> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x2ad5f000 - 0x2b182fff FaceCore armv7  <cd09c9e6ffaf38d786332ff7b24e91f3> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x2b1a7000 - 0x2b1a7fff FontServices armv7  <50407d56075e3b84aee4a18fe20a364a> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x2b1a8000 - 0x2b27cfff libFontParser.dylib armv7  <96206fba1a06364b9e454eeef94c0246> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x2b27d000 - 0x2b289fff libGSFontCache.dylib armv7  <18d22c3b851036efb9e4b8e17df422ac> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x2b36c000 - 0x2b387fff FrontBoardServices armv7  <fcee2874eaa4328aa6c39b4df1fbef89> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x2b8ed000 - 0x2b8f4fff libGPUSupportMercury.dylib armv7  <f35f4aac2acc3014a3333b070029d002> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
0x2bbb3000 - 0x2bbd7fff ICE armv7  <99e4bbde7d63339dae9e66d096f8218d> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ICE.framework/ICE
0x2bbd8000 - 0x2bbd8fff LegacyHandle armv7  <1e5727603604380db8aaf7db77522cf9> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/LegacyHandle.framework/LegacyHandle
0x2bbd9000 - 0x2bbe1fff SimpleKeyExchange armv7  <b684769c766b3e4c89d71d0da9daec2a> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange
0x2bbe2000 - 0x2bbedfff ViceroyTrace armv7  <db609164d9d639138d17f8ffe85c2a6c> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace
0x2bbee000 - 0x2bbeffff snatmap armv7  <f9d32163e85d34e7a2c42a47387b0cec> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/snatmap.framework/snatmap
0x2bc6c000 - 0x2bc82fff GenerationalStorage armv7  <3c6bb4fc1b663ec3bb79709587935963> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x2bc83000 - 0x2bef0fff GeoServices armv7  <b53000bf129b3017b80da4a8817db150> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x2bef1000 - 0x2bf01fff GraphicsServices armv7  <ee8b5d298a8236858aa4287ca6f2e0b2> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x2bfa3000 - 0x2bff2fff Heimdal armv7  <2e27fbc00a7c3545b30ab1cbe1e0c8a6> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x2c088000 - 0x2c107fff HomeSharing armv7  <b5d3eedf6e9e399a9c4cc55a34be2055> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x2c166000 - 0x2c1bcfff IDS armv7  <75c8d418d5b43c0ca8552c9be00a7cd4> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x2c1bd000 - 0x2c1dffff IDSFoundation armv7  <5b7681220a993228a4aa076c9d39de43> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x2c247000 - 0x2c2f6fff IMCore armv7  <e3827b9ed00436bdb454191ef5ef819e> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x2c390000 - 0x2c3f4fff IMFoundation armv7  <020b1ee36b5a3f7690cfc494a6e2dc2d> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x2c3fc000 - 0x2c3fffff IOAccelerator armv7  <95a58671a732335a8575189efc80436c> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x2c402000 - 0x2c408fff IOMobileFramebuffer armv7  <2973ae53701d39aab64c7a93e9c1dcf6> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x2c409000 - 0x2c40efff IOSurface armv7  <4201a5dacbbf3c0f83e2aadb55ac3415> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
0x2c40f000 - 0x2c410fff IOSurfaceAccelerator armv7  <88b723f5bfe03571a396cc49741620ca> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x2c4ac000 - 0x2c4b2fff IntlPreferences armv7  <e15d44fb05c23b3fb6e3cfbd4b477e57> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x2c4b3000 - 0x2c4e9fff LanguageModeling armv7  <41bfc44ca9cf38edaf462a42fc5a0753> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x2c525000 - 0x2c561fff MIME armv7  <83e86791adb934b0923e133c2b237be6> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x2c562000 - 0x2c5bcfff MMCS armv7  <4f754952c03e3fde8675a62f67fc4327> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x2c605000 - 0x2c611fff MailServices armv7  <de34150464b639c39391b217044766d5> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x2c645000 - 0x2c6e6fff ManagedConfiguration armv7  <7591cc2fbf33310c93ebc7039d77cd89> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x2c6f0000 - 0x2c6f1fff Marco armv7  <fa5b05c7bf033ceb94486dce9e07c697> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x2c6f2000 - 0x2c769fff MediaControlSender armv7  <7ceca73f7ae13e908d4ec2cb6e4529a2> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
0x2c808000 - 0x2c81afff MediaRemote armv7  <9cd03aaa29d63f8a8957cfe7dd6f8184> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x2c81b000 - 0x2c82afff MediaServices armv7  <be9a8d82dc173515ae7d697333df31fb> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x2c82b000 - 0x2c843fff MediaStream armv7  <81c042c18c153823b276a0db6187222d> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x2c8ac000 - 0x2c989fff Message armv7  <31328b2d35c53051b95af159c04d52cb> /System/Library/PrivateFrameworks/Message.framework/Message
0x2c98f000 - 0x2c991fff MessageSupport armv7  <d1f893f435263492b06a8e760e9c971a> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x2c9a3000 - 0x2c9b0fff MobileAsset armv7  <564968174a713055ab46ade7a21a6276> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x2c9d7000 - 0x2c9e0fff MobileBluetooth armv7  <65537c8b75e339f786bc768e786b7aa3> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x2c9fc000 - 0x2ca03fff MobileIcons armv7  <eaec71786ade3fd6b8020b685bc27f6d> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x2ca04000 - 0x2ca0bfff MobileInstallation armv7  <4a5db6edf05436e2a1a7093e9cb88a40> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x2ca0c000 - 0x2ca18fff MobileKeyBag armv7  <f38a6733f2d83899b00c4c70043796ef> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x2ca45000 - 0x2ca48fff MobileSystemServices armv7  <c5fdefa4cea23a0fbe856e052b1645fd> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x2ca6a000 - 0x2ca77fff MobileWiFi armv7  <c737cae9a2b83429b5e782040b4ea25b> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x2cab6000 - 0x2cc55fff MusicLibrary armv7  <13487d4ebcf232ceb319f52d435c0982> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x2ccef000 - 0x2ccf4fff Netrb armv7  <5f55aa01b0e830d1836eebe5f526c488> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x2ccf5000 - 0x2ccfbfff NetworkStatistics armv7  <ac0e65da55a13b7b83063ada9aa8c8ac> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x2ccfc000 - 0x2cd19fff Notes armv7  <c8271e69ca6a375cbbbdbd4e6e02b4d0> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x2cd1f000 - 0x2cd21fff OAuth armv7  <a37bdb65bcf536d685a023e9b9efe258> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x2d479000 - 0x2d4b5fff OpenCL armv7  <a5d8fcfcc6123ca3acfd5063c8b7fcc8> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
0x2d5a6000 - 0x2d5cdfff PersistentConnection armv7  <dfef66a09fe33166800f1c9e5e33ad7b> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x2d737000 - 0x2d9a4fff PhotoLibraryServices armv7  <997f5b864f5737b4abcb05246fbbc8c0> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x2d9a5000 - 0x2d9aefff PhotosFormats armv7  <ec5658da30b93d7d9ad3e1dfeb3715e3> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x2d9af000 - 0x2d9f9fff PhysicsKit armv7  <302982e6d8f63d4f967083b07f4792c6> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x2d9fa000 - 0x2da10fff PlugInKit armv7  <ec5cbbea9b26345e8b84d40b06cc5ce6> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x2da11000 - 0x2da18fff PowerLog armv7  <45594755e8e230e2a46d3bdf0cc87ae4> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x2dc16000 - 0x2dcbefff Preferences armv7  <d30768d1ea133321addd444b400335ba> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x2dcbf000 - 0x2dcfcfff PrintKit armv7  <b9774f70fe643d8ab9f00504f6b80c35> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
0x2dd01000 - 0x2dd95fff ProofReader armv7  <6ffc157680a13290bbcee35a9598aae7> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x2dd96000 - 0x2dda5fff ProtectedCloudStorage armv7  <cef08f56af2039b5aba84b2a5a1c18b0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x2dda6000 - 0x2ddb2fff ProtocolBuffer armv7  <a6b722673856304bb5d4a81d8a823c30> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x2dde5000 - 0x2de53fff Quagga armv7  <a30e9231f6653d0d81f895084e159dc1> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x2e066000 - 0x2e0f2fff SAObjects armv7  <8d5e63e487ce30e2b68c758674c4c3b9> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x2e25f000 - 0x2e279fff SpringBoardServices armv7  <1771b183cb8b375291bef90b42c28d8f> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x2e5e5000 - 0x2e6fdfff StoreServices armv7  <9b2783ba643238f3973d8098615239e3> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x2e7cf000 - 0x2e7d1fff TCC armv7  <4603e107a0da36afb0577925d23ad485> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x2e818000 - 0x2e855fff TelephonyUtilities armv7  <ade85ee5efa03510ba1cc6cfd94671ae> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x2f705000 - 0x2f72dfff TextInput armv7  <151f7c04832436b898fad64758e27a21> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x2f7e1000 - 0x2f8a6fff UIFoundation armv7  <77e408fd6bdd3ebd994f2e6701cbafdc> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x2f8c8000 - 0x2f8cbfff UserFS armv7  <eaa14007b6683b07ae6871e6f9969148> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x30044000 - 0x30062fff VoiceServices armv7  <b5c81289a0fb32deabbc414f7b122a48> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x300eb000 - 0x30111fff WebBookmarks armv7  <d1744b3978af3ebe8e88592347d1825e> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x30127000 - 0x30c98fff WebCore armv7  <94a7060df099385e8612a4072d8fe609> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x30c99000 - 0x30d57fff WebKitLegacy armv7  <b2602d2d933632838b3eaa17b5998611> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x30ebe000 - 0x30edffff WirelessDiagnostics armv7  <b9ce4f385d0536488733612e79e04233> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x30ef2000 - 0x30ef8fff XPCKit armv7  <faa56d80c61c3b05a2d0acfbbb4a9e94> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x30ef9000 - 0x30f01fff XPCObjects armv7  <508be1d1f4f43d4da7919d9be63b95d0> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
0x310eb000 - 0x3110ffff iCalendar armv7  <0185552de4c4320b90fab16549d906e0> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x31303000 - 0x3133efff iTunesStore armv7  <0222c9dbb81f3867bff1647d36f5332f> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x31838000 - 0x31847fff libAWDProtobufFacetimeiMessage.dylib armv7  <a885eee7f44a33549c962112cb7cb4c5> /usr/lib/libAWDProtobufFacetimeiMessage.dylib
0x31925000 - 0x3192bfff libAWDSupportConfig.dylib armv7  <f1d80b7a8d0630f9b22c86b980f54f33> /usr/lib/libAWDSupportConfig.dylib
0x3192c000 - 0x31a6cfff libAWDSupportFramework.dylib armv7  <2da6104a16f53af2842cf5972c17d92d> /usr/lib/libAWDSupportFramework.dylib
0x31a6d000 - 0x31a6efff libAWDSupportInfo.dylib armv7  <e5afe5e0e8b430bf8e7884280d1ea898> /usr/lib/libAWDSupportInfo.dylib
0x31a78000 - 0x31a80fff libAccessibility.dylib armv7  <1d0bc6b830c631ec822a10070d15e948> /usr/lib/libAccessibility.dylib
0x31bb2000 - 0x31bc8fff libCRFSuite.dylib armv7  <746f523326833d11a24e2142871aeaca> /usr/lib/libCRFSuite.dylib
0x31bfa000 - 0x31cfdfff libFosl_dynamic.dylib armv7  <5c61b56d9a8037d3b7c3615d42e33891> /usr/lib/libFosl_dynamic.dylib
0x31d15000 - 0x31d16fff libMobileCheckpoint.dylib armv7  <0ccdbab6866a35639fe253b01869503e> /usr/lib/libMobileCheckpoint.dylib
0x31d17000 - 0x31d2efff libMobileGestalt.dylib armv7  <32e6fa58051c39ae8ca286072513b577> /usr/lib/libMobileGestalt.dylib
0x31d2f000 - 0x31d37fff libMobileGestaltExtensions.dylib armv7  <d30208f3ca233d2792817a51f7bad370> /usr/lib/libMobileGestaltExtensions.dylib
0x31d54000 - 0x31d55fff System armv7  <c07ea74283f131e2bbddef51d285ecfc> /System/Library/Frameworks/System.framework/Versions/B/System
0x31dc6000 - 0x31e0afff libTelephonyUtilDynamic.dylib armv7  <55ab7f3a82ce3296801bacc3d5d82a7a> /usr/lib/libTelephonyUtilDynamic.dylib
0x31f1a000 - 0x31f3cfff libarchive.2.dylib armv7  <9c5747f3bde23eb9904f25f4d2a48482> /usr/lib/libarchive.2.dylib
0x31f3d000 - 0x31f3dfff libassertion_extension.dylib armv7  <f29450b2eb6d397896adcf74d33beb24> /usr/lib/libassertion_extension.dylib
0x31f6c000 - 0x31f78fff libbsm.0.dylib armv7  <fc5847733d0b3040a6f78db015002c29> /usr/lib/libbsm.0.dylib
0x31f79000 - 0x31f82fff libbz2.1.0.dylib armv7  <43c20d2a3ae630b2b00af23b29c1cf4a> /usr/lib/libbz2.1.0.dylib
0x31f83000 - 0x31fcdfff libc++.1.dylib armv7  <04463e09c37b388fb4f0d9b578ff27af> /usr/lib/libc++.1.dylib
0x31fce000 - 0x31fe9fff libc++abi.dylib armv7  <201e1c5ea8a53c70aa976d54f4518c2e> /usr/lib/libc++abi.dylib
0x31feb000 - 0x31ff8fff libcmph.dylib armv7  <bc6842a838a13b8e9837a3ddfba2edc9> /usr/lib/libcmph.dylib
0x31ff9000 - 0x32001fff libcupolicy.dylib armv7  <a951b132d31d31a7b7fb1233dd8b8477> /usr/lib/libcupolicy.dylib
0x32028000 - 0x32040fff libextension.dylib armv7  <ff613df2137d3c1888ed1615ed64e517> /usr/lib/libextension.dylib
0x32171000 - 0x32174fff libheimdal-asn1.dylib armv7  <acd90eedb78532e9a34c45a95a8cffe7> /usr/lib/libheimdal-asn1.dylib
0x32175000 - 0x32262fff libiconv.2.dylib armv7  <a0d4cae016673389ad357ea1033c1f4d> /usr/lib/libiconv.2.dylib
0x32263000 - 0x323d1fff libicucore.A.dylib armv7  <538b3775a2e2314ea196e48929be2eeb> /usr/lib/libicucore.A.dylib
0x323de000 - 0x323defff liblangid.dylib armv7  <3399f30bf7ea3551b32b052dc3a87aad> /usr/lib/liblangid.dylib
0x323df000 - 0x323e9fff liblockdown.dylib armv7  <3bfa793f65d93897ac94a9b697303fcd> /usr/lib/liblockdown.dylib
0x323ea000 - 0x323fffff liblzma.5.dylib armv7  <cdcc1c6fe5453492a9e172ec7eee84fb> /usr/lib/liblzma.5.dylib
0x3277b000 - 0x3278ffff libmis.dylib armv7  <52bc0b0ba1843be58d928607c9bee017> /usr/lib/libmis.dylib
0x327b8000 - 0x329b2fff libobjc.A.dylib armv7  <fcccdef901003a469d4b5263d611846a> /usr/lib/libobjc.A.dylib
0x32a0e000 - 0x32a66fff libprotobuf.dylib armv7  <09d12b822cfb34ae84da36a1e094b38b> /usr/lib/libprotobuf.dylib
0x32a67000 - 0x32a7dfff libresolv.9.dylib armv7  <f99e0bc1c4ba33ad99a3389faf59ba72> /usr/lib/libresolv.9.dylib
0x32aa8000 - 0x32b4dfff libsqlite3.dylib armv7  <a81902eff78c39308cc8040889887d2e> /usr/lib/libsqlite3.dylib
0x32b4e000 - 0x32b9afff libstdc++.6.dylib armv7  <5ec272842fb63595a91ca7d2ad14e52b> /usr/lib/libstdc++.6.dylib
0x32b9b000 - 0x32bc2fff libtidy.A.dylib armv7  <abe9491c2435315fab7fa38577d67d15> /usr/lib/libtidy.A.dylib
0x32bc3000 - 0x32bcbfff libtzupdate.dylib armv7  <89b89dbcd90c3f168195d17048483b72> /usr/lib/libtzupdate.dylib
0x32bcf000 - 0x32c85fff libxml2.2.dylib armv7  <953ce5aaa1833fc098761e2888d38f14> /usr/lib/libxml2.2.dylib
0x32c86000 - 0x32ca7fff libxslt.1.dylib armv7  <3373d602995e38a3b6a224205b0d1f1c> /usr/lib/libxslt.1.dylib
0x32ca8000 - 0x32cb4fff libz.1.dylib armv7  <5a3030aa2bd43c3db1b41e49b65d8852> /usr/lib/libz.1.dylib
0x32cb5000 - 0x32cb9fff libcache.dylib armv7  <6019d220fb3e3fa69a198f520232debe> /usr/lib/system/libcache.dylib
0x32cba000 - 0x32cc3fff libcommonCrypto.dylib armv7  <637eac1fd01d32a890c94fa6f3743c2d> /usr/lib/system/libcommonCrypto.dylib
0x32cc4000 - 0x32cc8fff libcompiler_rt.dylib armv7  <ffb897c303913d1db3285b5e8356e5d2> /usr/lib/system/libcompiler_rt.dylib
0x32cc9000 - 0x32ccffff libcopyfile.dylib armv7  <fa6addf1824235a9a978f4e8f1d885ed> /usr/lib/system/libcopyfile.dylib
0x32cd0000 - 0x32d1cfff libcorecrypto.dylib armv7  <bfe34a77d14d352f93e34a530dd68285> /usr/lib/system/libcorecrypto.dylib
0x32d1d000 - 0x32d58fff libdispatch.dylib armv7  <d56533a0119f32fa8d7d07fedd50b93c> /usr/lib/system/libdispatch.dylib
0x32d59000 - 0x32d5afff libdyld.dylib armv7  <41ecc8ae1c403fc79b3a327b6903d66a> /usr/lib/system/libdyld.dylib
0x32d5b000 - 0x32d5bfff libkeymgr.dylib armv7  <45a6025e9a58300e94c36b4ed262c6cd> /usr/lib/system/libkeymgr.dylib
0x32d5c000 - 0x32d5cfff liblaunch.dylib armv7  <c9e67ee4382c394c91e34df6674f2199> /usr/lib/system/liblaunch.dylib
0x32d5d000 - 0x32d60fff libmacho.dylib armv7  <5f0fa3d21ae331739966a3ccc8020380> /usr/lib/system/libmacho.dylib
0x32d61000 - 0x32d62fff libremovefile.dylib armv7  <01f437d328da35deab8aabf436d82e7a> /usr/lib/system/libremovefile.dylib
0x32d63000 - 0x32d74fff libsystem_asl.dylib armv7  <46fb91bd43e737c7a8638967c6efe467> /usr/lib/system/libsystem_asl.dylib
0x32d75000 - 0x32d75fff libsystem_blocks.dylib armv7  <783efecc85a832ac962bea5bc4d365d5> /usr/lib/system/libsystem_blocks.dylib
0x32d76000 - 0x32dd8fff libsystem_c.dylib armv7  <3947b75201ac39f8abff8507372bc8c6> /usr/lib/system/libsystem_c.dylib
0x32dd9000 - 0x32ddbfff libsystem_configuration.dylib armv7  <c8635900dafa339daa83039ee4c6f7dd> /usr/lib/system/libsystem_configuration.dylib
0x32ddc000 - 0x32dddfff libsystem_coreservices.dylib armv7  <4e58541adedc3c798fe75b1945ed38cf> /usr/lib/system/libsystem_coreservices.dylib
0x32dde000 - 0x32deafff libsystem_coretls.dylib armv7  <fb441163ce283f7eb8a0a05992804873> /usr/lib/system/libsystem_coretls.dylib
0x32deb000 - 0x32df1fff libsystem_dnssd.dylib armv7  <0a86f809f51a3ca3906ccc81b4fa7ec1> /usr/lib/system/libsystem_dnssd.dylib
0x32df2000 - 0x32e0afff libsystem_info.dylib armv7  <f79c213fe29e30a88c05e23d880fe479> /usr/lib/system/libsystem_info.dylib
0x32e0b000 - 0x32e25fff libsystem_kernel.dylib armv7  <b74d67495e8d347f8596330c35031d20> /usr/lib/system/libsystem_kernel.dylib
0x32e26000 - 0x32e46fff libsystem_m.dylib armv7  <9fc8e300457a3c888643dcd4e41d17ee> /usr/lib/system/libsystem_m.dylib
0x32e47000 - 0x32e59fff libsystem_malloc.dylib armv7  <d0158624b3b6398682dd68fb5709d25c> /usr/lib/system/libsystem_malloc.dylib
0x32e5a000 - 0x32e87fff libsystem_network.dylib armv7  <fc76f7b1505c3e5dbd6640eb1ba6a6d1> /usr/lib/system/libsystem_network.dylib
0x32e88000 - 0x32e8dfff libsystem_networkextension.dylib armv7  <7054f91d882f3a0ba7512cac140c4508> /usr/lib/system/libsystem_networkextension.dylib
0x32e8e000 - 0x32e95fff libsystem_notify.dylib armv7  <e23e38b2994238538926efe399f6a73a> /usr/lib/system/libsystem_notify.dylib
0x32e96000 - 0x32e9bfff libsystem_platform.dylib armv7  <b04135119e133a9a8360ed9dd5e9c170> /usr/lib/system/libsystem_platform.dylib
0x32e9c000 - 0x32ea2fff libsystem_pthread.dylib armv7  <9a16c49768bf33b8a49e8518130fc840> /usr/lib/system/libsystem_pthread.dylib
0x32ea3000 - 0x32ea5fff libsystem_sandbox.dylib armv7  <2f5233e0357b31b290d60bae002bf397> /usr/lib/system/libsystem_sandbox.dylib
0x32ea6000 - 0x32ea9fff libsystem_stats.dylib armv7  <fa1003dfd7c43294a378371a44d518ba> /usr/lib/system/libsystem_stats.dylib
0x32eaa000 - 0x32eaffff libsystem_trace.dylib armv7  <e07faea11db63c47bc6c5862a62c926a> /usr/lib/system/libsystem_trace.dylib
0x32eb0000 - 0x32eb0fff libunwind.dylib armv7  <057b81c42ccf3d9dbfa7fd9a35ee0dab> /usr/lib/system/libunwind.dylib
0x32eb1000 - 0x32eccfff libxpc.dylib armv7  <63e5390ff1563bdcad59b826676ce6d0> /usr/lib/system/libxpc.dylib 
 

Egorov Alex

unread,
Mar 27, 2015, 8:41:47 AM3/27/15
to rob...@googlegroups.com, egorova...@gmail.com
I'm using RoboVM 1.0.0 + libgdx. I've tried to produce the symbolicated crash log using your instructions https://github.com/robovm/robovm/wiki/Symbolicate-a-crash-reports, but there are no difference in my case between crash log and this generated one. 

Can it be that such lines "0x41000 + 11297246" appear because of libgdx?  
Or i just have i made the incorrect symbolicated crash log? 
...

Egorov Alex

unread,
Apr 7, 2015, 5:00:22 AM4/7/15
to rob...@googlegroups.com, egorova...@gmail.com
I'm not sure but it seems that crash occur in callback method of MCSession. 

(may be because of libgdx my symbolicated crash log looks like this)

Thread 18 name:  Dispatch queue: com.apple.MCSession.callbackQueue
Thread 18 Crashed:
0   libsystem_kernel.dylib         0x32e1fdfc __pthread_kill + 8
1   libsystem_pthread.dylib       0x32e9fd0e pthread_kill + 58
2   libsystem_c.dylib             0x32dbf934 abort + 72
3   IOSLauncher                   0x00b51e2e 0x8c000 + 11296302
4   IOSLauncher                   0x00b58734 0x8c000 + 11323188
5   IOSLauncher                   0x00b4b3d0 0x8c000 + 11269072
6   IOSLauncher                   0x00b2c7b8 0x8c000 + 11143096
7   IOSLauncher                   0x00b2c8ca 0x8c000 + 11143370
8   IOSLauncher                   0x00b2b1f2 0x8c000 + 11137522
9   IOSLauncher                   0x00b2aed6 0x8c000 + 11136726
10  IOSLauncher                   0x00b2af06 0x8c000 + 11136774
11  IOSLauncher                   0x00b2cd8a 0x8c000 + 11144586
12  IOSLauncher                   0x00b2cca8 0x8c000 + 11144360
13  IOSLauncher                   0x00b2ccec 0x8c000 + 11144428
14  IOSLauncher                   0x00b2eaba 0x8c000 + 11152058
15  IOSLauncher                   0x00b2eb10 0x8c000 + 11152144
16  IOSLauncher                   0x00873fd0 0x8c000 + 8290256
Reply all
Reply to author
Forward
0 new messages