Closed rainbowcreatures closed 9 years ago
This really looks like a bug in the flash player. You should post the bug and the repro step in adobe's bug tracker : https://bugbase.adobe.com
Thanks joe, will do. In case this isn't impossible I'd also like to find a workaround (if this is even workaround-able), so I'll be on it until its 100% clear that it can't be fixed or hacked to not be triggering whatever is causing the crash.
I'd really love for this to be used for the upcoming project (its worldwide known brand, not sure I can mention it - anyway would be great reference). My client would pay extra for resolving this in time I guess, but probably that won't help with Adobe. The previous Crossbridge bug I was helping to upvote with my customers took them like 1.5 months (and I thought that was fast).
Maybe it's still fixable for FP19, it still in beta. Post the bug report here and I'll upvote it too.
Try to step into your application and pinpoint the actual operation that make it crash. You could go by bisection (making a bunch of line print and going deeper each time until you get to the actual line). It might not be just one line. Your application seems to use lots of memory. Maybe it is memory pressure or memory fragmentation, I would not be surprise if it crash on a malloc or an object allocation. https://github.com/adobe-flash/crossbridge/wiki/Memory-Fragmentation
This does appear to an error in the player.
Interesting in that it performs totally different in my FP 11 debugger vs FP 18 debugger. In the v18 debugger, performance is severely degraded and it experiences a hard crash.
There are also API differences in play, though, I think in that the FP 11 starts with errors:
ReferenceError: Error #1065: Variable avm2.intrinsics.memory::casi32 is not defined.
at global/com.fw_flascc::F__thr_alloc()
at global/com.fw_flascc::F__libpthread_init()
at global/com.fw_flascc::F__pthread_key_create()
at global/com.fw_flascc__3A__2F_Pavel_2F_FlasCC_Crossbridge_2F_cygwin_2F_tmp_2F_ccUp6tSl_2E_lto_2E_bc_3A_7c30ac5d_2D_c66c_2D_49f8_2D_8027_2D_8fd0b9afeec0::F__GLOBAL__I___cxa_get_globals_fast()
at com.fw_flascc::CModule$/callI()
at com.fw_flascc::CModule/runCtors()
at com.fw_flascc::CModule$/runCtors()
at global/com.fw_flascc::F__init()
at global/com.fw_flascc::F__start1()
at com.fw_flascc::CModule$/callI()
at com.fw_flascc::CModule$/start()
at com.fw_flascc::CModule$/startAsync()
at com.rainbowcreatures::FWVideoEncoder/onAdded()
at flash.display::DisplayObjectContainer/addChild()
at com.rainbowcreatures::FWVideoEncoder$/getInstance()
at Encoder/getInstance()
at com.rainbowcreatures.swf::FWVideoEncoder/onEncoderLoaded()[C:\wamp\www\flashywrappers_svn\FW_src_stable\FlasCC\SWFBridge\com\rainbowcreatures\swf\FWVideoEncoder.as:131]
ReferenceError: Error #1065: Variable avm2.intrinsics.memory::casi32 is not defined.
at global/com.fw_flascc::F__pthread_once()
at global/com.fw_flascc__3A__2F_Pavel_2F_FlasCC_Crossbridge_2F_cygwin_2F_tmp_2F_ccUp6tSl_2E_lto_2E_bc_3A_7c30ac5d_2D_c66c_2D_49f8_2D_8027_2D_8fd0b9afeec0::F_fc_key_init_once()
at global/com.fw_flascc::F__Unwind_SjLj_Register()
at global/com.fw_flascc::F__Znwj()
at global/com.fw_ffmpeg::ffmpeg_init()
at com.rainbowcreatures::FWVideoEncoder/start()
at com.rainbowcreatures.swf::FWVideoEncoder/start()[C:\wamp\www\flashywrappers_svn\FW_src_stable\FlasCC\SWFBridge\com\rainbowcreatures\swf\FWVideoEncoder.as:187]
at Main/start()[C:\Pavel\Projekty_Sources\FWCrash\src\Main.as:198]
at Main/ready()[C:\Pavel\Projekty_Sources\FWCrash\src\Main.as:257]
at Main/onEncoderStatus()[C:\Pavel\Projekty_Sources\FWCrash\src\Main.as:398]
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at com.rainbowcreatures.swf::FWVideoEncoder/onEncoderLoaded()[C:\wamp\www\flashywrappers_svn\FW_src_stable\FlasCC\SWFBridge\com\rainbowcreatures\swf\FWVideoEncoder.as:134]
ReferenceError: Error #1065: Variable avm2.intrinsics.memory::casi32 is not defined.
at global/com.fw_flascc::F__thr_alloc()
at global/com.fw_flascc::F__libpthread_init()
at global/com.fw_flascc::F___pthread_mutex_lock()
at global/com.fw_flascc::F_pthread_mutex_lock_exp()
at global/com.fw_flascc::F__ZN5boost7atomics6detail8lockpool11scoped_lockC1EPVKv()
at global/com.fw_flascc::F__ZN16FW_ffmpeg_encode18initThreadFinishedEv()
at global/com.fw_ffmpeg::ffmpeg_initFinished()
at com.rainbowcreatures::FWVideoEncoder/enterFrame()
Hi Joe, thanks for that link. That particular test application was written by my customer and he doesn't seem to use the technique I'm recommending for reloading the library swf. I'm creating my own test app right now. But I don't think it causes the crashes.
Pretty much the recommended way to use my lib is to reload the lib SWF(long story, but the lib is placed inside SWF..because of multithreading mainly, so it clones only its own SWF..).When the SWF is unloaded it is trying to clear after itself the memory etc. So the memory usage should even out after each recording if its properly unloaded. Also its very likely that the lib version uploaded has verbose logging enabled which logs stuff every frame, so that cripples performance. I'll upload a version without logging.
In any case when I attach Adobe Scout to it, it happily crashes like at frame 25-30, at first recording. So I doubt at that point the memory would be full. I'll make more Scout tests to make sure there's enough memory. I know about the whole fragmentation fun and there's even code commented out where I was setting up some initial RAM, but then I killed this code in favor of the unload SWF cleanup.
And Jason: Thanks for trying it out! Yes FP11 doesn't support pthreads, thats why you see that error. On FP18 it might actually work so it seems slow(and again maybe because of the logging).
I'm in the process of posting the bug to Adobe and will post updates here in case there's something new to try out, if anybody will be kind again to run a test. Really appreciate you guys trying the examples out with me, thanks!
So here it is:
https://bugbase.adobe.com/index.cfm?event=bug&id=4041472
Upvoting would really be appreciated! I'll be still working at this...thanks, guys!
Just to fill in bit more details, the lib has been around for some time(roughly 2 years), I've never heard reports about crashing FP (of course people might not have reported it and there's not a great deal of customers using the FP version). On Windows where I'm developing I don't remember any consistent FP crashes, if ever. I foolishly assumed it would work on OS X as well so I didn't test it as much, I mostly tested the AIR versions(OS X version on Mac).
It does use ffmpeg underneath which might explain why it is so memory hungry, in any case, ironically I've been devoting time lately to keep memory growth under control(to avoid the malloc crashes which I also saw in the past). So I'm trying to clear memory when reloading the swf and so on. But whenever I had issues with Crossbridge in the past, it never crashed the FP plugin(and I guess it never should)..just logged an error in the debugger player trace in worst case.
I will do as joe suggested, put more verbose logs. I already used some of that, it seems to always crash when adding video frame so I'll try to go deeper...so far I've been only using Scout with Flash debug logs to determine any patterns.
I tried to stare into the FP crash logs but without symbolicated logs that won't probably help really..probably only Adobe will know whats in there.
I'll write again after I know more to not spam the thread too much.
Thankss
This should be fixed in the next release according to adobe's bug tracker. Closing the issue.
This is a Crossbridge project which seems to be running stable on Windows, but now got reports that on Mac it crashes. I could repro on 10.10.3, not on old 10.7 Mac though(weird). But might be just luck. I'm just in the first few hours of debugging this.
Would someone be so kind and test http://rainbowcreatures.com/FWcrash/main.swf On OS X -
steps to test:
1) Wait for "Record" button to enable(and start to disable) 2) Click Record, wait till Frame 100-200 3) Stop 4) Wait for Start to enable, click it 5) Wait for Start to disable and go to step 2
For me it crashes the whole Flash plugin on OS X. Tested Safari (FP 19 beta debugger) and Chrome(FP 18). Both do the same thing, so it seems generic, either something in code only triggering on Mac or Flash Player Mac related?
On Windows I can't get it to crash at all, and I thought the code to be stable(it has been out for 1-2 years).
It sucks as very important client is interested in this Crossbridge based lib of mine, they are week from launch for millions of people and now found out about this OS X crash :/ And I have little clue how to debug this. Managed to get crash report from Chrome here:
Process: com.apple.WebKit.Plugin.64 [689] Path: /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Plugin.64.xpc/Contents/MacOS/com.apple.WebKit.Plugin.64 Identifier: com.apple.WebKit.Plugin.64 Version: 10600 (10600.5.17) Build Info: WebKit2-7600005017000000~3 Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: Safari [215] User ID: 501
Date/Time: 2015-08-21 16:56:48.620 +0200 OS Version: Mac OS X 10.10.3 (14D136) Report Version: 11 Anonymous UUID: CD7B485A-7F12-D9BD-5545-57D61EF7C4FD
Time Awake Since Boot: 2400 seconds
Crashed Thread: 10
Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000003
VM Regions Near 0x3: --> __TEXT 000000010a85d000-000000010a85e000 [ 4K] r-x/rwx SM=COW /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Plugin.64.xpc/Contents/MacOS/com.apple.WebKit.Plugin.64
Thread 0:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x00007fff8f14cc22 write + 10 1 com.apple.Foundation 0x00007fff8828a2a7 34-[NSConcreteFileHandle writeData:]_block_invoke + 60 2 com.apple.Foundation 0x00007fff88235e26 -[NSData(NSData) enumerateByteRangesUsingBlock:] + 73 3 com.apple.Foundation 0x00007fff8828a260 -[NSConcreteFileHandle writeData:] + 150 4 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f21a5e2 0x10ed84000 + 4810210 5 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f21a6f9 0x10ed84000 + 4810489 6 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010edd2fcf 0x10ed84000 + 323535 7 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010edd2eda 0x10ed84000 + 323290 8 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010edd5222 0x10ed84000 + 332322 9 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f0565e4 0x10ed84000 + 2958820 10 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010efa9277 0x10ed84000 + 2249335 11 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f4d1788 0x10ed84000 + 7657352 12 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010eef7bbc 0x10ed84000 + 1522620 13 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55939b 0x10ed84000 + 8213403 14 ??? 0x0000000111703a13 0 + 4587534867 15 ??? 0x00003dcf3bc8a00d 0 + 67960270528525 16 ??? 0x0000364e428f1c8a 0 + 59709752024202 17 ??? 0x00001efec7eb94ab 0 + 34079624631467 18 ??? 0x00001efec7ebb66b 0 + 34079624640107 19 ??? 0x00001efec7ebb977 0 + 34079624640887 20 ??? 0x00001efec7ebc60c 0 + 34079624644108 21 ??? 0x0000011ad25a064c 0 + 1214709892684 22 ??? 0x00000001118e4fc4 0 + 4589506500 23 ??? 0x00000001116ace65 0 + 4587179621 24 ??? 0x00000001116acfe8 0 + 4587180008 25 ??? 0x00000001116ac9db 0 + 4587178459 26 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ee1a62d 0x10ed84000 + 615981 27 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ee1a1a9 0x10ed84000 + 614825 28 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ee190ef 0x10ed84000 + 610543 29 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ef391d0 0x10ed84000 + 1790416 30 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55939b 0x10ed84000 + 8213403 31 ??? 0x00000001117065d2 0 + 4587546066 32 ??? 0x0000000111b8645c 0 + 4592264284 33 ??? 0x0000000111bbb40d 0 + 4592481293 34 ??? 0x0000000111bbb203 0 + 4592480771 35 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ee1a62d 0x10ed84000 + 615981 36 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ee1b344 0x10ed84000 + 619332 37 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010efa7a91 0x10ed84000 + 2243217 38 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f129e1d 0x10ed84000 + 3825181 39 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f12ae19 0x10ed84000 + 3829273 40 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f2274a8 0x10ed84000 + 4863144 41 com.apple.CoreFoundation 0x00007fff87d50a01 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 17 42 com.apple.CoreFoundation 0x00007fff87d42b8d CFRunLoopDoSources0 + 269 43 com.apple.CoreFoundation 0x00007fff87d421bf CFRunLoopRun + 927 44 com.apple.CoreFoundation 0x00007fff87d41bd8 CFRunLoopRunSpecific + 296 45 com.apple.HIToolbox 0x00007fff843f756f RunCurrentEventLoopInMode + 235 46 com.apple.HIToolbox 0x00007fff843f72ea ReceiveNextEventCommon + 431 47 com.apple.HIToolbox 0x00007fff843f712b _BlockUntilNextEventMatchingListInModeWithFilter + 71 48 com.apple.AppKit 0x00007fff8dcfa9bb _DPSNextEvent + 978 49 com.apple.AppKit 0x00007fff8dcf9f68 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346 50 com.apple.AppKit 0x00007fff8dcefbf3 -[NSApplication run] + 594 51 com.apple.AppKit 0x00007fff8dc6c354 NSApplicationMain + 1832 52 libxpc.dylib 0x00007fff89dc2958 _xpc_objc_main + 793 53 libxpc.dylib 0x00007fff89dc4060 xpc_main + 490 54 com.apple.WebKit.Plugin.64 0x000000010a85db40 0x10a85d000 + 2880 55 libdyld.dylib 0x00007fff84d375c9 start + 1
Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff8f14c232 kevent64 + 10 1 libdispatch.dylib 0x00007fff8d63da6a _dispatch_mgr_thread + 52
Thread 2: 0 libsystem_kernel.dylib 0x00007fff8f14b94a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8a69240d start_wqthread + 13
Thread 3: 0 libsystem_kernel.dylib 0x00007fff8f14b94a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8a69240d start_wqthread + 13
Thread 4: 0 libsystem_kernel.dylib 0x00007fff8f1464de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8f14564f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff87d42eb4 CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff87d4237b CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff87d41bd8 CFRunLoopRunSpecific + 296 5 com.apple.AppKit 0x00007fff8ddc266b _NSEventThread + 137 6 libsystem_pthread.dylib 0x00007fff8a694268 _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff8a6941e5 _pthread_start + 176 8 libsystem_pthread.dylib 0x00007fff8a69241d thread_start + 13
Thread 5:: BackgroundThread 0 libsystem_kernel.dylib 0x00007fff8f14b136 __psynch_cvwait + 10 1 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c19eb 0x10ed84000 + 4446699 2 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ed9403e 0x10ed84000 + 65598 3 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c17fd 0x10ed84000 + 4446205 4 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1842 0x10ed84000 + 4446274 5 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1587 0x10ed84000 + 4445575 6 libsystem_pthread.dylib 0x00007fff8a694268 _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff8a6941e5 _pthread_start + 176 8 libsystem_pthread.dylib 0x00007fff8a69241d thread_start + 13
Thread 6:: BackgroundThread 0 libsystem_kernel.dylib 0x00007fff8f14b136 __psynch_cvwait + 10 1 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c19eb 0x10ed84000 + 4446699 2 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ed9403e 0x10ed84000 + 65598 3 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c17fd 0x10ed84000 + 4446205 4 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1842 0x10ed84000 + 4446274 5 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1587 0x10ed84000 + 4445575 6 libsystem_pthread.dylib 0x00007fff8a694268 _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff8a6941e5 _pthread_start + 176 8 libsystem_pthread.dylib 0x00007fff8a69241d thread_start + 13
Thread 7: 0 libsystem_kernel.dylib 0x00007fff8f14b48a __semwait_signal + 10 1 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c15e6 0x10ed84000 + 4445670 2 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010edd1f1a 0x10ed84000 + 319258 3 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c17fd 0x10ed84000 + 4446205 4 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1842 0x10ed84000 + 4446274 5 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1587 0x10ed84000 + 4445575 6 libsystem_pthread.dylib 0x00007fff8a694268 _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff8a6941e5 _pthread_start + 176 8 libsystem_pthread.dylib 0x00007fff8a69241d thread_start + 13
Thread 8:: ScriptTimeout 0 libsystem_kernel.dylib 0x00007fff8f14b136 __psynch_cvwait + 10 1 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1a5e 0x10ed84000 + 4446814 2 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010efa5c26 0x10ed84000 + 2235430 3 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c17fd 0x10ed84000 + 4446205 4 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1842 0x10ed84000 + 4446274 5 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1587 0x10ed84000 + 4445575 6 libsystem_pthread.dylib 0x00007fff8a694268 _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff8a6941e5 _pthread_start + 176 8 libsystem_pthread.dylib 0x00007fff8a69241d thread_start + 13
Thread 9:: CoreLoop 0 libsystem_kernel.dylib 0x00007fff8f14b136 __psynch_cvwait + 10 1 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1a5e 0x10ed84000 + 4446814 2 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f13f09f 0x10ed84000 + 3911839 3 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c17fd 0x10ed84000 + 4446205 4 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1842 0x10ed84000 + 4446274 5 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1587 0x10ed84000 + 4445575 6 libsystem_pthread.dylib 0x00007fff8a694268 _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff8a6941e5 _pthread_start + 176 8 libsystem_pthread.dylib 0x00007fff8a69241d thread_start + 13
Thread 10 Crashed: 0 ??? 0x00001f2383395f25 0 + 34237385891621 1 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5588dd 0x10ed84000 + 8210653 2 ??? 0x000002e5f69cba33 0 + 3186708232755 3 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5588dd 0x10ed84000 + 8210653 4 ??? 0x0000364e41f22c01 0 + 59709741739009 5 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5588dd 0x10ed84000 + 8210653 6 ??? 0x0000364e4214d569 0 + 59709744010601 7 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5597e4 0x10ed84000 + 8214500 8 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55a276 0x10ed84000 + 8217206 9 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55897d 0x10ed84000 + 8210813 10 ??? 0x0000364e427c72f2 0 + 59709750801138 11 ??? 0x0000364e4214f38c 0 + 59709744018316 12 ??? 0x0000364e42150405 0 + 59709744022533 13 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5597e4 0x10ed84000 + 8214500 14 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55a276 0x10ed84000 + 8217206 15 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55897d 0x10ed84000 + 8210813 16 ??? 0x0000364e421518ca 0 + 59709744027850 17 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5597e4 0x10ed84000 + 8214500 18 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55a276 0x10ed84000 + 8217206 19 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55897d 0x10ed84000 + 8210813 20 ??? 0x0000364e427c6236 0 + 59709750796854 21 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5588dd 0x10ed84000 + 8210653 22 ??? 0x0000364e427cad2f 0 + 59709750816047 23 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5588dd 0x10ed84000 + 8210653 24 ??? 0x0000364e427cb762 0 + 59709750818658 25 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55a276 0x10ed84000 + 8217206 26 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55897d 0x10ed84000 + 8210813 27 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f49f5ba 0x10ed84000 + 7452090 28 ??? 0x0000364e427cbeec 0 + 59709750820588 29 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5588dd 0x10ed84000 + 8210653 30 ??? 0x0000364e427cc9e0 0 + 59709750823392 31 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5597e4 0x10ed84000 + 8214500 32 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55a276 0x10ed84000 + 8217206 33 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55897d 0x10ed84000 + 8210813 34 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ee1a62d 0x10ed84000 + 615981 35 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ee1a04f 0x10ed84000 + 614479 36 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ee1b03c 0x10ed84000 + 618556 37 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010ee1b104 0x10ed84000 + 618756 38 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f0505ef 0x10ed84000 + 2934255 39 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010edcf20a 0x10ed84000 + 307722 40 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55939b 0x10ed84000 + 8213403 41 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5588dd 0x10ed84000 + 8210653 42 ??? 0x0000364e427cdc62 0 + 59709750828130 43 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5588dd 0x10ed84000 + 8210653 44 ??? 0x0000364e427cdfc9 0 + 59709750829001 45 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55a276 0x10ed84000 + 8217206 46 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f55897d 0x10ed84000 + 8210813 47 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f49f5ba 0x10ed84000 + 7452090 48 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f49f505 0x10ed84000 + 7451909 49 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010efaa3b5 0x10ed84000 + 2253749 50 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010efab290 0x10ed84000 + 2257552 51 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010efaaf8e 0x10ed84000 + 2256782 52 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010efaa8dc 0x10ed84000 + 2255068 53 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f0f271b 0x10ed84000 + 3598107 54 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f0f34c7 0x10ed84000 + 3601607 55 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f31e871 0x10ed84000 + 5875825 56 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f57988e 0x10ed84000 + 8345742 57 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f5770f6 0x10ed84000 + 8335606 58 libsystem_pthread.dylib 0x00007fff8a694268 _pthread_body + 131 59 libsystem_pthread.dylib 0x00007fff8a6941e5 _pthread_start + 176 60 libsystem_pthread.dylib 0x00007fff8a69241d thread_start + 13
Thread 11: 0 libsystem_kernel.dylib 0x00007fff8f14b48a __semwait_signal + 10 1 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c15e6 0x10ed84000 + 4445670 2 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010edd1f1a 0x10ed84000 + 319258 3 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c17fd 0x10ed84000 + 4446205 4 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1842 0x10ed84000 + 4446274 5 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1587 0x10ed84000 + 4445575 6 libsystem_pthread.dylib 0x00007fff8a694268 _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff8a6941e5 _pthread_start + 176 8 libsystem_pthread.dylib 0x00007fff8a69241d thread_start + 13
Thread 12:: CoreLoop 0 libsystem_kernel.dylib 0x00007fff8f14b136 __psynch_cvwait + 10 1 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1a5e 0x10ed84000 + 4446814 2 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f13f09f 0x10ed84000 + 3911839 3 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c17fd 0x10ed84000 + 4446205 4 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1842 0x10ed84000 + 4446274 5 com.macromedia.FlashPlayerDebugger-10.6.plugin 0x000000010f1c1587 0x10ed84000 + 4445575 6 libsystem_pthread.dylib 0x00007fff8a694268 _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff8a6941e5 _pthread_start + 176 8 libsystem_pthread.dylib 0x00007fff8a69241d thread_start + 13
Thread 13:
Thread 10 crashed with X86 Thread State (64-bit): rax: 0x0000000000000003 rbx: 0x00000ec660772088 rcx: 0x000019b6837c3000 rdx: 0x000019b6837c3000 rdi: 0x0000011ad24ea030 rsi: 0x0000000115dd2610 rbp: 0x0000000115dd27c0 rsp: 0x0000000115dd2520 r8: 0x00000000017ffffc r9: 0x000019b6837c4f98 r10: 0x00000000000003fe r11: 0x00002ffcde194dc0 r12: 0x00000ec66093ed58 r13: 0x0000000115dd27d0 r14: 0x0000000115dd2890 r15: 0x0000000000000000 rip: 0x00001f2383395f25 rfl: 0x0000000000010212 cr2: 0x0000000000000003
Logical CPU: 1 Error Code: 0x00000006 Trap Number: 14
Binary Images: 0x10a85d000 - 0x10a85dffb com.apple.WebKit.Plugin.64 (10600 - 10600.5.17) <3608B4A0-7F7E-399A-96E3-216D3FDA192D> /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Plugin.64.xpc/Contents/MacOS/com.apple.WebKit.Plugin.64 0x10a864000 - 0x10a864fff PluginProcessShim.dylib (7600.5.17) <017B4341-0692-3C1A-9C20-7A449C25C2AB> /System/Library/Frameworks/WebKit.framework/PluginProcess.app/Contents/MacOS/PluginProcessShim.dylib 0x10ed6a000 - 0x10ed6efff com.apple.audio.AppleHDAHALPlugIn (272.18 - 272.18) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x10ed7c000 - 0x10ed7fff7 +com.macromedia.Flash Player Debugger.plugin (19.0.0.157 - 19.0.0.157) <9355E9EE-D33D-39A9-8B24-61B698303423> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player Debugger
0x10ed84000 - 0x11052fb27 +com.macromedia.FlashPlayerDebugger-10.6.plugin (19.0.0.157 - 19.0.0.157) <1B4FF7A0-37F4-3DBC-BFAA-719764F3A79A> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayerDebugger-10.6.plugin/Contents/MacOS/FlashPlayerDebugger-10.6
0x110878000 - 0x11087cfff com.apple.agl (3.3.0 - AGL-3.3.0) <83B4076C-BD87-3436-B59F-65184128FEC1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x7fff68c6b000 - 0x7fff68ca1837 dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
0x7fff843a2000 - 0x7fff843a9fff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff843aa000 - 0x7fff843c4fff com.apple.AppleVPAFramework (1.4.3 - 1.4.3) /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff843c5000 - 0x7fff846caff3 com.apple.HIToolbox (2.1.1 - 758.7) <6711FAA9-904A-3B49-9665-FC8D13B93C42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff846cb000 - 0x7fff846ceff7 com.apple.Mangrove (1.0 - 1) <6326024D-5C8D-3F59-9468-ACA1E01BC70C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff846cf000 - 0x7fff84707fff com.apple.RemoteViewServices (2.0 - 99) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff8470d000 - 0x7fff84723ff7 libsystem_asl.dylib (267) /usr/lib/system/libsystem_asl.dylib
0x7fff84724000 - 0x7fff8473eff3 com.apple.Ubiquity (1.3 - 313) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff8473f000 - 0x7fff84aaafff com.apple.VideoToolbox (1.0 - 1562.235) <0E996B8C-BE1C-3749-ACCA-DACBC89AFABB> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff84aab000 - 0x7fff84bbaff3 com.apple.desktopservices (1.9.3 - 1.9.3) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff84c22000 - 0x7fff84c24ffb libCGXType.A.dylib (779.11) <51607E77-F183-3CC2-A78C-238AFBDF6262> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff84c25000 - 0x7fff84c29fff libspindump.dylib (182.4) <929670EB-4963-3496-AD24-8B50E388803C> /usr/lib/libspindump.dylib
0x7fff84c2a000 - 0x7fff84c2cfff libCVMSPluginSupport.dylib (11.1.2) <6EFEC4A6-2EAC-3C27-820E-C28BE71B9FCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff84c2d000 - 0x7fff84c32fff libsystem_stats.dylib (163.20.16) /usr/lib/system/libsystem_stats.dylib
0x7fff84c33000 - 0x7fff84c3bff3 com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <84F79D3E-7B5E-3C93-8479-35794A3F125E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff84d34000 - 0x7fff84d37ff7 libdyld.dylib (353.2.1) <9EACCA38-291D-38CC-811F-7E9D1451E2D3> /usr/lib/system/libdyld.dylib
0x7fff84d38000 - 0x7fff84d3cfff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff84d3f000 - 0x7fff84d67fff libRIP.A.dylib (779.11) <88434DA0-B6B8-304A-9DC0-41D3947E8734> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff84daa000 - 0x7fff84eceff7 com.apple.LaunchServices (644.56 - 644.56) <20AABB1C-9319-3E4D-A024-51B0DD5FCD3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff84f3d000 - 0x7fff84f65fff libsystem_info.dylib (459.20.1) /usr/lib/system/libsystem_info.dylib
0x7fff84f66000 - 0x7fff84f8cfff com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff84f8d000 - 0x7fff84f95ff7 com.apple.icloud.FindMyDevice (1.0 - 1) <9CE67F85-2BA8-3093-97BA-07BF5C04A5D6> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
0x7fff84f96000 - 0x7fff84ff1ff7 libTIFF.dylib (1237) <690B205E-55D9-3F2C-B4EA-78B1AC3D3231> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff84ff2000 - 0x7fff85003ff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff85004000 - 0x7fff85011ff3 com.apple.ProtocolBuffer (1 - 228.0.1) <3429EB06-9F0E-355F-B9AB-F72879177398> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff85013000 - 0x7fff85030fff com.apple.MultitouchSupport.framework (263.9.1 - 263.9.1) <6ABD3AE2-DF6A-3AB2-994B-9C0FB42CE2B7> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff858ba000 - 0x7fff85a1bfff com.apple.avfoundation (2.0 - 889.210) <0CFF0D47-7C6B-388E-87BD-404F43A6B1E0> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff85a1c000 - 0x7fff85aa0fff com.apple.PerformanceAnalysis (1.0 - 1) <599AED3E-B689-3C40-8B91-93AD36C97658> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff85abb000 - 0x7fff85b33ff7 com.apple.SystemConfiguration (1.14 - 1.14) <06A8405D-53BA-30A9-BA8A-222099176091> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff85b6a000 - 0x7fff85b78ff7 com.apple.opengl (11.1.2 - 11.1.2) <864B35BF-1E76-382B-8D5F-38C7282621E6> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff85bdc000 - 0x7fff85c01ff7 libPng.dylib (1237) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff85c43000 - 0x7fff85c49ff7 com.apple.XPCService (2.0 - 1) /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff85c76000 - 0x7fff85cc2fff com.apple.corelocation (1486.17 - 1615.24) <8825B3E2-E053-3E01-AE31-793443962D06> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff85cc3000 - 0x7fff85db5ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff85db6000 - 0x7fff85dc1ff7 libcsfde.dylib (471.20.7) <44E51549-CECC-3C7B-867B-01901CA9C756> /usr/lib/libcsfde.dylib
0x7fff85e8a000 - 0x7fff85eb5fff com.apple.DictionaryServices (1.2 - 229) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff85eb6000 - 0x7fff85faafff libFontParser.dylib (134.2) <9F57B025-AB9C-31DD-9D54-2D7AB1298885> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff86004000 - 0x7fff8601dffb com.apple.openscripting (1.4 - 162.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff86056000 - 0x7fff8605bff7 libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib
0x7fff8605c000 - 0x7fff8606fff7 com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff86070000 - 0x7fff86162fff libxml2.2.dylib (26) /usr/lib/libxml2.2.dylib
0x7fff861a2000 - 0x7fff8628cff7 com.apple.QuickLookUIFramework (5.0 - 675.42) <86EE3D40-4554-3813-8C8B-B583A5F6F7E3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff862a4000 - 0x7fff863ccff7 com.apple.coreui (2.1 - 308.6) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff863d8000 - 0x7fff86515fff com.apple.ImageIO.framework (3.3.0 - 1237) <138A800C-14B7-36C2-AB04-E162602C97E3> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff86518000 - 0x7fff86549ff7 com.apple.ProtectedCloudStorage (1.0 - 1) /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff86579000 - 0x7fff86583ff7 com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff86584000 - 0x7fff865ebffb com.apple.datadetectorscore (6.0 - 396.1.1) <9B0B3198-DDBE-36C0-8BA9-3EC89C725282> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff865ec000 - 0x7fff865f3ff7 libCGCMS.A.dylib (779.11) <5D33FF8C-AC74-3B7B-A602-4AA470FEAF79> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x7fff865f4000 - 0x7fff8663eff7 com.apple.HIServices (1.22 - 522.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff8663f000 - 0x7fff86900ff7 com.apple.WebKit (10600 - 10600.5.17) <5724ED63-1C75-3090-B60A-DA484A9DBDE2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x7fff86901000 - 0x7fff86903fff libsystem_configuration.dylib (699.1.5) <20F3B077-179D-3CB0-A3C1-C8602D53B4DB> /usr/lib/system/libsystem_configuration.dylib
0x7fff86904000 - 0x7fff86a93fff libGLProgrammability.dylib (11.1.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff86a94000 - 0x7fff86b00ff3 com.apple.MMCS (1.3 - 327.5) /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
0x7fff86b01000 - 0x7fff86b12fff libsystem_coretls.dylib (35.20.2) <6084A531-2523-39F8-B030-811FA1A32FB5> /usr/lib/system/libsystem_coretls.dylib
0x7fff86b13000 - 0x7fff86b1efff com.apple.AppSandbox (4.0 - 238.20.2) /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff86b55000 - 0x7fff86c2bff3 com.apple.DiskImagesFramework (10.10.1 - 396) <1149D3E1-CC6C-3177-916D-2BE066DC9344> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff86c5f000 - 0x7fff86c65ff7 libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
0x7fff86c66000 - 0x7fff86c6bff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff86c6c000 - 0x7fff86cb9ff7 com.apple.print.framework.PrintCore (10.3 - 451.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff86cba000 - 0x7fff86f24ff7 com.apple.security (7.0 - 57031.20.26) <6568520A-587D-3167-BB79-60CE6FEADC64> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff86f25000 - 0x7fff87415fff com.apple.MediaToolbox (1.0 - 1562.235) <9813E9A6-5BD6-3E56-9D20-0023703D5096> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff87416000 - 0x7fff87441ff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
0x7fff87442000 - 0x7fff8746ffff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff87470000 - 0x7fff87757ffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <8953580E-7857-33B2-AA64-98296830D3A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff87758000 - 0x7fff8781bff7 libvMisc.dylib (516) <21497A28-8DCB-3EB8-BDAC-93C93382B0AA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff8781c000 - 0x7fff8781dff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff8781e000 - 0x7fff87821ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff878a7000 - 0x7fff878fbfff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff878fc000 - 0x7fff878feff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff878ff000 - 0x7fff8791bff7 libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
0x7fff87929000 - 0x7fff87975ff7 libcups.2.dylib (408.2) /usr/lib/libcups.2.dylib
0x7fff87976000 - 0x7fff87abdffb com.apple.WebKitLegacy (10600 - 10600.5.17) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
0x7fff87abe000 - 0x7fff87ac9ff7 com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff87aca000 - 0x7fff87b27fff com.apple.QuickLookFramework (5.0 - 675.42) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff87b28000 - 0x7fff87c3ffe7 libvDSP.dylib (516) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff87c40000 - 0x7fff87cc1ff7 com.apple.CoreUtils (1.1 - 110.1) /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff87cc4000 - 0x7fff87cccffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff87ccd000 - 0x7fff87ccffff com.apple.SecCodeWrapper (4.0 - 238.20.2) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff87cd0000 - 0x7fff88068ff7 com.apple.CoreFoundation (6.9 - 1153.18) <5C0892B8-9691-341F-9279-CA3A74D59AA0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff8809a000 - 0x7fff88106fff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <5E228544-77A9-3AA5-8355-E8F6626F50E7> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff881a4000 - 0x7fff884d5fff com.apple.Foundation (6.9 - 1153.20) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff884ff000 - 0x7fff88507fe7 libcldcpuengine.dylib (2.4.5) <0E9B5292-1EBC-379D-A706-83A27C05D742> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff8852c000 - 0x7fff886dcff3 com.apple.QuartzCore (1.10 - 361.18) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff886dd000 - 0x7fff8875bfff com.apple.CoreServices.OSServices (640.4 - 640.4) <20121A5E-7AB5-3624-8CF0-3562F97C8A95> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8875c000 - 0x7fff8875cfff libOpenScriptingUtil.dylib (162.1) /usr/lib/libOpenScriptingUtil.dylib
0x7fff8875d000 - 0x7fff88798fff com.apple.Symbolication (1.4 - 56045) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff88799000 - 0x7fff887b5fff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff887b6000 - 0x7fff887edffb com.apple.LDAPFramework (2.4.28 - 194.5) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff887ee000 - 0x7fff887f7ff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff888b5000 - 0x7fff888befff libGFXShared.dylib (11.1.2) <0BAF2EA8-3BC4-3BF4-ABB6-A6E0A1F3F6A5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff8897f000 - 0x7fff88b7946f libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
0x7fff88b7a000 - 0x7fff88c3aff7 com.apple.backup.framework (1.6.4 - 1.6.4) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff88c3b000 - 0x7fff88c3cfff liblangid.dylib (117) /usr/lib/liblangid.dylib
0x7fff88cf7000 - 0x7fff88d16fff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff88d17000 - 0x7fff88d19fff libRadiance.dylib (1237) <8F1E898B-74F6-3242-B929-CAF58AFCE319> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff88d1a000 - 0x7fff88d65fff com.apple.CloudDocs (1.0 - 321.6) <4C54EDB7-4377-3722-8C47-F3C3D260FCBA> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff88d66000 - 0x7fff88d8bff7 libJPEG.dylib (1237) <8AC8EFA6-2283-3725-9F28-01537DF51766> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff88d8c000 - 0x7fff88ecefff libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
0x7fff89037000 - 0x7fff8903cffb libheimdal-asn1.dylib (398.10.1) /usr/lib/libheimdal-asn1.dylib
0x7fff89153000 - 0x7fff89183ff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff89184000 - 0x7fff8919fff7 libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib
0x7fff89426000 - 0x7fff8944aff7 com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff8944b000 - 0x7fff8944bfff com.apple.WebKit2 (10600 - 10600.5.17) /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
0x7fff89478000 - 0x7fff894a7ff7 com.apple.CoreServicesInternal (221.7.2 - 221.7.2) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff894a8000 - 0x7fff894ccff7 com.apple.Sharing (328.16 - 328.16) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff894fd000 - 0x7fff89504ff7 libcompiler_rt.dylib (35) /usr/lib/system/libcompiler_rt.dylib
0x7fff8951e000 - 0x7fff89522fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib
0x7fff89523000 - 0x7fff89523ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff89524000 - 0x7fff8953eff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff8953f000 - 0x7fff8953ffff com.apple.CoreServices (62 - 62) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff8956e000 - 0x7fff895cdfff com.apple.AE (681.2 - 681.2) <181B3B06-2DC6-3E4D-B44A-2551C5E9CF6F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff895ce000 - 0x7fff895e3ff7 com.apple.AppContainer (4.0 - 238.20.2) <2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff8969c000 - 0x7fff897b5ffb com.apple.CoreText (352.0 - 454.6) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff897bf000 - 0x7fff897f8fff com.apple.AirPlaySupport (2.0 - 215.18) <6AF8E973-3643-3FEE-AA8F-541B9F093EEE> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
0x7fff897f9000 - 0x7fff897f9fff com.apple.quartzframework (1.5 - 1.5) <26C982A3-2FC3-3F50-B5F4-3C545C3BAC10> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff89896000 - 0x7fff89dabffb com.apple.JavaScriptCore (10600 - 10600.5.10) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff89dac000 - 0x7fff89dd4fff libxpc.dylib (559.20.9) /usr/lib/system/libxpc.dylib
0x7fff89dd5000 - 0x7fff89e6bff7 com.apple.cloudkit.CloudKit (283.67.2 - 283.67.2) <79F5AD38-61D5-30E6-96DC-974351D4195B> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff89f02000 - 0x7fff8a42bfff com.apple.QuartzComposer (5.1 - 332) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff8a42c000 - 0x7fff8a45cfff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff8a45d000 - 0x7fff8a4acff7 com.apple.opencl (2.4.2 - 2.4.2) <4A9574ED-15CF-3EBB-B4C0-D30F644D6C74> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8a55f000 - 0x7fff8a565fff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff8a566000 - 0x7fff8a56dfff com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff8a56e000 - 0x7fff8a5a0ff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff8a5a1000 - 0x7fff8a62dff7 libsystem_c.dylib (1044.10.1) <86FBED7A-F2C8-3591-AD6F-486DD57E6B6A> /usr/lib/system/libsystem_c.dylib
0x7fff8a691000 - 0x7fff8a69afff libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
0x7fff8a69b000 - 0x7fff8a69bff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff8a6c0000 - 0x7fff8a6c0ff7 liblaunch.dylib (559.20.9) /usr/lib/system/liblaunch.dylib
0x7fff8a6c1000 - 0x7fff8a9c3ffb com.apple.GeoServices (1.0 - 1077.0.18) <2BBF8B44-DD46-3432-8C84-6D6AA004C233> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff8a9d0000 - 0x7fff8ab7ffff GLEngine (11.1.2) <68FDFD73-F15C-3460-9984-10F5DEF79907> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
0x7fff8ab87000 - 0x7fff8ab8afff com.apple.xpc.ServiceManagement (1.0 - 1) <9E025823-660A-30C5-A568-223BD595B6F7> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff8ab8d000 - 0x7fff8abcefff libGLU.dylib (11.1.2) <4C54F0D1-2ADC-38A0-92D1-F479E9B99355> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff8b56f000 - 0x7fff8b611fff com.apple.Bluetooth (4.3.4 - 4.3.4f4) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff8b637000 - 0x7fff8b71bfff libcrypto.0.9.8.dylib (52.20.2) <977DA067-2588-3BF8-A7B2-F08FC6E9088F> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8b71c000 - 0x7fff8b769ff3 com.apple.CoreMediaIO (601.0 - 4760) /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff8b76a000 - 0x7fff8b801fff com.apple.CoreMedia (1.0 - 1562.235) <21EB4AB6-2DBC-326B-B17E-E88BAA9E9200> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff8b802000 - 0x7fff8b80ffff libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib
0x7fff8b82c000 - 0x7fff8c087ff3 com.apple.CoreGraphics (1.600.0 - 779.11) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff8c088000 - 0x7fff8c12ffff com.apple.PDFKit (3.1 - 3.1) <717B6DB9-4C81-3326-AFB7-6B003FBF1311> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff8c130000 - 0x7fff8c14dffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff8c164000 - 0x7fff8c1b5fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <450293F7-DAE7-3DD0-8F7C-71FC2FD72627> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff8c2ae000 - 0x7fff8c3a1ff7 libJP2.dylib (1237) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff8c3a2000 - 0x7fff8c3a4fff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff8c732000 - 0x7fff8c744ff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff8c754000 - 0x7fff8c7c3fff com.apple.SearchKit (1.4.0 - 1.4.0) <80883BD1-C9BA-3794-A20E-476F94DD89A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff8c7c4000 - 0x7fff8c7d3fff com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff8c7d4000 - 0x7fff8c7dfff7 com.apple.CrashReporterSupport (10.10 - 631) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff8c84b000 - 0x7fff8c8b2ff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff8c8f2000 - 0x7fff8c960ffb com.apple.Heimdal (4.0 - 2.0) <7697A837-98B8-3BDB-A7D2-8ED4C9ABC510> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8c961000 - 0x7fff8c9a7ff7 libauto.dylib (186) /usr/lib/libauto.dylib
0x7fff8c9a8000 - 0x7fff8ca39ff7 libCoreStorage.dylib (471.20.7) /usr/lib/libCoreStorage.dylib
0x7fff8ca3a000 - 0x7fff8ca3efff com.apple.CommonPanels (1.2.6 - 96) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff8cb1a000 - 0x7fff8cb43ffb libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib
0x7fff8cb44000 - 0x7fff8cb4dfff com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff8cc7d000 - 0x7fff8cc86ff3 com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff8cf08000 - 0x7fff8cf40fff libsystem_network.dylib (412.20.3) <589A5F67-BE2A-3245-A181-0ECC9B53EB00> /usr/lib/system/libsystem_network.dylib
0x7fff8cf41000 - 0x7fff8cf41fff com.apple.Accelerate (1.10 - Accelerate 1.10) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8cf42000 - 0x7fff8cf6dfff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
0x7fff8d032000 - 0x7fff8d03eff7 com.apple.OpenDirectory (10.10 - 187) <1E07769D-68DE-3BF2-8E9E-A1E98BF70D1B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff8d03f000 - 0x7fff8d04aff7 libkxld.dylib (2782.20.48) <28EF8328-E3E2-336A-974B-FB1BF119D55A> /usr/lib/system/libkxld.dylib
0x7fff8d04b000 - 0x7fff8d258ff3 com.apple.CFNetwork (720.3.13 - 720.3.13) <69E15385-5784-3912-88F6-03B16F1C1A5C> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8d277000 - 0x7fff8d2e8ffb com.apple.ApplicationServices.ATS (360 - 375.2) <2338AF23-528F-359A-847F-8B04E49E2B84> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff8d461000 - 0x7fff8d4d5ffb com.apple.securityfoundation (6.0 - 55126) <42589E18-D38C-3E25-B638-6E29740C224C> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff8d5dc000 - 0x7fff8d62fffb libAVFAudio.dylib (118.6) <2441D4C1-D8FB-3DA9-9DD7-914E03413882> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff8d630000 - 0x7fff8d638ff7 com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff8d639000 - 0x7fff8d663ff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
0x7fff8d664000 - 0x7fff8d6f8fff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff8d6f9000 - 0x7fff8d6fbfff libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib
0x7fff8d6fc000 - 0x7fff8d716ff7 libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib
0x7fff8d717000 - 0x7fff8d724ff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff8d729000 - 0x7fff8d86dff7 com.apple.QTKit (7.7.3 - 2890) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff8d86e000 - 0x7fff8d879fff libGL.dylib (11.1.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff8d87a000 - 0x7fff8d8b4ffb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff8d9d0000 - 0x7fff8dc4fff7 com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8dc69000 - 0x7fff8e7eaff7 com.apple.AppKit (6.9 - 1347.57) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff8f135000 - 0x7fff8f152fff libsystem_kernel.dylib (2782.20.48) /usr/lib/system/libsystem_kernel.dylib
0x7fff8f153000 - 0x7fff8f153fff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff8f154000 - 0x7fff8f1a3ff7 libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
0x7fff8f1a4000 - 0x7fff8f1a9ff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff8f1e2000 - 0x7fff8f1f8ff7 com.apple.CoreMediaAuthoring (2.2 - 951) /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff8f1f9000 - 0x7fff8f1fbfff com.apple.EFILogin (2.0 - 2) <3BA837D8-94F5-3240-9CF7-E40DC2808446> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff8f1fc000 - 0x7fff8f1fdff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff8f23f000 - 0x7fff8f2c8ff7 com.apple.CoreSymbolication (3.1 - 57020.1) <85707039-0C8A-3409-B0B5-153431CC1841> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff8f2c9000 - 0x7fff8f384ff7 com.apple.DiscRecording (9.0 - 9000.4.2) <4655B4B8-523D-3AE6-92A0-8486A2258B3B> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff8f67f000 - 0x7fff8f71ee27 com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff8f79e000 - 0x7fff8f7b0ff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff8fa69000 - 0x7fff8fafeff7 com.apple.ColorSync (4.9.0 - 4.9.0) <9150C2B7-2E6E-3509-96EA-7B3F959F049E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff8fb1e000 - 0x7fff8fb90fff com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff8fb91000 - 0x7fff8fbd1ff7 libGLImage.dylib (11.1.2) <260A4BF3-DC45-369C-A0CD-B667F9D17179> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff8fc10000 - 0x7fff8ffe7fe7 com.apple.CoreAUC (211.1.0 - 211.1.0) <12645629-E065-388E-A6B5-094A240578CE> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff8ffe8000 - 0x7fff8ffe8fff com.apple.Cocoa (6.8 - 21) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff8ffe9000 - 0x7fff90150ffb com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff90151000 - 0x7fff90151fff com.apple.audio.units.AudioUnit (1.12 - 1.12) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff90165000 - 0x7fff90168fff com.apple.IOSurface (97.4 - 97.4) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff90211000 - 0x7fff90341fff com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff90342000 - 0x7fff90353fff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff90354000 - 0x7fff9037efff GLRendererFloat (11.1.2) <87953360-E0E4-3523-8EC3-2062C26C7FD2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x7fff90406000 - 0x7fff9040afff com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff9041b000 - 0x7fff90420fff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff90421000 - 0x7fff90422fff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff90423000 - 0x7fff90429fff libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib
0x7fff9042a000 - 0x7fff9042afff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff9042b000 - 0x7fff9055dff7 com.apple.MediaControlSender (2.0 - 215.18) <86E901A7-64C3-3D2C-BBD4-E385405831D3> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff9055e000 - 0x7fff9055efff com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff9055f000 - 0x7fff90562fff com.apple.help (1.3.3 - 46) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff90563000 - 0x7fff905bdff7 com.apple.LanguageModeling (1.0 - 1) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff905be000 - 0x7fff90a11fc7 com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff90a12000 - 0x7fff90a14ff3 com.apple.SafariServices.framework (10600 - 10600.5.17) <55E7D2A9-802C-36E9-9D38-A2D34107740D> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff90a15000 - 0x7fff90a1dfff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff90a2b000 - 0x7fff90a78fff com.apple.ImageCaptureCore (6.3 - 6.3) <44B6E670-16ED-3C81-9E8D-34543CD71273> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff90a79000 - 0x7fff90a7afff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff90a7b000 - 0x7fff90b09ff7 com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff90b0a000 - 0x7fff90f3afff com.apple.vision.FaceCore (3.1.6 - 3.1.6) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff90f3b000 - 0x7fff91120ff7 libicucore.A.dylib (531.48) <3CD34752-B1F9-31D2-865D-B5B0F0BE3111> /usr/lib/libicucore.A.dylib
0x7fff911bb000 - 0x7fff911bfff7 libGIF.dylib (1237) <0990002D-CA11-325D-A432-3A333F2CC088> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff911c0000 - 0x7fff911f3fff com.apple.MediaKit (16 - 757.2) <2912E5C2-085F-3FE2-8531-23B6E894B0F0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff911f4000 - 0x7fff9120dff7 com.apple.CFOpenDirectory (10.10 - 187) <790ED527-EFD2-3EA6-8C97-A8C04E96EBA7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff9120e000 - 0x7fff9123afff libsandbox.1.dylib (358.20.5) /usr/lib/libsandbox.1.dylib
0x7fff9123b000 - 0x7fff912b1fe7 libcorecrypto.dylib (233.1.2) /usr/lib/system/libcorecrypto.dylib
0x7fff912b2000 - 0x7fff912ccff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff912e9000 - 0x7fff91319fff com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff9138b000 - 0x7fff9138dff7 com.apple.securityhi (9.0 - 55006) <5DB5773C-FC07-302C-98FE-4B80D88D481A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff913d0000 - 0x7fff917ddff7 libLAPACK.dylib (1128) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff917de000 - 0x7fff917e9fff libcommonCrypto.dylib (60061) /usr/lib/system/libcommonCrypto.dylib
0x7fff9192b000 - 0x7fff91c5eff7 libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib
0x7fff91c5f000 - 0x7fff91dedfff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff91e63000 - 0x7fff92e25ffb com.apple.WebCore (10600 - 10600.5.17) <587F71B3-28E7-3EBC-87B3-1F5E1D8C1349> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x7fff92e26000 - 0x7fff92e28ff7 libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
0x7fff92e3f000 - 0x7fff92e40fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff92e41000 - 0x7fff92e4eff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff92e4f000 - 0x7fff92e53fff libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff92e54000 - 0x7fff92e66ff7 libsasl2.2.dylib (194.1) <35371406-75EF-304A-A073-956C40373555> /usr/lib/libsasl2.2.dylib
0x7fff92e67000 - 0x7fff92e7eff7 libLinearAlgebra.dylib (1128) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff92eae000 - 0x7fff92ef4ff7 libFontRegistry.dylib (134.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff92ef5000 - 0x7fff92ef7fff com.apple.loginsupport (1.0 - 1) /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff92ef8000 - 0x7fff92efafff libsystem_sandbox.dylib (358.20.5) <4CF77128-6BE0-3958-B646-707FA9CE61B2> /usr/lib/system/libsystem_sandbox.dylib
0x7fff92efb000 - 0x7fff92f0bff7 libbsm.0.dylib (34) /usr/lib/libbsm.0.dylib
0x7fff93276000 - 0x7fff932c4fff libcurl.4.dylib (83.1.2) <462767FC-C7F2-39F1-8C10-DA4114945F55> /usr/lib/libcurl.4.dylib
0x7fff932c5000 - 0x7fff93363fff com.apple.Metadata (10.7.0 - 917.35) <8CBD1D32-4F4B-3F9A-AC65-76F2B5376FBF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff939ce000 - 0x7fff939cfffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff939d0000 - 0x7fff939d8fff libMatch.1.dylib (24) /usr/lib/libMatch.1.dylib
0x7fff939d9000 - 0x7fff939f9fff com.apple.IconServices (47.1 - 47.1) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff93a19000 - 0x7fff93a1aff3 libSystem.B.dylib (1213) /usr/lib/libSystem.B.dylib
0x7fff93a1b000 - 0x7fff93a23fff libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
0x7fff93a24000 - 0x7fff93c8eff7 com.apple.imageKit (2.6.1 - 848) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff93cc2000 - 0x7fff93d13ff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff93d14000 - 0x7fff93d35fff com.apple.framework.Apple80211 (10.3 - 1030.71.6) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff93d36000 - 0x7fff94005ff3 com.apple.CoreImage (10.3.4) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff94006000 - 0x7fff94041fff com.apple.QD (301 - 301) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 2 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: 1409 thread_create: 1 thread_set_state: 0
VM Region Summary: ReadOnly portion of Libraries: Total=265.2M resident=127.6M(48%) swapped_out_or_unallocated=137.7M(52%) Writable regions: Total=1.3G written=211.4M(16%) resident=230.5M(17%) swapped_out=18.9M(1%) unallocated=1.1G(83%)
REGION TYPE VIRTUAL =========== ======= CG shared images 144K CoreAnimation 8124K CoreServices 100K Dispatch continuations 4096K JS JIT generated code 8K JS JIT generated code (reserved) 1.0G reserved VM address space (unallocated) Kernel Alloc Once 8K MALLOC 179.3M MALLOC (admin) 32K Memory Tag 240 338.2M Memory Tag 242 12K Memory Tag 251 36K STACK GUARD 56.0M Stack 15.2M Stack (reserved) 520K reserved VM address space (unallocated) VM_ALLOCATE 31.2M WebKit Malloc 1032K DATA 25.5M GLSLBUILTINS 2588K IMAGE 528K LINKEDIT 71.1M TEXT 194.1M UNICODE 552K mapped file 50.7M shared memory 4K =========== ======= TOTAL 2.0G TOTAL, minus reserved VM space 978.2M
So maybe if somebody has been testing stuff build by Crossbridge on OS X lately...did you get any issues etc. or any ideas how to debug this further (I'll be trying to build more simple tests trying to isolate whatever might be wrong). Thanks!