怎样阅读苹果cffios runloop应用场景rf源码

当前访客身份:游客 [
从小就有一个梦想...
:引用来自“aa制XX”的评论你好楼主, 能发个dem...
:你好楼主, 能发个demo 学习一下吗?谢谢 124109...
:有这个demo 没有能不能给我发下 @qq.co...
今日访问:7
昨日访问:90
本周访问:254
本月访问:2681
所有访问:16718
iOS开发 网络框架AFNetworking源码(一)
发表于7个月前( 17:19)&&
阅读(359)&|&评论()
0人收藏此文章,
AFNetworking 源码解析
&&&&目前iOS开发中使用最多的网络访问框架就是AFNetworking了。作为一个第三方框架,用起来确实比直接使用iOS自带的要方便得多。
&&&&AFNetworking在github上可以直接下载。地址为:&。
&&&&首先先看AFURLConnectionOperation类,继承自NSOperation。
@interface
&AFURLConnectionOperation&:&
NSOperation
&&&&在这里构建了NSURLConnection,作为NSURLConnection的delegate处理请求回调,做好状态切换,线程管理,可以说是AFNetworking最核心的类。
& & 1.1这里用枚举定义了网络访问状态。
typedef&NS_ENUM(NSInteger,&AFOperationState)&{
&&&&AFOperationPausedState&&&&&&=&-1,
&&&&AFOperationReadyState&&&&&&&=&1,
&&&&AFOperationExecutingState&&&=&2,
&&&&AFOperationFinishedState&&&&=&3,
1.2为了保证线程安全,所有的单例都使用了dispatch_once,保证了其只执行一次,这种写法在iOS代码中随处可见,很普及。
static&dispatch_group_t&url_request_operation_completion_group()&{
&&&&static&dispatch_group_t&af_url_request_operation_completion_
&&&&static&dispatch_once_t&onceT
&&&&dispatch_once(&onceToken,&^{
&&&&&&&&af_url_request_operation_completion_group&=&dispatch_group_create();
&&&&return&af_url_request_operation_completion_
static&dispatch_queue_t&url_request_operation_completion_queue()&{
&&&&static&dispatch_queue_t&af_url_request_operation_completion_
&&&&static&dispatch_once_t&onceT
&&&&dispatch_once(&onceToken,&^{
&&&&//这里的DISPATCH_QUEUE_CONCURRENT生成一个并发执行队列
&&&&&&&&af_url_request_operation_completion_queue&=&dispatch_queue_create("com.alamofire.networking.operation.queue",&DISPATCH_QUEUE_CONCURRENT&);
&&&&return&af_url_request_operation_completion_
&&&&1.3大量使用了:&typedef&原变量类型&别名
&&&&举个例子:typedef&char(*pFun)(int) && & 使用时候:(*pFun)(2); 是不是很容易看懂?
&&&&作者是这样子写的:
typedef&void&(^AFURLConnectionOperationProgressBlock)(NSUInteger&bytes,&long&long&totalBytes,&long&long&totalBytesExpected);
typedef&void&(^AFURLConnectionOperationAuthenticationChallengeBlock)(NSURLConnection&*connection,&NSURLAuthenticationChallenge&*challenge);
typedef&NSCachedURLResponse&*&(^AFURLConnectionOperationCacheResponseBlock)(NSURLConnection&*connection,&NSCachedURLResponse&*cachedResponse);
typedef&NSURLRequest&*&(^AFURLConnectionOperationRedirectResponseBlock)(NSURLConnection&*connection,&NSURLRequest&*request,&NSURLResponse&*redirectResponse);
&&&&你会看到在变量声明的时候,声明的block真心看起来很清爽,是不是?
@property&(readwrite,&nonatomic,&copy)&AFURLConnectionOperationCacheResponseBlock&cacheR
@property&(readwrite,&nonatomic,&copy)&AFURLConnectionOperationRedirectResponseBlock&redirectR
&&&&1.4在代码块中避免循环应用:
-&(void)setShouldExecuteAsBackgroundTaskWithExpirationHandler:(void&(^)(void))handler&{
&&&&[self.lock&lock];
&&&&if&(!self.backgroundTaskIdentifier)&{
&&&&&&&&UIApplication&*application&=&[UIApplication&sharedApplication];
&&&&&&&&__weak&__typeof(self)weakSelf&=&
&&&&&&&&self.backgroundTaskIdentifier&=&[application&beginBackgroundTaskWithExpirationHandler:^{
&&&&&&&&&&&&__strong&__typeof(weakSelf)strongSelf&=&weakS
&&&&&&&&&&&&if&(handler)&{
&&&&&&&&&&&&&&&&handler();
&&&&&&&&&&&&}
&&&&&&&&&&&&if&(strongSelf)&{
&&&&&&&&&&&&&&&&[strongSelf&cancel];
&&&&&&&&&&&&&&&&[application&endBackgroundTask:strongSelf.backgroundTaskIdentifier];
&&&&&&&&&&&&&&&&strongSelf.backgroundTaskIdentifier&=&UIBackgroundTaskI
&&&&&&&&&&&&}
&&&&&&&&}];
&&&&[self.lock&unlock];
weakSelf是为了block不持有self,避免循环引用,而再声明一个strongSelf是因为一旦进入block执行,就不允许self在这个执行过程中释放。block执行完后这个strongSelf会自动释放,没有循环引用问题。
2.1、先看看网络请求发起方法,是调用了- (void)start开始的,接下来初始化connection链接。
self.connection&=&[[NSURLConnection&alloc]&initWithRequest:self.request&delegate:self&startImmediately:NO];
初始化完成之后,,调用网络请求start方法,解开线程锁,然后回到主线程中发送一个通知给通知中心:
dispatch_async(dispatch_get_main_queue(),&^{
&&&&&&&&[[NSNotificationCenter&defaultCenter]&postNotificationName:AFNetworkingOperationDidStartNotification&object:self];
&&&&看到了吗?作者发送通知的时候,使用的关键字,不是乱写的,很规范!
NSString&*&const&AFNetworkingOperationDidStartNotification&=&@"com.alamofire.networking.operation.start";
NSString&*&const&AFNetworkingOperationDidFinishNotification&=&@"com.alamofire.networking.operation.finish";
2.2 关于代码中Runloop的操作,网上有一个解析,说得很清楚:
&&&&若直接在主线程调用异步接口,会有个Runloop相关的问题:
&&&&当在主线程调用 [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES] 时,请求发出,侦听任务会加入到主线程的 Runloop 下,RunloopMode 会默认为 NSDefaultRunLoopMode。这表明只有当前线程的Runloop 处于 NSDefaultRunLoopMode 时,这个任务才会被执行。但当用户滚动 tableview 或 scrollview 时,主线程的 Runloop 是处于 NSEventTrackingRunLoopMode 模式下的,不会执行 NSDefaultRunLoopMode 的任务,所以会出现一个问题,请求发出后,如果用户一直在操作UI上下滑动屏幕,那在滑动结束前是不会执行回调函数的,只有在滑动结束,RunloopMode 切回 NSDefaultRunLoopMode,才会执行回调函数。苹果一直把动画效果性能放在第一位,估计这也是苹果提升UI动画性能的手段之一。
&&&&所以若要在主线程使用 NSURLConnection 异步接口,需要手动把 RunloopMode 设为 NSRunLoopCommonModes。这个 mode 意思是无论当前 Runloop 处于什么状态,都执行这个任务。
NSURLConnection&*connection&=&[[NSURLConnection&alloc]&initWithRequest:request&delegate:self&startImmediately:NO];&
[connection&scheduleInRunLoop:[NSRunLoop&currentRunLoop]&forMode:NSRunLoopCommonModes];&
[connection&start];
AFNetworking 用的是在子线程中回调异步接口,创建了一条常驻线程专门处理所有请求的回调事件,这个模型跟 nodejs 有点类似。网络请求回调处理完,组装好数据后再给上层调用者回调,这时候回调是抛回主线程的,因为主线程是最安全的,使用者可能会在回调中更新UI,在子线程更新UI会导致各种问题,一般使用者也可以不需要关心线程问题。
2.3&AFURLConnectionOperation 有一把递归锁,在所有会访问/修改成员变量的对外接口都加了锁,因为这些对外的接口用户是可以在任意线程调用的,对于访问和修改成员变量的接口,必须用锁保证线程安全。
&&&&后面这一部分是转载的。
更多开发者职位上
1)">1)">1" ng-class="{current:{{currentPage==page}}}" ng-repeat="page in pages"><li class='page' ng-if="(endIndex<li class='page next' ng-if="(currentPage
相关文章阅读这周是 GDC 2016 的天下,大家有没有从中嗅到一丝未来游戏的气息?VR 正在以迅雷不及...
这是科技和传统政策的碰撞,有趣的是从长远来看,科技总会是胜者。
主办方首度开设的“VR开发会议”类别,几乎场场演讲都座无虚席。
已经习惯使用4.7英寸或更大尺寸的手机,也许真的很难再退回来了。
开启这个功能后在晚上玩手机眼睛的确舒服不少,但能否改善睡眠就见仁见智了。
虽然外界总说 Galaxy S7 支持三防,但实际上只有防尘防水,真正的三防是 Active 机型...
两款设备有什么区别,看完之后你应该会有更深的了解。
我们已经不知道多久没看到针对 Apple TV 的越狱工具了,尽管现在等待iOS 9.2.1或iOS 9...
这两年出现最多的字眼估计就是“众筹”了,《天天夺宝》就是一款植入了众筹精神的购物...
在我们熟悉的漫画或者现实生活当中,爱车、玩车之人会选择专业的场地或者“秋名山”这...
游戏开发商 Tigrido 此前就在苹果商店中推出了《独裁者(Dictator)》系列游戏作品,...
Pin 是一个简单应用,没有复杂的设计和多余的功能,这款应用的诞生十分偶然,来自于开...
我们常常在电影中看到华丽无比的城堡,曾几何时也想拥有那么一座,要是问你会如何设计...
在中国文化里地牢除了是关押犯人的地方之外并没有什么太多的其他意义,但是在西方文化...
近日,游戏开发商 Prodigy Design 在苹果商店中推出了一款独特的游戏作品《末日控制器...
购买 Apple Pencil 时额外附赠一个笔尖,如果你嫌不够现在可以购买替换笔尖了。
精织尼龙表带是全新的系列,共七种款式;如今 Apple Watch 最低只要 2288 元,该入手...
相比以往的 iPhone,这次 iPhone SE 配置不俗,价格还很亲民,国产厂商要伤脑筋了。
当然,首先你还需要一个售价 388 元人民币的 29W USB-C 电源适配器。
小尺寸当然要有小键盘,国行价格比 12.9 英寸 iPad Pro 所用的版本便宜 100 元。
高品质的音乐的确是生活中非常令人愉悦的一种体验。
从音质到外观、材质都有了进步,如果能在无线模式续航能力,即插即用和降噪功能的自主...
这个 Blockhead 充电器并没有采用传统的设计,而是让插头部分跟墙壁保持水平、充电线...
有苹果高手。知道这个是出现什么问题吗?
注册时间 最后登录
在线时间6 小时 UID
主题帖子人气
青苹果, 积分 75, 距离下一级还需 125 积分
Process:& && && &Scratch LIVE [228]
Path:& && && && &/Applications/Scratch Live.app/Contents/MacOS/Scratch LIVE
Identifier:& && &com.serato.scratchlive
Version:& && && &2.5.0.11
Code Type:& && & X86 (Native)
Parent Process:&&launchd [134]
Responsible:& &&&Scratch LIVE [228]
User ID:& && && &501
Date/Time:& && &
01:37:34.509 +0800
OS Version:& && &Mac OS X 10.9.4 (13E28)
Report Version:&&11
Anonymous UUID:&&51AEAD39-B668-A992-E509C6B
Crashed Thread:&&26
Exception Type:&&EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0xde000
VM Regions Near 0xa6de000:
& & MALLOC_LARGE& && && &&&00a6de000 [&&632K] rw-/rwx SM=PRV&&
& & VM_ALLOCATE& && && && &f00a6f3000 [& & 4K] rw-/rwx SM=PRV&&
Thread 0:: Dispatch queue: com.apple.main-thread
0& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 2414734
1& &com.serato.scratchlive& && &&&& & & & 0x000a31ad 0x1000 + 663981
2& &com.serato.scratchlive& && &&&& & & & 0x000a4a0a 0x1000 + 670218
3& &com.serato.scratchlive& && &&&& & & & 0x000a0 + 672134
4& &com.serato.scratchlive& && &&&& & & & 0x0012fec7 0x1000 + 1240775
5& &com.serato.scratchlive& && &&&& & & & 0x0012fec7 0x1000 + 1240775
6& &com.serato.scratchlive& && &&&& & & & 0x0012fec7 0x1000 + 1240775
7& &com.serato.scratchlive& && &&&& & & & 0x000a760e 0x1000 + 681486
8& &com.serato.scratchlive& && &&&& & & & 0x000a75b6 0x1000 + 681398
9& &com.serato.scratchlive& && &&&& & & & 0x000653bd 0x1000 + 410557
10&&com.serato.scratchlive& && &&&& & & & 0x 0x1000 + 586165
11&&com.apple.HIToolbox& && && &&&0x9ade2d89 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
12&&com.apple.HIToolbox& && && &&&0x9ac3634f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
13&&com.apple.HIToolbox& && && &&&0x9ac35668 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
14&&com.apple.HIToolbox& && && &&&0x9ac48811 SendEventToEventTarget + 88
15&&com.serato.scratchlive& && &&&& & & & 0xx1000 + 589569
16&&com.apple.HIToolbox& && && &&&0x9ac6aa4b TimerVector + 22
17&&com.apple.CoreFoundation& && && & & & 0x95d1fea6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
18&&com.apple.CoreFoundation& && && & & & 0x95d1f863 __CFRunLoopDoTimer + 1395
19&&com.apple.CoreFoundation& && && & & & 0x95d9a06d __CFRunLoopDoTimers + 349
20&&com.apple.CoreFoundation& && && & & & 0x95cd7353 __CFRunLoopRun + 1779
21&&com.apple.CoreFoundation& && && & & & 0x95cd69ea CFRunLoopRunSpecific + 394
22&&com.apple.CoreFoundation& && && & & & 0x95cd684b CFRunLoopRunInMode + 123
23&&com.apple.HIToolbox& && && &&&0x9ac59b5d RunCurrentEventLoopInMode + 259
24&&com.apple.HIToolbox& && && &&&0x9ac598e2 ReceiveNextEventCommon + 526
25&&com.apple.HIToolbox& && && &&&0x9aca4aca AcquireNextEventInMode + 75
26&&com.apple.HIToolbox& && && &&&0x9adf49da _AcquireNextEvent + 58
27&&com.apple.HIToolbox& && && &&&0x9ade2324 RunApplicationEventLoop + 225
28&&com.serato.scratchlive& && &&&& & & & 0xx1000 + 594311
29&&com.serato.scratchlive& && &&&& & & & 0xx1000 + 4709
Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a08992 kevent64 + 10
1& &libdispatch.dylib& && && && & 0x _dispatch_mgr_invoke + 238
2& &libdispatch.dylib& && && && & 0x _dispatch_mgr_thread + 52
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 2225296
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 10864
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 2137188
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0x0x1000 + 2579636
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 268124
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 268124
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 268124
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 268124
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 10:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 268124
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 11:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 268124
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 12:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 268124
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 13:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 268124
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 14:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 268124
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 15:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 268124
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 16:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a02f7a mach_msg_trap + 10
1& &libsystem_kernel.dylib& && &&&& & & & 0x99a0216c mach_msg + 68
2& &com.apple.audio.midi.CoreMIDI 0x XServerMachPort::ReceiveMessage(int&, void*, int&) + 119
3& &com.apple.audio.midi.CoreMIDI 0x0251deef MIDIProcess::RunMIDIInThread() + 151
4& &com.apple.audio.midi.CoreMIDI 0x025265ce MIDIProcess::MIDIInPortThread::Run() + 24
5& &com.apple.audio.midi.CoreMIDI 0x XThread::RunHelper(void*) + 17
6& &com.apple.audio.midi.CoreMIDI 0x CAPThread::Entry(CAPThread*) + 134
7& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
8& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
9& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 17:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0x0x1000 + 3157408
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 18:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efc25 pthread_cond_timedwait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0x boost::condition_variable::do_timed_wait(boost::unique_lock&boost::mutex&&, timespec const&) + 153
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 3468683
5& &com.serato.scratchlive& && &&&& & & & 0x0x1000 + 3308280
6& &com.serato.scratchlive& && &&&& & & & 0x003308ac 0x1000 + 3340460
7& &com.serato.scratchlive& && &&&& & & & 0x0x1000 + 3341784
8& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 3467626
9& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
10&&libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
11&&libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 19:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a07ace __select + 10
1& &com.serato.scratchlive& && &&&& & & & 0x0032c4cd 0x1000 + 3323085
2& &com.serato.scratchlive& && &&&& & & & 0x0032c7fc 0x1000 + 3323900
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 3324232
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 3467626
5& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
6& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
7& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 20:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 163940
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 21:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a08046 __workq_kernreturn + 10
1& &libsystem_pthread.dylib& && & 0x940ecdcf _pthread_wqthread + 372
2& &libsystem_pthread.dylib& && & 0x940f0cce start_wqthread + 30
Thread 22:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 95877
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 23:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a08046 __workq_kernreturn + 10
1& &libsystem_pthread.dylib& && & 0x940ecdcf _pthread_wqthread + 372
2& &libsystem_pthread.dylib& && & 0x940f0cce start_wqthread + 30
Thread 24:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 95877
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 25:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a02f7a mach_msg_trap + 10
1& &libsystem_kernel.dylib& && &&&& & & & 0x99a0216c mach_msg + 68
2& &com.apple.CoreFoundation& && && & & & 0x95cd7bf9 __CFRunLoopServiceMachPort + 169
3& &com.apple.CoreFoundation& && && & & & 0x95cd71d1 __CFRunLoopRun + 1393
4& &com.apple.CoreFoundation& && && & & & 0x95cd69ea CFRunLoopRunSpecific + 394
5& &com.apple.CoreFoundation& && && & & & 0x95cd684b CFRunLoopRunInMode + 123
6& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 502566
7& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
8& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
9& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 26 Crashed:
0& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 511020
1& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
2& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
3& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 27:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd1d _pthread_cond_wait + 728
2& &libsystem_pthread.dylib& && & 0x940efbd9 pthread_cond_wait$UNIX2003 + 71
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406332
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 2552128
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 28:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0x001fa390 0x1000 + 2069392
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 29:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0x001fa390 0x1000 + 2069392
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 30:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0x001fa390 0x1000 + 2069392
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 31:
0& &libsystem_kernel.dylib& && &&&& & & & 0x99a077ca __psynch_cvwait + 10
1& &libsystem_pthread.dylib& && & 0x940edd8a _pthread_cond_wait + 837
2& &libsystem_pthread.dylib& && & 0x940ee042 pthread_cond_timedwait_relative_np + 47
3& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 406353
4& &com.serato.scratchlive& && &&&& & & & 0xx1000 + 412203
5& &com.serato.scratchlive& && &&&& & & & 0x001fa390 0x1000 + 2069392
6& &libsystem_pthread.dylib& && & 0x940eb5fb _pthread_body + 144
7& &libsystem_pthread.dylib& && & 0x940eb485 _pthread_start + 130
8& &libsystem_pthread.dylib& && & 0x940f0cf2 thread_start + 34
Thread 26 crashed with X86 Thread State (32-bit):
&&eax: 0x0000034e&&ebx: 0x&&ecx: 0x&&edx: 0x0000005e
&&edi: 0x02181ae8&&esi: 0x0a6de000&&ebp: 0xb031cf88&&esp: 0xb031ce30
& &ss: 0x&&efl: 0x&&eip: 0x0007dc2c& &cs: 0x0000001b
& &ds: 0x& &es: 0x& &fs: 0x& &gs: 0x0000000f
&&cr2: 0x0a6de000
Logical CPU:& &&&0
Error Code:& && &0x
Trap Number:& &&&14
Binary Images:
& & 0x1000 -& &0x56fff3 +com.serato.scratchlive (2.5.0.11) &D981C5D9-992F-369E-9A86-1AC69D78997C& /Applications/Scratch Live.app/Contents/MacOS/Scratch LIVE
0x24ea000 -&&0x24efff7 +l**bmuxd.dylib (0) &B-3BF4-AAB1-BAAE& /Applications/Scratch Live.app/Contents/Frameworks/l**bmuxd.dylib
0x24f4000 -&&0x2532ff2&&com.apple.audio.midi.CoreMIDI (1.10 - 88) &242D014D-8A30-3F68-A03B-EF3D0CD1EC08& /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x2556000 -&&0x256cff8&&libexpat.1.dylib (12) &B0AC-368F-98D6-7FFC067A1B04& /usr/lib/libexpat.1.dylib
0x2700000 -&&0x270efff&&libSimplifiedChineseConverter.dylib (61) &6E42E198-9C8D-3F0F-5C2461E& /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
0x3684000 -&&0x36a9ff9&&com.apple.framework.familycontrols (4.1 - 410) &A33A97EE-C735-38BA-9B49-5D78DAA3DEDA& /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x36be000 -&&0x36c9fff&&merceCore (1.0 - 42) &D28DD970-4B69-3848-9BCC-3CC& /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x662c000 -&&0x6630ffd&&com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) &FF6AD1A0-09F4-3D20-A2F4-F4F0AE10CE12& /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x81e8000 -&&0x81f2ff7&&com.apple.iokit.IOUSBLib (656.4.0 - 656.4.0) &D1-3F8C-A4C1-0FB3E8F1F61A& /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Contents/MacOS/IOUSBLib
0x - 0x1556effd&&libTraditionalChineseConverter.dylib (61) &EFC-321B-A93A-F4E9C4A3EB31& /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
0x - 0x155b0fef +com.serato.audio.SeratoVirtualAudioPlugIn (1.0.11 - 1.0) &A08-F66A-DB718DF& /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/SeratoVirtualAudioPlugIn
0x8feda000 - 0x8ff0c417&&dyld (239.4) &FF5ED937-CC28-3FEF-BCAF-750B1CDBAE36& /usr/lib/dyld
0x - 0x901b04af&&libobjc.A.dylib (551.1) &31CBE178-E972-30D1-ADC6-4B8345CAE326& /usr/lib/libobjc.A.dylib
0x - 0x9021bff9&&com.apple.TCC (1.0 - 1) &A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D& /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x - 0x9022efff&&libsystem_asl.dylib (217.1.4) &51EB17C9-9F5B-39F3-B6CD-8EF238B05B89& /usr/lib/system/libsystem_asl.dylib
0x903d3000 - 0x9050afff&&com.apple.desktopservices (1.8.3 - 1.8.3) &5C-3AB8-A453-02A33A771CDB& /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x - 0x90579ffb&&libType1Scaler.dylib (112.1) &8DF-3B86-9E02-71F8D13FF3B1& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
0x - 0x90692ff7&&com.apple.ImageIO.framework (3.3.0 - 1043) &3AA4C524-1B31-39AC-A641-189D0D6EA427& /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x906e9000 - 0x90780ff7&&com.apple.ink.framework (10.9 - 207) &EF00BCCB-B270-3F3D-9424-EF5F4BC23E25& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x - 0x909e5ff7&&com.apple.CoreData (107 - 481.3) &8EB45FB9-CF78-36E1-919C-E976AE4C8146& /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x909e6000 - 0x909f4ff7&&com.apple.Sharing (132.2 - 132.2) &87DBFC7A-E-AD16-5A9DFF9DE625& /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x909f5000 - 0x909f9ff7&&libmacho.dylib (845) &D8E93E59-1F80-3413-B9CF-78B848F6E873& /usr/lib/system/libmacho.dylib
0x909fa000 - 0x90a12ff7&&com.apple.CFOpenDirectory (10.9 - 173.90.1) &-C810--D86E695D0FA1& /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x90b0d000 - 0x90bdbff7&&com.apple.backup.framework (1.5.4 - 1.5.4) &C09AF796-385F-34DB-B551-CB& /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x90bdc000 - 0x90be0fff&&libheimdal-asn1.dylib (323.92.1) &DD8BAEED-28AC-389E-9DC4-E32DA60CB05A& /usr/lib/libheimdal-asn1.dylib
0x90be1000 - 0x90c54fff&&com.apple.SearchKit (1.4.0 - 1.4.0) &6F607AB6-7553-37BA-BEC5-98FD7C27FAD7& /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x90c55000 - 0x90c7dff7&&libRIP.A.dylib (599.25.10.1) &DFA6-3CC3-A36F-1C173A335E7F& /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x90c87000 - 0x90c87ffd&&com.apple.audio.units.AudioUnit (1.10 - 1.10) &A33-39CF-AD5A-201C2B121F33& /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x90d35000 - 0x90d59ff3&&libc++abi.dylib (49.1) &43A04ACF-97A5-35ED-B454-6B5C0CF0F99D& /usr/lib/libc++abi.dylib
0x - 0x916e2ff7&&com.apple.Symbolication (1.4 - 129.0.2) &FD025FD5-C206-3C90-B3BE-FE9B1BEECAFB& /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x916e3000 - 0x918a9ffb&&libicucore.A.dylib (511.34) &1-3A44-8E5A-8& /usr/lib/libicucore.A.dylib
0x91bf5000 - 0x91bf5fff&&com.apple.Carbon (154 - 157) &6C29C608-97B4-306E-AEC5-6F48EDF7EFB5& /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x91d7d000 - 0x91d7dfff&&com.apple.Cocoa (6.8 - 20) &407DC9E6-BBCE-3D34-9BBB-00C90584FFDF& /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x91d7e000 - 0x91dbbffb&&libGLImage.dylib (9.6.1) &E2DADD8A-8A60-3F39-840B-4B7FE7001384& /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x91dbc000 - 0x91de0fff&&libJPEG.dylib (1043) &257BE460-DFB1--A2E50FBED794& /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x91de1000 - 0x920e2ffb&&com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) &02C72D54-E3D3-32B0-A081-E85A7038489D& /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x920e3000 - 0x92115ff7&&libTrueTypeScaler.dylib (111.1) &A568EE4C-B-8640-F02CEFC5AF09& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x - 0x9211ffff&&com.apple.audio.SoundManager (4.1 - 4.1) &68B7CEB7-AF09-3E24-8548-6ABF065B5186& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x - 0x92213ff7&&libCoreStorage.dylib (380) &78F0E11F-D040-31DD-BD5E-6AC0EC8FD0D4& /usr/lib/libCoreStorage.dylib
0x - 0x9222afff&&liblaunch.dylib (842.92.1) &C180016C-F2DB-3D8B-A72D-5185CE67DFA2& /usr/lib/system/liblaunch.dylib
0x - 0x925fbff6&&libLAPACK.dylib (1094.5) &E1-31AC-813E-75B3B3968011& /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x934d0000 - 0x93525fff&&libc++.1.dylib (120) &10C0A136-64F9-3CC2-32120& /usr/lib/libc++.1.dylib
0x - 0x9361afff&&libFontParser.dylib (111.1) &D8F9B2A4-41A6--13A841F97BE5& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x - 0x9364bff7&&com.apple.DictionaryServices (1.2 - 208) &-BECD-3F62-A315-C45F24C1818C& /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x937f1000 - 0x93822ffb&&com.apple.GSS (4.0 - 2.0) &145B389F-AC1E-EA263E96EA5& /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x - 0x940cbff7&&libFontRegistry.dylib (127) &AC6-3C6E-B4A2-119E0D76FD7D& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x940cc000 - 0x940d8ff7&&com.apple.OpenDirectory (10.9 - 173.90.1) &E8E-3DA4-8AFD-11C941BA5E40& /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x940d9000 - 0x940deff3&&libsystem_platform.dylib (24.90.1) &A7A-3908-B30B-AC& /usr/lib/system/libsystem_platform.dylib
0x940df000 - 0x940e3ffa&&libcache.dylib (62) &-D226-3F30-8D26-BF598CB781F6& /usr/lib/system/libcache.dylib
0x940e4000 - 0x940e9ff7&&com.apple.print.framework.Print (9.0 - 260) &A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x940ea000 - 0x940f1ffb&&libsystem_pthread.dylib (53.1.4) &8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C& /usr/lib/system/libsystem_pthread.dylib
0x940f2000 - 0x94204ffc&&libsqlite3.dylib (158) &B3DB0FED-FE4C-314D-8329-CF7708C8AAF4& /usr/lib/libsqlite3.dylib
0x - 0x942e0ff7&&com.apple.LaunchServices (572.28 - 572.28) &2DEA5B87-80AC-3ACD-9F60-4BC61353B66E& /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x942e4000 - 0x942e4fff&&com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) &DDAC0B59-F886-3AB1-98E8-C71FFF161CD4& /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x942e5000 - 0x942effff&&com.apple.bsd.ServiceManagement (2.0 - 2.0) &B84F7B-9C1F-3DE& /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x942f0000 - 0x942f8fff&&libsystem_dnssd.dylib (522.92.1) &7E36B79E-6BF4--C& /usr/lib/system/libsystem_dnssd.dylib
0x - 0x94322ffc&&libbz2.1.0.dylib (29) &3CEF1E92-BA42-3F8A-8E8D-9E1F& /usr/lib/libbz2.1.0.dylib
0x - 0x9439affb&&com.apple.framework.IOKit (2.0.1 - 907.100.13) &DAA-4F58AE12B4& /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x - 0x94411ff3&&com.apple.securityfoundation (6.0 - 55122.3) &6E1412EF-2E22-3C9D-851C-A& /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x - 0x94440ff3&&com.apple.DebugSymbols (106 - 106) &FC70F4C9-B2A6-352F-E9DDDB8& /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x - 0x94469fff&&libsystem_info.dylib (449.1.3) &BB68E8CC-422F--D0F766FB696D& /usr/lib/system/libsystem_info.dylib
0x94b9b000 - 0x94b9cffc&&com.apple.TrustEvaluationAgent (2.0 - 25) &064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3& /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x94ba6000 - 0x94c89ff7&&libcrypto.0.9.8.dylib (50) &B367D3A3-FC1F-326C-92EC-CADD& /usr/lib/libcrypto.0.9.8.dylib
0x94c8a000 - 0x94d75ff4&&com.apple.DiskImagesFramework (10.9 - 371.1) &32A138AB-6A20-3C28-BFF8-& /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x94d76000 - 0x94dc7ff1&&libstdc++.6.dylib (60) &354F284B-CA2-EE& /usr/lib/libstdc++.6.dylib
0x94dc8000 - 0x94dc9ffd&&libunc.dylib (28) &22A126A1-DCFB-3BE5-A66B-C973F0A5D839& /usr/lib/system/libunc.dylib
0x94dca000 - 0x94df9ff7&&com.apple.framework.SystemAdministration (1.0 - 1.0) &1BD-3B7B-AC8C-11BE34F7CF6B& /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
0x94e0e000 - 0x9507dff2&&com.apple.security (7.0 - ) &8AF3BEF0-0EF9-32CD-A316-F9C& /System/Library/Frameworks/Security.framework/Versions/A/Security
0x - 0x95411ffc&&monAuth (4.0 - 2.0) &99219CEB-D340-3E1F-9C04-FD0FA700BD67& /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x - 0x95442ff7&&com.apple.CoreServicesInternal (184.9 - 184.9) &999FEDEC--A9AE-F29E0BE0AAF5& /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x - 0x95446ffa&&libCGXType.A.dylib (599.25.10.1) &FAA0A87E-0E30--D0CD8F5661A2& /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x - 0x9544bfff&&monPanels (1.2.6 - 96) &E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x - 0x95497fff&&com.apple.ImageCapture (9.0 - 9.0) &63D5C96F--ADFB-EE451AFD87E6& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x - 0x954f4ffa&&com.apple.print.framework.PrintCore (9.0 - 428) &3E9-328B-B84F-BB& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x - 0x95731fff&&libJP2.dylib (1043) &7B186EC7-B37E-3126-BCCE-D& /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x - 0x95759fff&&com.apple.CoreVideo (1.8 - 117.2) &A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0& /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x - 0x95775ff6&&libPng.dylib (1043) &AFF-31AE-BBAA-575FD7C43EF3& /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x - 0x95777fff&&libremovefile.dylib (33) &ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D& /usr/lib/system/libremovefile.dylib
0x - 0x957a0ffb&&libresolv.9.dylib (54) &3EC12A7F-6BA1-F-6A4B& /usr/lib/libresolv.9.dylib
0x957a1000 - 0x95821ff7&&com.apple.CoreServices.OSServices (600.4 - 600.4) &DA7C0406-EC4A-3369-B1FE-F21FD814F2D0& /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x - 0x9582eff7&&com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) &C4CC55E5-6CC4-307E-9499-AF89A6463AF4& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x - 0x95871fff&&libGLU.dylib (9.6.1) &F22-36CE-955B-52A533CA70D5& /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x - 0x95882ff5&&com.apple.LangAnalysis (1.7.0 - 1.7.0) &71DE-3F35-B1BF-B1FE7E1311E0& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x - 0x95891fff&&libxar.1.dylib (202) &B0-3C71-98B3-7A3ABF5136FD& /usr/lib/libxar.1.dylib
0x958e8000 - 0x958ebff7&&com.apple.help (1.3.3 - 46) &AB6292FA-D3BC-3D56-B3A5-2BE630A503E7& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x958ec000 - 0x958f7fff&&libcsfde.dylib (380) &821ACD5D-E4BD-3626-B7AC-8EE& /usr/lib/libcsfde.dylib
0x - 0x95912fff&&libkeymgr.dylib (28) &1B097DEA-011E-3B1C-86D5-6C7FAD5C765A& /usr/lib/system/libkeymgr.dylib
0x - 0x95950ff7&&libauto.dylib (185.5) &CD008E66-4A0C-35F5-8D72-80D76A716A03& /usr/lib/libauto.dylib
0x - 0x95969ffd&&libdispatch.dylib (339.92.1) &7E7A88BF-74B3-363B-B534-6F757DF2DDE3& /usr/lib/system/libdispatch.dylib
0x - 0x95973fff&&libsystem_notify.dylib (121) &--A916-8AF83C972154& /usr/lib/system/libsystem_notify.dylib
0x - 0x9597cfff&&libcopyfile.dylib (103.92.1) &9B62DDFE-FEFD-31CA-989F-9BE0AB606C49& /usr/lib/system/libcopyfile.dylib
0x - 0x95981ffa&&libGIF.dylib (1043) &276F48A6-766B-3D40-85C4-C9E8E6051DF7& /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x - 0x95a72ffb&&libiconv.2.dylib (41) &848FEBA7-2E3E-3ECB-BD59-007F& /usr/lib/libiconv.2.dylib
0x95ba1000 - 0x95ba5ffe&&libCoreVMClient.dylib (58.1) &0EB8FFD7-AFED-3A63-810E-D& /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x95ba6000 - 0x95c30ff7&&com.apple.CoreSymbolication (3.0.1 - 141.0.5) &A33DAC-A1DD-& /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x95c31000 - 0x95c3fff7&&libz.1.dylib (53) &858B4D9F-D87E-3D81-B07A-DFF& /usr/lib/libz.1.dylib
0x95c40000 - 0x95c41fff&&libDiagnosticMessagesClient.dylib (100) &B936B1D4-90BB-395D-8EA9-ED0& /usr/lib/libDiagnosticMessagesClient.dylib
0x95c61000 - 0x95e63fff&&com.apple.CoreFoundation (6.9 - 855.17) &E382BBB6-4F41-3959-ADC7-238BE49A2155& /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x95e64000 - 0x95e64ffd&&libOpenScriptingUtil.dylib (157) &4D06E8ED-D312-34EA-A448-DFF45ADC3CE5& /usr/lib/libOpenScriptingUtil.dylib
0x95e65000 - 0x95ef6fff&&com.apple.ColorSync (4.9.0 - 4.9.0) &6-3100-B87A-A176E8ECE7B6& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x - 0x96046ff7&&com.apple.NavigationServices (3.8 - 215) &A093AAF0-248E-313E-BA82-01F69E269895& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x - 0x9609afff&&com.apple.htmlrendering (77 - 1.1.4) &408FA30F-4FE9-3162-9FFD-677E8569C1EA& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x - 0x96162ff7&&com.apple.DiscRecording (8.0 - ) &84A7EC09-3BBD-3E04-A88C-6D3B724448FF& /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x - 0x96213fff&&com.apple.QD (3.50 - 298) &F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x - 0x9622fff5&&com.apple.openscripting (1.4 - 157) &5C161A52-8D2F-3D56-A988-05727BED7A59& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x - 0x963a3ffb&&com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) &4248C0FE-F872-34AB-CD0CC1& /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x - 0x96464fff&&com.apple.CrashReporterSupport (10.9 - 539) &10FE9B2D-404F-32B8-B3CA-CBA3524B4CFF& /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x - 0x96558ff7&&libxml2.2.dylib (26) &FD6-3AD2-B98B-39F73BF9AC47& /usr/lib/libxml2.2.dylib
0x - 0x96884ffe&&com.apple.Foundation (6.9 - 1056.13) &C33A-36BE-B842-EE4FE35F53EA& /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x - 0x96886fff&&libSystem.B.dylib () &BAD8FCD7--94A8-A571E12E7E5A& /usr/lib/libSystem.B.dylib
0x - 0x96889ffe&&libCVMSPluginSupport.dylib (9.6.1) &CA1-360C-BF7E-286F9681922F& /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x96b8c000 - 0x96b8dfff&&libsystem_blocks.dylib (63) &2AC67D5E-ECD4-84F9B7AA33& /usr/lib/system/libsystem_blocks.dylib
0x96b8e000 - 0x96f86ffb&&com.apple.CoreGraphics (1.600.0 - 599.25.10.1) &9BCF-3DE6-A5F2-4C84CAE21BB1& /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x96f87000 - 0x96fddff6&&com.apple.ScalableUserInterface (1.0 - 1) &2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9& /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x96ff8000 - 0x97005fff&&com.apple.AppleFSCompression (56.92.1 - 1.0) &D2E7A2DF-9E5B-35E6-9CCD-0D40ADA7E021& /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x - 0x97050fff&&com.apple.PerformanceAnalysis (1.47 - 47) &5C6FA727-EAC9--AF& /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x - 0x9733bfd2&&com.apple.vImage (7.0 - 7.0) &-3DBC-3CE1-9EE8-B& /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x - 0x973c3ffa&&libsystem_m.dylib (3047.16) &28E614E8--960A-AD& /usr/lib/system/libsystem_m.dylib
0x973c4000 - 0x9742ffff&&com.apple.Heimdal (4.0 - 2.0) &D1-3FF3-9561-AC149AEDB86F& /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x976b0000 - 0x9770effd&&com.apple.AE (665.5 - 665.5) &54F2F247-160C-3A22-A6E3-5D49655A67AB& /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x - 0x9771efff&&libGL.dylib (9.6.1) &885E9C1F-11C7-347D-BE10-522A40A46596& /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x - 0x9774aff7&&libsystem_network.dylib (241.3) &71EBA489-386D-3608-ADE6-CB50EBD1AB1B& /usr/lib/system/libsystem_network.dylib
0x - 0x978f7fff&&com.apple.QuartzCore (1.8 - 332.3) &DAE26-3E47-A2B3-B& /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x978f8000 - 0x978fafff&&com.apple.securityhi (9.0 - 55005) &5DD5A71D-48BA-3CA5-AFCB-28686A9EFB71& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x978fb000 - 0x97964ffa&&com.apple.datadetectorscore (5.0 - 354.5) &CB793FA7-B873-39A9-855F-D86AB0C35298& /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x - 0x9796efff&&com.apple.DiskArbitration (2.6 - 2.6) &92F7575A-AA20-34D9-BB26-2CC8C3CCAFEB& /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x - 0x9799afff&&com.apple.CoreServices (59 - 59) &5-BC4E7F89023& /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x - 0x97a2dff9&&libsystem_c.dylib (997.90.3) &80D21D3D-C-B1F0-0B35B977CEFB& /usr/lib/system/libsystem_c.dylib
0x97a2e000 - 0x97a83ff7&&com.apple.audio.CoreAudio (4.2.1 - 4.2.1) &CB06B746-9EB1--A139E15F5ACC& /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x97a84000 - 0x97a8fffb&&libcommonCrypto.dylib (60049) &F8E60C43-22EE-3E0B-901F1& /usr/lib/system/libcommonCrypto.dylib
0x97d08000 - 0x97db4ffb&&libvMisc.dylib (423.32) &43873EFF-FB43-3301-BEE8-F2C3A046D7A6& /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x97db5000 - 0x97dcefff&&com.apple.Kerberos (3.0 - 1) &91F17EB2-C70C-359C-B09D-96B52D2A9C9F& /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x - 0x9815aff7&&libsasl2.2.dylib (170) &CA1C07F6-8E17-315E-AE49-AB696DDE6707& /usr/lib/libsasl2.2.dylib
0x - 0x9815bfff&&com.apple.ApplicationServices (48 - 48) &7967F6FA--AD9A-7B9AEC562A2A& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x981c3000 - 0x98293fef&&libvDSP.dylib (423.32) &E2FAF6B-9ACF-DC& /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x - 0x98295fff&&liblangid.dylib (117) &F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D& /usr/lib/liblangid.dylib
0x - 0x98359ff1&&com.apple.CoreText (367.20 - 367.20) &BDD--845C441B6251& /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x98ce2000 - 0x98ce5ffe&&com.apple.LoginUICore (3.0 - 3.0) &6FE961A4-3C17-3004-B50B-FD78FDC28350& /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
0x98ce6000 - 0x98ce8ffb&&libRadiance.dylib (1043) &ECD94F60-9AAD-3207-B3BD-9DB559FC5032& /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x98ce9000 - 0x98cf0ff2&&com.apple.NetFS (6.0 - 4.0) &915AA303-C02B-3B0C-8208-D8AAA4350DB4& /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x98cf1000 - 0x98cf3fff&&libsystem_configuration.dylib (596.15) &E49AAD29-35C2-3EE2-AF4D-F& /usr/lib/system/libsystem_configuration.dylib
0x98cf4000 - 0x98cf4fff&&com.apple.Accelerate (1.9 - Accelerate 1.9) &C2-3CFA-981F-C8& /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x98cf5000 - 0x98cf5fff&&libodfde.dylib (20) &98FC02AE-C596-3ED5-80D1-C502FF6115ED& /usr/lib/libodfde.dylib
0x98cf6000 - 0x98d2cfff&&com.apple.IconServices (25 - 25.17) &A4BE-3D58-B066-BBEDB5947AAD& /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x98d2d000 - 0x98d30ffb&&libutil.dylib (34) &B496031E-E763-3DEB-84D2-85C0F3DF2012& /usr/lib/libutil.dylib
0x98d31000 - 0x98ebeffb&&com.apple.CFNetwork (673.3 - 673.3) &2C900A5F-9E29-B24774E82A& /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x98fdf000 - 0x98fedff3&&com.apple.opengl (9.6.1 - 9.6.1) &B01AF67E-F702-C241CDF7B55& /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x990f7000 - 0x990fbffc&&libpam.2.dylib (20) &F-3E28-AA85-23E0E7E2AE0E& /usr/lib/libpam.2.dylib
0x990fc000 - 0x991e2ff7&&com.apple.coreui (2.1 - 231) &1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88& /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x991e3000 - 0x9945cff1&&com.apple.RawCamera.bundle (5.05 - 743) &A72DC5F6-CA93-E87B192444& /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x - 0x994dcfff&&com.apple.SystemConfiguration (1.13.1 - 1.13.1) &3AD9C90B-40A9-312B-B479-3AB178A96EA1& /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x995b8000 - 0x995d4fff&&libCRFSuite.dylib (34) &FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77& /usr/lib/libCRFSuite.dylib
0x995d5000 - 0x995e9ff9&&com.apple.MultitouchSupport.framework (245.13 - 245.13) &06C-3DCC-B7D0-9EAC592CE1C5& /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x - 0x9965aff7&&com.apple.MediaKit (15 - 709) &82E0F8C0-313C-379C-87D0C0C& /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x - 0x996a7ff7&&libcups.2.dylib (372.4) &A11AA954-07E7-3929-84AB-309B0C0DDB5D& /usr/lib/libcups.2.dylib
0x996d8000 - 0x9970dffd&&libssl.0.9.8.dylib (50) &F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9& /usr/lib/libssl.0.9.8.dylib
0x - 0x99710fff&&libquarantine.dylib (71) &EE3B510E-1AEC-A-D6A5A42CF35C& /usr/lib/system/libquarantine.dylib
0x998dc000 - 0x9991cff7&&com.apple.bom (14.0 - 193.1) &FFF1C8E5-41FF-357B-DCED2E4& /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x - 0x99921ffc&&com.apple.IOSurface (91.1 - 91.1) &D54-3EFF-A929-54FC0A8A907A& /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x - 0x99997ff1&&com.apple.ApplicationServices.ATS (360 - 363.3) &FDA1-357A-89A7-& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x - 0x999e8fff&&com.apple.opencl (2.3.59 - 2.3.59) &D5DAB6C0-D5F6-3E07-BE3D-B24F7560ADE1& /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x999e9000 - 0x999efffb&&libunwind.dylib (35.3) &099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2& /usr/lib/system/libunwind.dylib
0x999f0000 - 0x99a0dff4&&libsystem_kernel.dylib () &BCE753BB-9F18-30CB-87BC-D& /usr/lib/system/libsystem_kernel.dylib
0x99a0e000 - 0x99a54ff7&&libcurl.4.dylib (78.94.1) &0EBBA3F-ACBF-80D742C4945B& /usr/lib/libcurl.4.dylib
0x99abd000 - 0x99ad9ff9&&com.apple.Ubiquity (1.3 - 289) &1CEDC83D-D-8CF7-4FE& /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x99ada000 - 0x99c30ff0&&libBLAS.dylib (1094.5) &FDB-AFB83010A43& /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x99c5b000 - 0x99c7fff7&&libxpc.dylib (300.90.2) &5ACBBE2C-74EB-3E88-BCBF-C& /usr/lib/system/libxpc.dylib
0x99c80000 - 0x99efcfe7&&com.apple.QuickTime (7.7.3 - 2826.19) &AEF1-3B50-8AB6-45DC794E693E& /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x9a323000 - 0x9a32cfff&&com.apple.speech.recognition.framework (4.2.4 - 4.2.4) &CF8E39-8A51-D52BF055D19F& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x9a32d000 - 0x9a339ffc&&libkxld.dylib () &FBC-3DFC-954E-1& /usr/lib/system/libkxld.dylib
0x9a33a000 - 0x9a354ff7&&com.apple.GenerationalStorage (2.0 - 160.3) &DBF-3C74-828B-DA0& /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x9a355000 - 0x9a3a5ff7&&libcorecrypto.dylib (161.1) &135FD99E--825C-C9FC& /usr/lib/system/libcorecrypto.dylib
0x9a3a6000 - 0x9a3a9ff7&&libdyld.dylib (239.4) &C03C330D-B-BDD1-BC8& /usr/lib/system/libdyld.dylib
0x9a3aa000 - 0x9a3bcfff&&libbsm.0.dylib (33) &1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450& /usr/lib/libbsm.0.dylib
0x9a3bd000 - 0x9a3bfff2&&com.apple.EFILogin (2.0 - 2) &C41A6C38-8DB8--CD1F9F4AA0BA& /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x9a3c0000 - 0x9a3c6ff7&&com.apple.AOSNotification (1.7.0 - 760.3) &63F7E7F8-6FA3-38D3-9907-CDF360CA9354& /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
0x9a3c7000 - 0x9a403ff4&&com.apple.RemoteViewServices (2.0 - 94) &BEEE6ADF-7DA3-3D68-BCB0-F46& /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x9a404000 - 0x9a42efff&&libxslt.1.dylib (13) &249D54AB-1D82-38FE-ABEC-0DB& /usr/lib/libxslt.1.dylib
0x9a42f000 - 0x9a439ff7&&com.apple.DirectoryService.Framework (10.9 - 173.90.1) &12D-342B-871A-C65795D85CCF& /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x9a491000 - 0x9a8c5ff7&&com.apple.vision.FaceCore (3.0.0 - 3.0.0) &5B12F3E9-84F6-3183-B85D-FD19EF800ADB& /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x9abda000 - 0x9abdbffa&&libsystem_sandbox.dylib (278.11.1) &DAC2-F378E4BD03& /usr/lib/system/libsystem_sandbox.dylib
0x9abdc000 - 0x9abf4ff7&&libsystem_malloc.dylib (23.10.1) &CB5B-31E3-A42A-FD4F930E2192& /usr/lib/system/libsystem_malloc.dylib
0x9abf5000 - 0x9ac2dfff&&com.apple.LDAPFramework (2.4.28 - 194.5) &9-3ACC-97AF-F2E14DD207CB& /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x9ac2e000 - 0x9afa3ff9&&com.apple.HIToolbox (2.1.1 - 698) &-322F-3C80-BEF7-138AFB124C35& /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x9afa4000 - 0x9bbc2ff3&&com.apple.AppKit (6.9 - 1265.21) &1D3-3239-BACE-5DA& /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x9bbc3000 - 0x9bbc8ff6&&libcompiler_rt.dylib (35) &9924DF2E-D80B-3A21-920D-544A4597203F& /usr/lib/system/libcompiler_rt.dylib
0x9bbcb000 - 0x9bbd3ffe&&libGFXShared.dylib (9.6.1) &-36C2-302E-8A85-AD6& /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x9bbd4000 - 0x9bc6cff7&&com.apple.Metadata (10.7.0 - 800.28) &2DC6EFB3-BE95-3F2C-A892-BD74C077D292& /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x9bc6d000 - 0x9bc78ff6&&com.apple.NetAuth (5.0 - 5.0) &3B2E9615-EE12-38FC-BDCF-0B& /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x9bd7b000 - 0x9bdd4ffa&&libTIFF.dylib (1043) &C03B34F4--AE51-B8B5FC8DB639& /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x9be5e000 - 0x9beadff9&&com.apple.HIServices (1.23 - 468) &72D000B0-C8F0-3CE5-89E9-D99E2FAF6F5B& /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x9bf0d000 - 0x9c202ffc&&com.apple.CoreImage (9.4.0) &E18-32D6-844F-2& /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x9c203000 - 0x9c22eff5&&com.apple.ChunkingLibrary (2.0 - 155.1) &50BBBBF8-F30B-39EA-A512-11A47F429F2C& /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x9c237000 - 0x9c23fff7&&libCGCMS.A.dylib (599.25.10.1) &0F42B4AF-CAC2-AF2C4FFFEDA& /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0xba300000 - 0xba301fff&&libCyrillicConverter.dylib (61) &C9E7F2C5-6B9E-3313-86BC-63E550E40E8B& /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
0xba500000 - 0xba501ffd&&libGreekConverter.dylib (61) &F2C67F25-2CAC-370E-A6DF-F9FE& /System/Library/CoreServices/Encodings/libGreekConverter.dylib
0xba900000 - 0xba91cffd&&libJapaneseConverter.dylib (61) &3153973E-B2A9-3D17-B99B-31E53EC5B0F8& /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
0xbab00000 - 0xbab21ffc&&libKoreanConverter.dylib (61) &E92-3581-97FD-E43D80F4E0D0& /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
0xbad00000 - 0xbad01fff&&libLatin2Converter.dylib (61) &0FA237A8-E-BDDD-1FDAF8019745& /System/Library/CoreServices/Encodings/libLatin2Converter.dylib
0xbaf00000 - 0xbaf01fff&&libLatin5Converter.dylib (61) &634C0C7A-49E2-3F3A-B909-71& /System/Library/CoreServices/Encodings/libLatin5Converter.dylib
0xbb100000 - 0xbb103ffd&&libLatinSuppConverter.dylib (61) &-740B-31A8-96A6-A2D74F8937BC& /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
0xbb300000 - 0xbb301ffd&&libSymbolConverter.dylib (61) &34E75EDE-C05D-3BC9-A787-574CC09F217C& /System/Library/CoreServices/Encodings/libSymbolConverter.dylib
0xbb500000 - 0xbb500fff&&libThaiConverter.dylib (61) &886AB677-EC1C-3C4B-B551-31C4D43C68C1& /System/Library/CoreServices/Encodings/libThaiConverter.dylib
External Modification Summary:
&&Calls made by other processes targeting this process:
& & task_for_pid: 9
& & thread_create: 0
& & thread_set_state: 0
&&Calls made by this process:
& & task_for_pid: 0
& & thread_create: 0
& & thread_set_state: 0
&&Calls made by all processes on this machine:
& & task_for_pid: 809
& & thread_create: 0
& & thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=148.8M resident=47.2M(32%) swapped_out_or_unallocated=101.6M(68%)
Writable regions: Total=747.7M written=167.9M(22%) resident=201.6M(27%) swapped_out=0K(0%) unallocated=546.1M(73%)
REGION TYPE& && && && && && && & VIRTUAL
===========& && && && && && && & =======
ATS (font support)& && && && && &&&32.9M
CG backing stores& && && && && && &4980K
CG raster data& && && && && && && &&&24K
CG shared images& && && && && && &&&180K
Kernel Alloc Once& && && && && && && &4K
MALLOC& && && && && && && && && & 494.1M
MALLOC (admin)& && && && && && && &&&48K
MALLOC_LARGE (reserved)& && && &&&157.4M& && &&&reserved VM address space (unallocated)
Memory Tag 242& && && && && && && &&&12K
Memory Tag 249& && && && && && && & 156K
Stack& && && && && && && && && && &79.3M
VM_ALLOCATE& && && && && && && && &19.6M
__DATA& && && && && && && && && &&&44.9M
__IMAGE& && && && && && && && && &&&528K
__IMPORT& && && && && && && && && && &4K
__LINKEDIT& && && && && && && && & 44.5M
__OBJC& && && && && && && && && &&&1852K
__PAGEZERO& && && && && && && && && & 4K
__TEXT& && && && && && && && && & 104.3M
__UNICODE& && && && && && && && && &544K
mapped file& && && && && && && &&&260.3M
shared memory& && && && && && && && & 4K
===========& && && && && && && & =======
TOTAL& && && && && && && && && && & 1.2G
TOTAL, minus reserved VM space& && &1.1G
Model: MacBookPro11,3, BootROM MBP112. processors, Intel Core i7, 2.5 GHz, 16 GB, SMC 2.19f7
Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
Graphics: NVIDIA GeForce GT 750M, NVIDIA GeForce GT 750M, PCIe, 2048 MB
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484DD
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484DD
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.65)
Bluetooth: Version 4.2.6f1 14216, 3 services, 15 devices, 1 incoming serial ports
Serial ATA Device: APPLE SSD SM0512F, 500.28 GB
USB Device: Internal Memory Card Reader
USB Device: SL 3
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
USB Device: Apple Internal Keyboard / Trackpad
Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1
<p id="rate_34252" onmouseover="showTip(this)" tip="&a
href=&forum.php?mod=redirect&goto=findpost&ptid=8289296&pid=&fromuid=1&&&span &把我看晕了 必须扣!&/span&&/a&&人气 -1
" class="mtn mbn">
注册时间 最后登录
在线时间303 小时 UID
主题帖子人气
这是什么东东
注册时间 最后登录
在线时间67 小时 UID
主题帖子人气
太高端 ,搞不懂。。
注册时间 最后登录
在线时间69 小时 UID
主题帖子人气
提示: 作者被禁止或删除 内容自动屏蔽
注册时间 最后登录
在线时间182 小时 UID
主题帖子人气
目测像某些东西的日志
注册时间 最后登录
在线时间494 小时 UID
主题帖子人气
这个。。。报bug的时候要写下操作步骤……
如何重现这个问题……
注册时间 最后登录
在线时间280 小时 UID
主题帖子人气
求字体!!
C:\Users\Administrator\Desktop
注册时间 最后登录
在线时间547 小时 UID
主题帖子人气
对feizi-09-17 04:26:50在楼主发表的内容评分:人气:-1;
Process:& && && &Scratch LIVE
Path:& && && && &/Applications/Scratch Live.app/Contents/MacOS/Scratch LIVE
Identifier:& && &c……把我看晕了 必须扣!
注册时间 最后登录
在线时间46 小时 UID
主题帖子人气
这是直接错误报告贴出来的样子啊
威锋旗下产品
Hi~我是威威!
沪公网安备 29号 丨 沪ICP备号-1 丨 深公安网监备案号 5
增值电信业务经营许可证:
Powered by Discuz!}

我要回帖

更多关于 runloop ios面试题 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信