[
https://issues.apache.org/jira/browse/CB-65?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13158976#comment-13158976
]
Shazron Abdullah commented on CB-65:
------------------------------------
by: http://github.com/raknes (2011-08-04T19:05:01Z)
I experience the same issue without using any GPS service. The same error log
appears if I exit my app, enable Airplane mode and then resume my app.
by: http://github.com/ttopholm (2011-08-04T20:20:29Z)
Yes, I just observed the same if you go from 3g to wifi.... with just the
normal app which comes when it creates the www folder...
I would get is has something with the network stuff, when it changes network
state.
by: http://github.com/ttopholm (2011-08-04T20:31:48Z)
I just running it en debug mode, and it gives me these failures..
SIGSYS
EXC_BAD_ACCESS
by: http://github.com/linusdev (2011-08-08T21:11:58Z)
I can reproduce this bug with **any** phonegap iphone app, even without
geolocation. I found that the crash is not only triggered by switching to
airplane mode, but anytime the network state changes (3G, 2G, Wifi) while the
app is not actively running. Once you go back to the app, it takes a few
milliseconds until the app crashes.
Sorry to repeat myself from my last post, but this bug is a REAL showstopper:
Phonegap apps are hardly usable if they crash after reopening them - network
state changes are just to frequent to ignore this.
Running a bare app with just the phonegap starter code and nothing else, i
found the following information upon crash in my debug console:
```objc
//
// main.m
// phonegaptest
//
// Created by Philipp Rappold on 8/7/11.
// Copyright __MyCompanyName__ 2011. All rights reserved.
//
#import
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");
[pool release];
return retVal;
}
```
with the following info: ``Thread 1: Program received signal: "SIGSYS"`` at
line ``int retVal ...``.
@ttopholm: Could you please rename this thread to something more appropriate
like "App crashes after reactivating when network state changes"?
by: http://github.com/Viras- (2011-08-09T07:51:02Z)
I can confirm this bug as well. I also experience exactly the same issue even
without going to background (but then just from time to time). Unfortunately I
was not able to reproduce this bug exactly (when not going to background) but
the crash log looks exactly the same.
After I have symbolized both crash logs this somehow seems to be related to the
handleOpenURL function - thought I'm not an iOS developer and just tried my
best to track this down.
by: http://github.com/Viras- (2011-08-09T08:28:28Z)
I tracked this down to the ReachabilityCallback. After disabling the connection
plugin (com.phonegap.connection) in the PhoneGap.plist the crash disappears.
So for anyone who does not require the connection functionality of phonegap
this is a workaround!
by: http://github.com/linusdev (2011-08-09T08:55:35Z)
@Viras: Kudos!!
by: http://github.com/shazron (2011-08-09T19:10:33Z)
Related, according to the stack trace: #191
by: http://github.com/ttopholm (2011-08-09T22:01:17Z)
I just checked my connection.m, and the fix was already there (1.0.0), so it is
still the same...
by: http://github.com/ttopholm (2011-08-09T22:07:13Z)
Here is what I get, if I go through with Single step:
Single stepping until exit from function ReachabilityCallback,
which has no line number information.
warning: Remote failure reply: E37
by: http://github.com/shazron (2011-08-09T22:15:00Z)
ttopholm, was this under Xcode 4? version?
Struggling to repro this, I must have worn out my sim card eject slot on my
iPhone 4...
by: http://github.com/shazron (2011-08-09T22:33:46Z)
ttopholm, sorry to lean on you to debug this (since I still can't repro), but
it definitely occurs in the ReachabilityCallback right, not connection.m?
I'm thinking the NSCAsserts fired in ReachabilityCallback
by: http://github.com/shazron (2011-08-09T23:09:57Z)
One clue. Sometimes when I change to Airplane mode then resume (WiFi always off
thus Airplane Mode only toggles Cellular), I get two notifications for some
reason. Buggy Apple Sample Code..
by: http://github.com/ttopholm (2011-08-09T23:15:46Z)
The Xcode version is 4.1 Build 4B110
Yes it looks like to be in ReachabilityCallback
I can reproduce it just by enabling/disabling wifi while still having airplane
mode off....
by: http://github.com/shazron (2011-08-09T23:56:27Z)
ttopholm, did what you suggested (tried for 10 min) but still can't get it to
crash. What iOS firmware version, and iPhone model?
by: http://github.com/ttopholm (2011-08-10T20:53:16Z)
I'm using 4.3.4 and iPhone 4.... I will try to update to 4.3.5, and make a new
build where I add the connection plugin again....
by: http://github.com/shazron (2011-08-12T00:00:20Z)
I updated to 4.3.5 and still can't get it to crash no matter what and how
aggressive I switch network connections. I am debugging while tethered to the
device while testing however - how are you testing?
I'm thinking it has to do with these two asserts:
https://github.com/phonegap/phonegap-iphone/blob/master/PhoneGapLib/Classes/Reachability.m#L87-88
I purposely triggered the asserts, but my crash stack trace is not (exactly)
the same as what you encountered. Running out of ideas, I am going to change
the Reachabilitycallback code instead of asserting, it will just handle the
condition and return from the function. I will check this code in and let you
guys test. Will notify this thread once its done.
by: http://github.com/shazron (2011-08-12T00:13:09Z)
Hmm github auto-closed this one - re-opened.
Anyways the commit is
https://github.com/phonegap/phonegap-iphone/commit/a47d8121c118509149edc50dcebbd77758160a7b
if you want to patch and test. If not you can grab the latest and try it out.
by: http://github.com/linusdev (2011-08-12T07:11:46Z)
Granted I applied the patch correctly, the app still crashes.
I replaced the original Reachability.m in ~/Documents/PhoneGapLib/Classes with
your version, started Xcode, re-added the Connection-Plugin to my
PhoneGap.plist and hit "Run". Are there any additional steps that I might have
missed?
by: http://github.com/linusdev (2011-08-12T07:13:38Z)
And btw: I'm using Xcode 4.1 (Build 4B110), iPhone 4 (4.3.3 8J2)
by: http://github.com/raknes (2011-08-12T17:33:35Z)
I applied the patch and rebuilt PhoneGapLib. No crash when resuming app after
connection change.
XCode 4.1 (4B110)
iPad 1 (4.3.5 8L1)
by: http://github.com/shazron (2011-08-12T18:03:11Z)
@linusdev
Just checking, is your code based off the Xcode 4 Template? (i.e using
PhoneGap.framework instead of the PhoneGapLib.xcodeproj sub-project in it). If
so, you would have to compile PhoneGap.framework manually and use the new one
in your project to verify. To generate the new PhoneGap.framework, you will
have to launch PhoneGapLib.xcodeproj separately and build it with the
"UniversalFramework" target.
@raknes
awesome! I assume (just to be sure) you are using the Xcode 3 based Template
Project (with PhoneGapLib subproject in it).
by: http://github.com/raknes (2011-08-12T18:13:11Z)
Correction on my last report: Uncommenting the NSCAssert statements as it were,
and it still works. Looks as the problem was fixed by recompiling the
PhoneGapLib myself.
@shazron
I'm using the Xcode 4 template with PhoneGap.framework. Had to remove the
reference to the framework that came with installer and add the one in
/Documents/PhoneGapLib/build/Release-universal. Also had to update "Framework
Search Paths" in my project to the same path instead of
/Users/Shared/PhoneGap/Frameworks
by: http://github.com/shazron (2011-08-12T18:20:05Z)
I'm interested if others can replicate @raknes ' results (recompile and it's
ok).
by: http://github.com/shazron (2011-08-12T18:57:02Z)
Also, I'm seeing a pattern here - @raknes @ttopholm and @linusdev are all using
Xcode 4.1 on Lion (I don't know about @viras yet). The PhoneGap.framework for
1.0.0 release was definitely not compiled on a Lion machine.
by: http://github.com/linusdev (2011-08-12T19:19:13Z)
@shazron: Sorry for being a total noob here, but I still can't reproduce.
Here's what I did (I use the Xcode 4 template with PhoneGap.framework): I
opened the "PhoneGapLib.xcodeproj" in the ~/Documents/PhoneGapLib folder where
I previously patched the Rechability.m file. Then I selected "Universal
Framework > iPhone" from the dropdown in the upper left corner (next to the
run/stop buttons) and hit Apple-B to build the thing (which got confirmed with
the "build succeeded" message). Afterwards I opened my plain-vanilla test
project, built and deployed it to my iPhone and it still crashes.
Let me know if what I did was ok or what I should do differently.
by: http://github.com/shazron (2011-08-12T19:23:08Z)
@linusdev : see raknes' last comment in the thread, he shows how he did it. By
just compiling it, you don't replace the one in your project, you'll have to
manually replace it.
by: http://github.com/linusdev (2011-08-12T19:37:10Z)
Bingo!
@shazron: Now it works, both with the original asserts and your patched
version. Your pattern seems to be a good observation!
by: http://github.com/shazron (2011-08-12T20:32:46Z)
I've just confirmed with another dev (not on this thread) that re-compiling
works, and he's under Lion with Xcode 4.1 - so far, the pattern still holds...
by: http://github.com/mpacific (2011-08-12T21:24:50Z)
Thanks to raknes and shazron!
> App crashes after reactivating when network state changes
> ---------------------------------------------------------
>
> Key: CB-65
> URL: https://issues.apache.org/jira/browse/CB-65
> Project: Apache Callback
> Issue Type: Bug
> Components: iOS
> Reporter: Shazron Abdullah
>
> reported at: https://github.com/phonegap/phonegap-iphone/issues/213
> by: https://github.com/ttopholm
> Hi
> I found a bug in the 1.0.0 release.
> If you enable the app to run as a location service, and turn GPS on, and
> leave the app in the background, and you change your network connection, the
> app crashes.
> To reproduce the failure, just set the app to run as a background service,
> and start the GPS, then change your network connection from 3g to Wifi, or
> the other way around.
> Here is the crash log:
> Incident Identifier: 89EA70EA-8862-4968-BE7F-8467D01EC298
> CrashReporter Key: a20eaad4dceab50c73ce58c88d46517ca545f9a6
> Hardware Model: iPhone3,1
> Process: appname [1038]
> Path:
> /var/mobile/Applications/7903A1B1-717F-419C-BAE0-7D2604A36492/appname.app/appname
> Identifier: appname
> Version: ??? (???)
> Code Type: ARM (Native)
> Parent Process: launchd [1]
> Date/Time: 2011-08-03 23:51:10.571 +0200
> OS Version: iPhone OS 4.3.4 (8K2)
> Report Version: 104
> Exception Type: EXC_CRASH (SIGSYS)
> Exception Codes: 0x00000000, 0x00000000
> Crashed Thread: 0
> Thread 0 name: Dispatch queue: com.apple.main-thread
> Thread 0 Crashed:
> 0 appname 0x0001288c ReachabilityCallback + 4
> 1 SystemConfiguration 0x30d32e30 rlsPerform + 348
> 2 CoreFoundation 0x35024a72
> __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 6
> 3 CoreFoundation 0x3502669c __CFRunLoopDoSources0 + 188
> 4 CoreFoundation 0x350274e4 __CFRunLoopRun + 224
> 5 CoreFoundation 0x34fb7ebc CFRunLoopRunSpecific + 224
> 6 CoreFoundation 0x34fb7dc4 CFRunLoopRunInMode + 52
> 7 GraphicsServices 0x35827418 GSEventRunModal + 108
> 8 GraphicsServices 0x358274c4 GSEventRun + 56
> 9 UIKit 0x362e3d62 -[UIApplication _run] + 398
> 10 UIKit 0x362e1800 UIApplicationMain + 664
> 11 appname 0x00002674 main (main.m:14)
> 12 appname 0x00002620 start + 32
> Thread 1 name: Dispatch queue: com.apple.libdispatch-manager
> Thread 1:
> 0 libsystem_kernel.dylib 0x356d9fbc kevent + 24
> 1 libdispatch.dylib 0x30cf9032 _dispatch_mgr_invoke + 706
> 2 libdispatch.dylib 0x30cfa03a _dispatch_queue_invoke + 86
> 3 libdispatch.dylib 0x30cf95ea _dispatch_worker_thread2 +
> 186
> 4 libsystem_c.dylib 0x34d5558a _pthread_wqthread + 258
> 5 libsystem_c.dylib 0x34d55bbc start_wqthread + 0
> Thread 2 name: WebThread
> Thread 2:
> 0 libsystem_kernel.dylib 0x356d6c00 mach_msg_trap + 20
> 1 libsystem_kernel.dylib 0x356d6758 mach_msg + 44
> 2 CoreFoundation 0x350252b8 __CFRunLoopServiceMachPort +
> 88
> 3 CoreFoundation 0x35027562 __CFRunLoopRun + 350
> 4 CoreFoundation 0x34fb7ebc CFRunLoopRunSpecific + 224
> 5 CoreFoundation 0x34fb7dc4 CFRunLoopRunInMode + 52
> 6 WebCore 0x33efe27e _ZL12RunWebThreadPv + 382
> 7 libsystem_c.dylib 0x34d5430a _pthread_start + 242
> 8 libsystem_c.dylib 0x34d55bb4 thread_start + 0
> Thread 3:
> 0 libsystem_kernel.dylib 0x356d6c00 mach_msg_trap + 20
> 1 libsystem_kernel.dylib 0x356d6758 mach_msg + 44
> 2 CoreFoundation 0x350252b8 __CFRunLoopServiceMachPort +
> 88
> 3 CoreFoundation 0x35027562 __CFRunLoopRun + 350
> 4 CoreFoundation 0x34fb7ebc CFRunLoopRunSpecific + 224
> 5 CoreFoundation 0x34fb7dc4 CFRunLoopRunInMode + 52
> 6 Foundation 0x30fbc7f6
> +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 206
> 7 Foundation 0x30faf382 -[NSThread main] + 38
> 8 Foundation 0x310215c6 __NSThread__main__ + 966
> 9 libsystem_c.dylib 0x34d5430a _pthread_start + 242
> 10 libsystem_c.dylib 0x34d55bb4 thread_start + 0
> Thread 4 name: com.apple.CFSocket.private
> Thread 4:
> 0 libsystem_kernel.dylib 0x356d8c60 __select + 20
> 1 CoreFoundation 0x3502a8f2 __CFSocketManager + 582
> 2 libsystem_c.dylib 0x34d5430a _pthread_start + 242
> 3 libsystem_c.dylib 0x34d55bb4 thread_start + 0
> Thread 5:
> 0 libsystem_kernel.dylib 0x356d93ec __workq_kernreturn + 8
> 1 libsystem_c.dylib 0x34d556d8 _pthread_wqthread + 592
> 2 libsystem_c.dylib 0x34d55bbc start_wqthread + 0
> Thread 6:
> 0 libsystem_kernel.dylib 0x356d93ec __workq_kernreturn + 8
> 1 libsystem_c.dylib 0x34d556d8 _pthread_wqthread + 592
> 2 libsystem_c.dylib 0x34d55bbc start_wqthread + 0
> Thread 0 crashed with ARM Thread State:
> r0: 0x0000004e r1: 0x00050003 r2: 0x0018da80 r3: 0x00000000
> r4: 0x0018d930 r5: 0x00000000 r6: 0x0018da80 r7: 0x2fdfec40
> r8: 0x0001288a r9: 0x00000002 r10: 0x0018d938 r11: 0x3e8fcf88
> ip: 0x3f1ff428 sp: 0x2fdfe9e0 lr: 0x31522e37 pc: 0x0001288c
> cpsr: 0x20010010
> Binary Images:
> 0x1000 - 0x23fff +appname armv7 <17fb5cc62d93371881dd8e41e4cad3f6>
> /var/mobile/Applications/7903A1B1-717F-419C-BAE0-7D2604A36492/appname.app/appname
> 0x2fe00000 - 0x2fe25fff dyld armv7 <4d3190188cbf32a8a73f32a8b5bb7adf>
> /usr/lib/dyld
> 0x307f5000 - 0x30ae2fff libLAPACK.dylib armv7
> <b855d60dac01310495453bddfd004f0d>
> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
> 0x30ae3000 - 0x30af1fff DataDetectorsCore armv7
> <e54fa5bf6f9333618401cdbaf665f227>
> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
> 0x30b19000 - 0x30b4efff AddressBook armv7
> <3f2071a77bc134cd82065eef90d4082f>
> /System/Library/Frameworks/AddressBook.framework/AddressBook
> 0x30b93000 - 0x30cdffff MediaToolbox armv7
> <482b13059e8a329fa5d832baede25103>
> /System/Library/PrivateFrameworks/MediaToolbox.framework/MediaToolbox
> 0x30d03000 - 0x30d43fff CoreMedia armv7 <8e0570582ba535bfa74f1f00eef64376>
> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
> 0x30d5e000 - 0x30dfbfff AddressBookUI armv7
> <e354aeb3d96e30338e90cc3638ffe81b>
> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
> 0x30dfc000 - 0x30e05fff CoreVideo armv7 <ea847e6dba2d36b1826b255c73b39539>
> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
> 0x30e0a000 - 0x30e16fff HomeSharing armv7
> <2df6957cdfea31aea12eebf27ca1691c>
> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
> 0x30e3d000 - 0x30e3dfff Accelerate armv7 <7d5ad465049136afaa1f0d89aac600bc>
> /System/Library/Frameworks/Accelerate.framework/Accelerate
> 0x30ff4000 - 0x31000fff SpringBoardServices armv7
> <c68262667ac8397a949ce4e92dfec7db>
> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
> 0x31166000 - 0x311a8fff CoreAudio armv7 <c972fd5f8e89333ca680b9a33587f896>
> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
> 0x3125a000 - 0x31347fff libiconv.2.dylib armv7
> <f4146ce07e3031ea8a81fa5516fd77d0> /usr/lib/libiconv.2.dylib
> 0x31352000 - 0x31403fff WebKit armv7 <eb9a0d69c64b3127b2bffd71641add3b>
> /System/Library/PrivateFrameworks/WebKit.framework/WebKit
> 0x31411000 - 0x31450fff libSystem.B.dylib armv7
> <33dcf9a403ae3fd5971d6030ada2fcab> /usr/lib/libSystem.B.dylib
> 0x31451000 - 0x31471fff PrintKit armv7 <e5a01ca9083a36afacc08611a398e2ad>
> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
> 0x31490000 - 0x31497fff libMobileGestalt.dylib armv7
> <55f29184efcc3046bb833dd72a4487e1> /usr/lib/libMobileGestalt.dylib
> 0x314c0000 - 0x314d9fff libRIP.A.dylib armv7
> <4825c3e392983aba947eca06555e4480>
> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
> 0x314db000 - 0x314e2fff WebUI armv7 <74070ad76277301fba6d3a5eb5f214b1>
> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
> 0x314e3000 - 0x314f0fff libdispatch.dylib armv7
> <9a0511ad5ebc3db898f1f49ed1a73d34> /usr/lib/system/libdispatch.dylib
> 0x31511000 - 0x31540fff SystemConfiguration armv7
> <1d73b8a159363f96bb9c039655c5eae6>
> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
> 0x3159c000 - 0x315a5fff ITSync armv7 <ba8b48d061903e4096774344448776d0>
> /System/Library/PrivateFrameworks/ITSync.framework/ITSync
> 0x315a6000 - 0x315c3fff libsystem_info.dylib armv7
> <48016be86e3f3cd9aeee1c6590e1ac6f> /usr/lib/system/libsystem_info.dylib
> 0x315c4000 - 0x315d6fff PersistentConnection armv7
> <659ea9d5b13d3fefb37acff09016a69c>
> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
> 0x315d7000 - 0x3162cfff libvDSP.dylib armv7
> <0221caba81a235c5a896a835e2aac047>
> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
> 0x3166a000 - 0x3166ffff libsystem_dnssd.dylib armv7
> <c7cfe523e2d73521abc01587313ef730> /usr/lib/system/libsystem_dnssd.dylib
> 0x316a0000 - 0x31749fff libxml2.2.dylib armv7
> <5538d3f2c7d83b88b06168488fe6326b> /usr/lib/libxml2.2.dylib
> 0x3174a000 - 0x3177dfff StoreServices armv7
> <d526715648f435c3aac4c42953e76d20>
> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
> 0x3177e000 - 0x31781fff IOSurface armv7 <ad50e71624583d06b891344d832f9b08>
> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
> 0x31782000 - 0x318a1fff Foundation armv7 <09ff368178c5321c9715b9c8d491d53f>
> /System/Library/Frameworks/Foundation.framework/Foundation
> 0x318a2000 - 0x318f0fff GMM armv7 <049361f664eb3f30b0d25cd56ffc1f0f>
> /System/Library/PrivateFrameworks/GMM.framework/GMM
> 0x31972000 - 0x31975fff CertUI armv7 <9060fe03a4943ef295531feced9a17dd>
> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
> 0x31976000 - 0x31a90fff libicucore.A.dylib armv7
> <bada0c2725bb31a483d5adf9aaf1f8df> /usr/lib/libicucore.A.dylib
> 0x31a97000 - 0x31a9afff ApplePushService armv7
> <015c68c15621348db9f6a012499170e1>
> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
> 0x31aa7000 - 0x31bb9fff MediaPlayer armv7
> <da848c0745a637af81d7edd962a09324>
> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
> 0x31c06000 - 0x31c07fff libsystem_blocks.dylib armv7
> <ccc041df3de73eafb7a59e74cdb1702b> /usr/lib/system/libsystem_blocks.dylib
> 0x31c08000 - 0x31c3bfff QuickLook armv7 <29d2d981d1d6358381f5716ee37314b4>
> /System/Library/Frameworks/QuickLook.framework/QuickLook
> 0x31c90000 - 0x31c93fff libmacho.dylib armv7
> <43311c113a9d3182b7d007129819f029> /usr/lib/system/libmacho.dylib
> 0x336f6000 - 0x336f6fff vecLib armv7 <0c60cd0a60f43d2791d36cb357d30e3c>
> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
> 0x33705000 - 0x337abfff Celestial armv7 <407badafc6403692bf099d542d28bf7f>
> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
> 0x337b5000 - 0x337e9fff VideoToolbox armv7
> <570c63dc3a273a5a8c9072fd5567f5c1>
> /System/Library/PrivateFrameworks/VideoToolbox.framework/VideoToolbox
> 0x337fa000 - 0x33801fff AggregateDictionary armv7
> <ab9777b39e8e3026ad64dc90323cad7e>
> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
> 0x33a6f000 - 0x33a82fff libmis.dylib armv7
> <529ea6e3a87230ce9f6cf3285c22429c> /usr/lib/libmis.dylib
> 0x33b89000 - 0x33b89fff libdnsinfo.dylib armv7
> <21415179ffa03f949fa8cc851c6c31c7> /usr/lib/system/libdnsinfo.dylib
> 0x33c05000 - 0x33c06fff CoreSurface armv7
> <7b83cd757da73e6e826693c29296d3fa>
> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
> 0x33c0b000 - 0x33ca0fff ImageIO armv7 <d520e3241d1130e8ac1375ee0f2c1095>
> /System/Library/Frameworks/ImageIO.framework/ImageIO
> 0x33cb4000 - 0x33cecfff libCGFreetype.A.dylib armv7
> <416c77100b453e3f838831c4c857f8c7>
> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dylib
> 0x33ced000 - 0x33cedfff libCVMSPluginSupport.dylib armv7
> <42d8aa2a31843a6e8bfff745644a7ba5>
> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
> 0x33d0e000 - 0x33d13fff libcopyfile.dylib armv7
> <e57c2b9054b831d9a37119baaa4947cb> /usr/lib/system/libcopyfile.dylib
> 0x33d5b000 - 0x33d5cfff DataMigration armv7
> <42e9e87a4e0735c3837e27d4f2adcf55>
> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
> 0x33d5d000 - 0x33e7efff CoreGraphics armv7
> <65f6c8701b563542820a26b0dfc4f6a4>
> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
> 0x33e83000 - 0x33e8bfff MobileBluetooth armv7
> <63f11756c4aa3262b2317ff3b8e2a977>
> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
> 0x33e8c000 - 0x33ed2fff CoreLocation armv7
> <249b8af3dc503d11bf3711f0407c66d8>
> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
> 0x33ed3000 - 0x33f82fff QuartzCore armv7 <ef9632c9781f3101916b65e9faae1579>
> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
> 0x34110000 - 0x34115fff libnotify.dylib armv7
> <9d7198e91de9386a9e5ea43608a66a57> /usr/lib/system/libnotify.dylib
> 0x34140000 - 0x34141fff libdyld.dylib armv7
> <7dd4acfe150831e0ae82296587e67e7f> /usr/lib/system/libdyld.dylib
> 0x34142000 - 0x3417ffff CoreText armv7 <fb6a72faec2330c4b2cd33c2e9c59588>
> /System/Library/Frameworks/CoreText.framework/CoreText
> 0x344c6000 - 0x344c9fff ArtworkCache armv7
> <4863e321afee3ac5a3749e50cd926597>
> /System/Library/PrivateFrameworks/ArtworkCache.framework/ArtworkCache
> 0x34502000 - 0x34504fff MobileInstallation armv7
> <94b6d6c5d9883175af26764567528127>
> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
> 0x346c0000 - 0x346d6fff EAP8021X armv7 <9fefc0ada30435fbb3b51818c74f6cb8>
> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
> 0x346d7000 - 0x346e7fff DataAccessExpress armv7
> <66d9047da79a31daa887e6d84c42ecb2>
> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
> 0x346e8000 - 0x34cf3fff WebCore armv7 <07941e59d0a33f94802c16c76238fddf>
> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
> 0x34d5d000 - 0x34d68fff libz.1.dylib armv7
> <ac706bee36593dc683fd5a96a389d72e> /usr/lib/libz.1.dylib
> 0x34e4c000 - 0x34ebbfff ProofReader armv7
> <6d843c6aecdd37ae84baa40af8ad7e65>
> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
> 0x34ecc000 - 0x34ecefff libAccessibility.dylib armv7
> <d55f1553d14831a2a5435ae27ef75ef4> /usr/lib/libAccessibility.dylib
> 0x34ecf000 - 0x34ed4fff MobileKeyBag armv7
> <8c35c090bc373cb181fc26b961b8dba5>
> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
> 0x34eed000 - 0x34f3efff libsqlite3.dylib armv7
> <8a41cc6a6d9332308bc415d27577fd24> /usr/lib/libsqlite3.dylib
> 0x3502b000 - 0x3502cfff libremovefile.dylib armv7
> <e8858a499d663e6a9e3c188521273cc1> /usr/lib/system/libremovefile.dylib
> 0x35039000 - 0x3504efff libresolv.9.dylib armv7
> <e92cfbb83f7b330db19181e797bb3f7b> /usr/lib/libresolv.9.dylib
> 0x35070000 - 0x35076fff IAP armv7 <c0f4c99a1b493e489948f231ad9238e2>
> /System/Library/PrivateFrameworks/IAP.framework/IAP
> 0x35080000 - 0x3508dfff DataDetectorsUI armv7
> <d454cde062983860a41694922eb5c042>
> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
> 0x35092000 - 0x35093fff libsystem_network.dylib armv7
> <39bf0f48bd8539169a77f8f61cdcd4c9> /usr/lib/system/libsystem_network.dylib
> 0x350f0000 - 0x350fafff AccountSettings armv7
> <d083fb384dc7311eb6766b9b2d2dd9c8>
> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
> 0x3511c000 - 0x35122fff ProtocolBuffer armv7
> <f9277ee9b85b3722975ad319a323aca0>
> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
> 0x35126000 - 0x3516cfff CoreTelephony armv7
> <af7d1e770e5a3ffd8834a57fb5d40557>
> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
> 0x352d6000 - 0x35319fff ManagedConfiguration armv7
> <f790c26852cb3cf298abe56bc9a3940b>
> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
> 0x35415000 - 0x35422fff libbsm.0.dylib armv7
> <0a1e2bb78d5138419ecad8ba0fe42fdd> /usr/lib/libbsm.0.dylib
> 0x35511000 - 0x35592fff libsystem_c.dylib armv7
> <a7077267b6743ed3bbdd86d4380c75d9> /usr/lib/system/libsystem_c.dylib
> 0x35593000 - 0x35595fff libgcc_s.1.dylib armv7
> <a2631ac302f4310dae8367939e16b7c2> /usr/lib/libgcc_s.1.dylib
> 0x35596000 - 0x3559bfff liblaunch.dylib armv7
> <f5ccc8234aea3ebd9a88bd37f0fa23ae> /usr/lib/system/liblaunch.dylib
> 0x355cf000 - 0x355d6fff libbz2.1.0.dylib armv7
> <0a082e1d475432959ba93aa3dbf7fb31> /usr/lib/libbz2.1.0.dylib
> 0x35703000 - 0x35711fff OpenGLES armv7 <5a76beaeaa013f0cbf16e5cb154598ab>
> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
> 0x35719000 - 0x35742fff MobileCoreServices armv7
> <57fef84bdc17301d8bf53ba0fb967fe6>
> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
> 0x3579f000 - 0x35884fff CoreFoundation armv7
> <a8444f997111304c9571b3ff974b769c>
> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
> 0x35a62000 - 0x35a81fff Bom armv7 <b178e3efb4d733c694bd5a55e57a314f>
> /System/Library/PrivateFrameworks/Bom.framework/Bom
> 0x35ae0000 - 0x35ae4fff AssetsLibraryServices armv7
> <e1cbfe599c96369ca4bdb0dd99d3cd9f>
> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
> 0x35ae7000 - 0x35badfff MusicLibrary armv7
> <71a09022bd8b3b6a90a250199d190f10>
> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
> 0x35bc5000 - 0x35bc9fff libcache.dylib armv7
> <d2f7fd2a352b3cd59c564be34b53cf80> /usr/lib/system/libcache.dylib
> 0x35bdd000 - 0x35bdffff CrashReporterSupport armv7
> <9e7efa009730322f84bbc5d8bf1ded94>
> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
> 0x35be0000 - 0x35c2afff libstdc++.6.dylib armv7
> <b2cac408951c3f3c9ba3cf563e54ce81> /usr/lib/libstdc++.6.dylib
> 0x35c2b000 - 0x35d7ffff AudioToolbox armv7
> <6619c8c13f8d328e923e797fa8d0df23>
> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
> 0x35d80000 - 0x35e41fff RawCamera armv7 <0c52d8b1498c3dbb9aad95f3bcd8261d>
> /System/Library/CoreServices/RawCamera.bundle/RawCamera
> 0x35eb7000 - 0x35ecefff libsystem_kernel.dylib armv7
> <c4ebe7eb2e6c3a2d9bd3620a4d6dbc0e> /usr/lib/system/libsystem_kernel.dylib
> 0x35ef6000 - 0x35ef6fff libsystem_sandbox.dylib armv7
> <f47c01d627853b328e088b3fdd08e87d> /usr/lib/system/libsystem_sandbox.dylib
> 0x35f00000 - 0x35f09fff MobileWiFi armv7 <03d98d5cf6383695aa7d8a88da52f410>
> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
> 0x35f0a000 - 0x3600efff JavaScriptCore armv7
> <61a94142e2d23dafa2964190dd46e9e3>
> /System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
> 0x3600f000 - 0x36012fff MediaRemote armv7
> <0804293b2774359189f3a67e2c81558d>
> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
> 0x36013000 - 0x3601ffff GraphicsServices armv7
> <ff78a9636e933f0dbd222f8d26209788>
> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
> 0x36020000 - 0x36024fff libGFXShared.dylib armv7
> <a0772a32cd8b3b9194bb0c29807c1c5b>
> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
> 0x36504000 - 0x36528fff MediaControl armv7
> <1cfc7d79f554357ab59eb69f9efebf07>
> /System/Library/PrivateFrameworks/MediaControl.framework/MediaControl
> 0x36553000 - 0x365b2fff libBLAS.dylib armv7
> <0b36b2272aa33a8c9aa22d99c89d7189>
> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
> 0x365b3000 - 0x365b6fff CaptiveNetwork armv7
> <fc834fd33a18341ea7506587ad895703>
> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
> 0x365b7000 - 0x36676fff CFNetwork armv7 <b09e0d53de9f3bc8bde494780f3cdd4f>
> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
> 0x36679000 - 0x366fdfff AVFoundation armv7
> <eeaf5f4f822436a5bd1655f536e69879>
> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
> 0x3672a000 - 0x36761fff Security armv7 <6599f42a910b3b31a0e1d98c883d61cb>
> /System/Library/Frameworks/Security.framework/Security
> 0x367c7000 - 0x3688bfff libobjc.A.dylib armv7
> <6b51e76fde9f381bb7b3bc5badbfee3a> /usr/lib/libobjc.A.dylib
> 0x368bb000 - 0x36909fff CoreMotion armv7 <5e6b884d36d93789b40b7f3876130417>
> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
> 0x3696a000 - 0x3696cfff IOMobileFramebuffer armv7
> <683f321680763e519d61541170ba2133>
> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
> 0x369d8000 - 0x369defff liblockdown.dylib armv7
> <14c89b7346433c1f8675f454531f6ca3> /usr/lib/liblockdown.dylib
> 0x369e2000 - 0x36a1efff libGLImage.dylib armv7
> <9d97699e44ee3651ba4ac37e5adec35b>
> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
> 0x36a6c000 - 0x36aa4fff IOKit armv7 <80ae313ad69d3363935c88e51a11862d>
> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
> 0x36aa5000 - 0x36e32fff UIKit armv7 <c271b78464d93cb7bf28c6e49df293ba>
> /System/Library/Frameworks/UIKit.framework/UIKit
> 0x36f60000 - 0x36f93fff AppSupport armv7 <0217468bd9f839229a47910b7816b3d5>
> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
> appname
> Kind Regards
> Tue
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira