RunModalForDirector crashes with Program received signal:  "EXC_BAD_ACCESS"

I am new to objective-c programming and I am trying to fix a bug in some existing code. So apologies if the solution to my problem is simple.
The following section of code crashes with a Program received signal: “EXCBADACCESS” error message when trying to open a window and I don't know why.
[oPanel runModalForDirectory:nil file:nil types:fileTypes]
in the following function:
NSString * SelectDirectory()
NSString* fname;
fname = nil;
// printf("loading files\n");
NSArray *fileTypes = [NSArray arrayWithObjects:@"asc", nil];
// Create the File Open Panel class.
NSOpenPanel* oPanel = [NSOpenPanel openPanel];
[oPanel setCanChooseDirectories:YES];
[oPanel setCanChooseFiles:NO];
[oPanel setCanCreateDirectories:YES];
[oPanel setAllowsMultipleSelection:NO];
[oPanel setAlphaValue:0.95];
[oPanel setTitle:@"Select a directory to open"];
// Display the dialog. If the OK button was pressed, process the files.
if ( [oPanel runModalForDirectory:nil file:nil types:fileTypes] == NSOKButton )
NSLog(@"fname before assignment: %@",fname);
// Get an array containing the full filenames of all files and directories selected.
fname = [oPanel filename];
NSLog(@"fname after assignment: %@",fname);
else
fname = nil;
// printf("No directory Selected");
return (fname);
And the output from backtrace is:
gdb) backtrace
#0 0x005f7733 in gleRunVertexSubmitImmediate ()
#1 0x005f554a in gleLLVMArrayFunc ()
#2 0x005f554a in gleLLVMArrayFunc ()
#3 0x005f54d7 in gleSetVertexArrayFunc ()
#4 0x005d079a in gleDrawArraysOrElements_ExecCore ()
#5 0x005d2c8d in gleDrawArraysOrElementsVBOExec ()
#6 0x95609aa4 in glDrawElements ()
#7 0x00019521 in -[MyFooGLView drawRect:] (self=0x1ab740, _cmd=0x962df5d0, rect={origin = {x = 406, y = 0}, size = {width = 275, height = 5}}) at /Users/kinglab/Desktop/C3.3.5/MyFooGLView.m:2443
#8 0x97779bf8 in -[NSView _drawRect:clip:] ()
#9 0x97777469 in -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] ()
#10 0x97777e9f in -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] ()
#11 0x97777e9f in -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] ()
#12 0x97776987 in -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] ()
#13 0x977734ab in -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] ()
#14 0x976b3e7b in -[NSView displayIfNeeded] ()
#15 0x976b3a29 in -[NSWindow displayIfNeeded] ()
#16 0x976b384c in _handleWindowNeedsDisplay ()
#17 0x95c31772 in __CFRunLoopDoObservers ()
#18 0x95c32acc in CFRunLoopRunSpecific ()
#19 0x95c33aa8 in CFRunLoopRunInMode ()
#20 0x96f2a2ac in RunCurrentEventLoopInMode ()
#21 0x96f29ffe in ReceiveNextEventCommon ()
#22 0x96f29f39 in BlockUntilNextEventMatchingListInMode ()
#23 0x976b16d5 in _DPSNextEvent ()
#24 0x976b0f88 in -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] ()
#25 0x978ee38d in -[NSApplication _realDoModalLoop:peek:] ()
#26 0x978e8acb in -[NSApplication runModalForWindow:] ()
#27 0x978d9bb6 in -[NSSavePanel(NSSavePanelRuntime) runModalForDirectory:file:types:] ()
#28 0x00004794 in SelectDirectory () at /Users/kinglab/Desktop/C3.3.5/FracController.m:42
#29 0x0000ecb5 in -[MyFooGLView LoadSurfBut:] (self=0x1ab740, _cmd=0x2db85, sender=0x12a130) at /Users/kinglab/Desktop/C3.3.5/MyFooGLView.m:633
#30 0x97782e8f in -[NSApplication sendAction:to:from:] ()
#31 0x97782dcc in -[NSControl sendAction:to:] ()
#32 0x97782c52 in -[NSCell _sendActionFrom:] ()
#33 0x977822ab in -[NSCell trackMouse:inRect:ofView:untilMouseUp:] ()
#34 0x97781afe in -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] ()
#35 0x977813b8 in -[NSControl mouseDown:] ()
#36 0x9777faf7 in -[NSWindow sendEvent:] ()
#37 0x9774c6a5 in -[NSApplication sendEvent:] ()
#38 0x976a9fe7 in -[NSApplication run] ()
#39 0x976771d8 in NSApplicationMain ()
#40 0x0000202c in main (argc=1, argv=0xbfffe7cc) at /Users/kinglab/Desktop/C3.3.5/main.m:15

The problem doesn't seem to be with SelectDirectory(), it is with MyFooGLView. Perhaps that view is trying to do something that requires the event loop but you have it locked up in your modal dialog. Try using callbacks in a modeless dialog instead.

Similar Messages

  • Program received signal:  "EXC_BAD_ACCESS". error

    I get this error sometimes when I test application on device.
    Program received signal: “EXCBADACCESS”.
    Why this error occurs and how can it be resolved ?
    Thanks for help.

    sURBHIT Mehrotra wrote:
    why this problem doesn't occur on simulator. ?? ??
    Simulators never have 100% fidelity. If you are developing on a simulator you have to be extra careful that you are doing everything perfectly. Many developers just assume that code is correct when it appears to work properly. That logic fails when you are developing on a simulator.
    There is no easy answer. You need to review your code much more carefully.

  • Kdevelop + GDB + QT = Program received signal SIGTRAP

    Hi there!
    I installed Arch Linux a few days ago and I got back to work on some of my projects.
    I'm programming an application which uses QT 4.3.3 with KDevelop and it runs
    just fine but when I try to debug it I always get an error message saying
    "Program received signal SIGTRAP" and after that the debugger (gdb) stops responding
    without giving any further error messages. I don't think it's an application source problem
    since with Ubuntu I could debug everything without any problem.
    I noticed that if I start gdb from the command line to do the same operations
    the program flows without problems.
    Why doesn't gdb work in Kdevelop? Do I have to configure something?
    Thx for your help
    PS. The program in built in debug mode.
    PS2.
    Program received signal SIGTRAP, Trace/breakpoint trap.
    0xb7f67d81 in malloc () from /lib/ld-linux.so.2
    The program being debugged was signaled while in a function called from GDB.
    GDB remains in the frame where the signal was received.
    To change this behavior use "set unwindonsignal on"
    Evaluation of the expression containing the function (malloc) will be abandoned.
    Last edited by pazioman (2008-04-28 18:24:46)

    SOLVED.
    It seems that there is some problem with Archlinux default kernel (I think it is 2.6.24-ARCH).
    After upgrading to 2.6.25 the problem disappeared. I don't know if it is something related to the kernel itself
    or some options disabled.Now, how can i signal this bug?

  • Program Received Signal: "SIGABRT"

    Hi, I am currently using Xcode 4.2 for Lion. I am using a normal Window-based application with a tab-bar for iPhone and iPad. Up until now, I haven't had any problems with this, but when I tried testing my app on an iPhone, I seem to be getting this message/error:
    Thread 1: Program received signal: "SIGABRT"
    And the thread that is being highlighted is
        int retVal = UIApplicationMain(argc, argv, nil, nil);
    Normally when I get this error, it turns out that the problem is I have deleted an IBOutlet or IBAction in a header but not disconnected it in the XIB file. This time however, I have checked every XIB and found that there is no such problem.
    Also, whenever I run this program on the simulator, it seems to work fine, but once I run it on the iPhone it does this.
    It seems that the problem started after I insterted a link to the App Store, but even after deleting that, I am still having this problem.
    Any help would be greatly appreciated.

    hi, 
               if we change the XCode project file from lower version to update version this type of problems may occur. I have already faced this. you have to use the break points where the problem. Basically it is the problem for releasing the object memory... Find out where it is happening and use Copy / retain keywords..... May helpful...

  • PSE12 Crashes with "Program has stopped working"

    I am having the the same problem as is stated here http://forums.adobe.com/message/6040575#6040575. I can not try this solution because PSE12 does not stay up long enough for me to look for any IMPORTED TAGS in my catalog.
    I tried uninstalling it and reinstalling it but when I opened PSE12 after the reinstall it still knew were my catalog was and opened it and then crashed again. Why does the uninstall leave the catalog in place? I would have thought it would remove it along with every thing else. Now I have to uninstall it again and go through my folders and find anything that has PSE12 in the name and delete it by hand.
    This is getting very frustrating as I have not had more then 7 days of a functioning program before it starts to crash on me.
    I love PSE and have not had any problems with preveous releases until this one.
    Running on Windows 7 Home Premium SP1

    UPDATE: I uninstalled and reinstalled PSE12 (twice seeing as the uninstall does not get rid of everything it should) and as I was converting and checking all my catalogs for "Imported Tags" I got the "Program has stopped working" error message again. I give up. I want to get my sons money back for this program as he gave it to me as a Christms Present.
    I really wonder if anyone from Adobe ever looks at any thng here on these forums. So far I have not seen any evidence to suggest that they do. So far Adobe support sucks.
    Message was edited by: RayGoLXXV

  • [SOLVED] Gnome 3.8 apps crash with X Window System Error

    So far this applications are affected:
    - gnome-terminal (when clicking on menu)
    - gnome-control-center (when choosing Users or Date & Time and some other tiles, choosing account in GOA)
    - epiphany (when clicking on new tab button)
    They crash with following error in console:
    (gnome-control-center:12717): Gdk-ERROR **: The program 'gnome-control-center' received an X Window System error.
    This probably reflects a bug in the program.
    The error was 'BadImplementation (server does not implement operation)'.
    (Details: serial 3583 error_code 17 request_code 148 minor_code 46)
    (Note to programmers: normally, X errors are reported asynchronously;
    that is, you will receive the error a while after causing it.
    To debug your program, run it with the GDK_SYNCHRONIZE environment
    variable to change this behavior. You can then get a meaningful
    backtrace from your debugger if you break on the gdk_x_error() function.)
    dmesg show only this line:
    [14505.289265] traps: gnome-control-c[12717] trap int3 ip:7fc494139ead sp:7fff3986e5e0 error:0
    Running with gdb:
    Program received signal SIGTRAP, Trace/breakpoint trap.
    0x00007ffff13caead in g_logv () from /usr/lib/libglib-2.0.so.0
    (gdb) backtrace
    #0 0x00007ffff13caead in g_logv () from /usr/lib/libglib-2.0.so.0
    #1 0x00007ffff13cb092 in g_log () from /usr/lib/libglib-2.0.so.0
    #2 0x00007ffff2825e60 in ?? () from /usr/lib/libgdk-3.so.0
    #3 0x00007ffff2830801 in ?? () from /usr/lib/libgdk-3.so.0
    #4 0x00007ffff5332976 in _XError () from /usr/lib/libX11.so.6
    #5 0x00007ffff532fbc1 in ?? () from /usr/lib/libX11.so.6
    #6 0x00007ffff532fc05 in ?? () from /usr/lib/libX11.so.6
    #7 0x00007ffff5330495 in _XEventsQueued () from /usr/lib/libX11.so.6
    #8 0x00007ffff5332f28 in _XData32 () from /usr/lib/libX11.so.6
    #9 0x00007ffff530d46e in XChangeProperty () from /usr/lib/libX11.so.6
    #10 0x00007ffff283bcfb in ?? () from /usr/lib/libgdk-3.so.0
    #11 0x00007ffff2d4609c in ?? () from /usr/lib/libgtk-3.so.0
    #12 0x00007ffff2d4a8ca in gtk_window_set_icon_name () from /usr/lib/libgtk-3.so.0
    #13 0x000000000044ba23 in ?? ()
    #14 0x00007fffe3358eb8 in ffi_call_unix64 () from /usr/lib/libffi.so.6
    #15 0x00007fffe3358820 in ffi_call () from /usr/lib/libffi.so.6
    #16 0x00007ffff168ac98 in g_cclosure_marshal_generic () from /usr/lib/libgobject-2.0.so.0
    #17 0x00007ffff168a458 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
    #18 0x00007ffff169b40d in ?? () from /usr/lib/libgobject-2.0.so.0
    #19 0x00007ffff16a3219 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
    #20 0x00007ffff16a3462 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
    #21 0x000000000044d3bc in ?? ()
    #22 0x00007ffff168d2b0 in g_cclosure_marshal_VOID__BOXEDv () from /usr/lib/libgobject-2.0.so.0
    #23 0x00007ffff168a687 in ?? () from /usr/lib/libgobject-2.0.so.0
    #24 0x00007ffff16a2778 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
    #25 0x00007ffff16a3462 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
    #26 0x00007ffff2bf293c in ?? () from /usr/lib/libgtk-3.so.0
    My graphic card (iI guess this has something to do with xorg):
    AMD Mobility Radeon HD 4550 (using catalyst legacy driver 13.1 with Xorg 1.12)
    Last edited by szorti (2013-04-24 08:40:26)

    I did a little test:
    - upgraded to xorg 1.14
    - switched from catalyst to xf86-video-ati drive
    Most of the errors dissappeared (GOA still crashes).
    But now i can only see message tray using keyboard shortcut (super + m). I read that I need to move my mouse fast to the botton edge of my screen - does not work - instead it show up randomly when i moved mouse near the bottom edge.
    I don't want to use the open source drivers (slow and laggy with multi monitor setup I'm using). I hope gnome devs will fix this bugs soon.
    SOLUTION (to still use catalyst):
    I found out that this is an Xorg 1.12 bug.
    Bug: http://lists.debian.org/debian-x/2012/12/msg00133.html
    To solve this use patch from this bugreport to compile xorg 1.12
    I used this aur packages:
    1. https://aur.archlinux.org/packages/xf86 … evdev1.12/
    2. https://aur.archlinux.org/packages/xorg-server1.12/ - I have edited PKGBUILD to include patch from bug report above
    PKGBUILD and patch:
    https://gist.github.com/winglot/5450630
    Last edited by szorti (2013-04-24 08:40:10)

  • Qt5 applications crash with libxcb 1.9.3-1

    Let's take this simple Qt5 program:
    #include <QApplication>
    int main(int argc, char* argv[])
    QApplication app(argc, argv);
    Here is the backtrace:
    Program received signal SIGSEGV, Segmentation fault.
    0x00007ffff08c18f0 in ?? () from /usr/lib/qt/plugins/platforms/libqxcb.so
    (gdb) bt
    #0 0x00007ffff08c18f0 in ?? () from /usr/lib/qt/plugins/platforms/libqxcb.so
    #1 0x00007ffff08c1da8 in ?? () from /usr/lib/qt/plugins/platforms/libqxcb.so
    #2 0x00007ffff08bf3cc in ?? () from /usr/lib/qt/plugins/platforms/libqxcb.so
    #3 0x00007ffff08c0bc5 in ?? () from /usr/lib/qt/plugins/platforms/libqxcb.so
    #4 0x00007ffff08d06dc in ?? () from /usr/lib/qt/plugins/platforms/libqxcb.so
    #5 0x00007ffff6cd15dc in QPlatformIntegrationFactory::create(QString const&, QStringList const&, QString const&) () from /usr/lib/libQt5Gui.so.5
    #6 0x00007ffff6cd958a in QGuiApplicationPrivate::createPlatformIntegration()
    () from /usr/lib/libQt5Gui.so.5
    #7 0x00007ffff6cd9f55 in QGuiApplicationPrivate::createEventDispatcher() ()
    from /usr/lib/libQt5Gui.so.5
    #8 0x00007ffff67fce31 in QCoreApplication::init() ()
    from /usr/lib/libQt5Core.so.5
    #9 0x00007ffff67fcea6 in QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) () from /usr/lib/libQt5Core.so.5
    #10 0x00007ffff6cdaaf9 in QGuiApplication::QGuiApplication(QGuiApplicationPrivate&) () from /usr/lib/libQt5Gui.so.5
    #11 0x00007ffff770b0cd in QApplication::QApplication(int&, char**, int) ()
    from /usr/lib/libQt5Widgets.so.5
    #12 0x0000000000400653 in main ()
    If I use libxcb from [extra] (1.9.1), the Qt5 applications run as expected.
    I'm on x86_64, using qt5-base 5.1.1-5, libxcb 1.9.3-1.
    Last edited by SneakySnake (2013-11-11 08:45:44)

    I'm rebuilding Qt5. Anyway I think this could be a bug in xcb (looks like an API breakage to me).
    Reported: https://bugs.archlinux.org/task/37728

  • Various programs keep crashing with an error like Exception Type: EXC_BAD_ACCESS (SIGSEGV), and Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000000

    I have various programmes that crash across the board with a similar error code like the following. I remember I've had this before, also on my previous MacBook Pro. I already tested memory using two second party programmes, and the (new Apple diagnostics..., which doesn't provide an overview over what's been found/not found??). I would tend to exclude the possibility that my memory fails always after half a year into a new computer. A (non-clean) reinstall (which preserved settings now (since Yosemite??), did not offer any relief. I am very disinclined to do a complete, clean reinstall, as it would take me at least a week or two to get the computer back into my work flow. Cleaning caches etc. did likewise not offer relief... Any suggestions? what is this apple main-thread and how to debug it? Again, this happens to at least 12 different programmes.
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:      KERN_INVALID_ADDRESS at 0x0000000000000018
    Many thanks.

    Dear Linc,
    @1: I may have emptied since most of the crashes, I copy here what appears after entering search string: 'crash':
    07/01/2015 10:38:28.279 com.apple.xpc.launchd[1]: (com.apple.ReportCrash) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    07/01/2015 10:38:28.279 com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Self) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    07/01/2015 10:38:32.433 Cinch[331]: 6   CMCrashReporter                     0x00060be5 +[CMCrashReporterGlobal isRunningLeopard] + 25
    07/01/2015 10:38:38.586 Dropbox[339]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    07/01/2015 10:38:58.000 kernel[0]: Sandbox: assistantd(443) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 10:38:58.438 assistantd[443]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7f7f6a7402c0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 10:38:58.000 kernel[0]: Sandbox: com.apple.geod(445) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 10:38:58.504 com.apple.geod[445]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fb8b280da20 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 10:49:54.365 com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Root[495]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash.DirectoryService
    07/01/2015 13:22:12.042 assistantd[7077]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fdaf4201bb0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 13:22:12.219 sandboxd[280]: ([7077]) assistantd(7077) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 13:44:45.487 assistantd[8006]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7f9c0a41e160 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 13:44:45.741 sandboxd[280]: ([8006]) assistantd(8006) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 13:56:02.724 Things[8125]: Call stack:
      0   AppKit                              0x00007fff93a4ba9c -[NSThemeFrame addSubview:] + 107
      1   Things                              0x00000001079b95c1 Things + 710081
      2   Things                              0x0000000107926d50 Things + 109904
      3   AppKit                              0x00007fff933a4745 -[NSWindowTemplate nibInstantiate] + 567
      4   AppKit                              0x00007fff9337973b -[NSIBObjectData instantiateObject:] + 309
      5   AppKit                              0x00007fff9385bd01 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 452
      6   AppKit                              0x00007fff9336df05 loadNib + 384
      7   AppKit                              0x00007fff938dbf80 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 313
      8   AppKit                              0x00007fff938dc67d +[NSBundle(NSNibLoadingInternal) _loadNibFile:externalNameTable:options:withZone:] + 150
      9   AppKit                              0x00007fff935adfed -[NSWindowController loadWindow] + 313
      10  AppKit                              0x00007fff935b3684 -[NSWindowController window] + 80
      11  AppKit                              0x00007fff935b4821 -[NSWindowController showWindow:] + 36
      12  Things                              0x000000010799ef13 Things + 601875
      13  Things                              0x00000001079a7864 Things + 637028
      14  HockeySDK                           0x0000000107bb00f0 -[BITCrashReportManager startManager] + 371
      15  CoreFoundation                      0x00007fff89bf3cbc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
      16  CoreFoundation                      0x00007fff89ae51b4 _CFXNotificationPost + 3140
      17  Foundation                          0x00007fff92453ea1 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
      18  AppKit                              0x00007fff9339210b -[NSApplication _postDidFinishNotification] + 291
      19  AppKit                              0x00007fff93391e76 -[NSApplication _sendFinishLaunchingNotification] + 191
      20  AppKit                              0x00007fff9338ec76 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 574
      21  AppKit                              0x00007fff9338e6b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
      22  Foundation                          0x00007fff92473458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
      23  Foundation                          0x00007fff924732c9 _NSAppleEventManagerGenericHandler + 102
      24  AE                                  0x00007fff8c69e99c _Z20aeDispatchAppleEventPK6AEDescPS_jPh + 531
      25  AE                                  0x00007fff8c69e719 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 31
      26  AE                                  0x00007fff8c69e623 aeProcessAppleEvent + 295
      27  HIToolbox                           0x00007fff973b837e AEProcessAppleEvent + 56
      28  AppKit                              0x00007fff9338ad76 _DPSNextEvent + 2665
      29  AppKit                              0x00007fff93389e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
      30  AppKit                              0x00007fff9337de23 -[NSApplication run] + 594
      31  AppKit                              0x00007fff933692d4 NSApplicationMain + 1832
      32  Things                              0x000000010790e2b4 Things + 8884
      33  ???                                 0x0000000000000001 0x0 + 1
    @2:
    the last one noted there seems to be Aperture, even though there have been crashes certainly after I used that:
    Process:               Aperture [1268]
    Path:                  /Volumes/*/Aperture.app/Contents/MacOS/Aperture
    Identifier:            com.apple.Aperture
    Version:               3.6 (3.6)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Aperture [1268]
    User ID:               501
    Date/Time:             2014-12-25 17:11:57.551 +0000
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        anonymised
    Sleep/Wake UUID:       E4 anonymised
    Time Awake Since Boot: 22000 seconds
    Time Since Wake:       4000 seconds
    Crashed Thread:        19  Dispatch queue: com.apple.photoapps.volumeMgr
    Exception Type:        EXC_BAD_ACCESS (SIGBUS)
    Exception Codes:       0x000000000000000a, 0x000000010d3dd5ab
    VM Regions Near 0x10d3dd5ab:
        VM_ALLOCATE            000000010d28a000-000000010d28b000 [    4K] r--/rw- SM=SHM 
    --> mapped file            000000010d28b000-000000010d80e000 [ 5644K] r-x/rwx SM=COW  Object_id=c83507bb
        mapped file            000000010d80e000-000000010d957000 [ 1316K] rw-/rwx SM=COW  Object_id=c6e6ec6b
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreServices.CarbonCore 0x00007fff8f4b07e1 FileIDTree_VolumeMessageProcessed_rpc + 105
    3   com.apple.CoreFoundation       0x00007fff8fbc5a0d __CFMachPortPerform + 285
    4   com.apple.CoreFoundation       0x00007fff8fbc58d9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    5   com.apple.CoreFoundation       0x00007fff8fbc584b __CFRunLoopDoSource1 + 475
    6   com.apple.CoreFoundation       0x00007fff8fbb73c7 __CFRunLoopRun + 2375
    7   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    8   com.apple.HIToolbox           0x00007fff9627443f RunCurrentEventLoopInMode + 235
    9   com.apple.HIToolbox           0x00007fff962741ba ReceiveNextEventCommon + 431
    10  com.apple.HIToolbox           0x00007fff96273ffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    11  com.apple.AppKit               0x00007fff8df496d1 _DPSNextEvent + 964
    12  com.apple.AppKit               0x00007fff8df48e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    13  ???                           0x000000010cccea81 0 + 4509723265
    14  com.apple.AppKit               0x00007fff8df3ce23 -[NSApplication run] + 594
    15  ???                           0x000000010e0b439a 0 + 4530586522
    16  ???                           0x000000010c8720b4 0 + 4505149620
    17  ???                           0x000000010c871a44 0 + 4505147972
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff951c322e kevent64 + 10
    1   libdispatch.dylib             0x00007fff8eacba6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff8e0ac7a7 _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   libclh.dylib                   0x00007fff96099318 cuosEventWait + 184
    3   libclh.dylib                   0x00007fff95a9f593 intHandlerMain + 323
    4   libclh.dylib                   0x00007fff9609a119 cuosPosixThreadStartFunc(void*) + 41
    5   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 11:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.CoreFoundation       0x00007fff8fc6ced1 CFRunLoopRun + 97
    6   com.apple.QTKit               0x00007fff99dcb948 listenOnDelegatePort + 372
    7   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 12:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.CoreFoundation       0x00007fff8fc6ced1 CFRunLoopRun + 97
    6   com.apple.QTKit               0x00007fff99dcbdf3 listenOnNotificationPort + 340
    7   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 13:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff8c032d20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 14:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff951c23f6 __select + 10
    1   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   libclh.dylib                   0x00007fff96099318 cuosEventWait + 184
    3   libclh.dylib                   0x00007fff95a9f593 intHandlerMain + 323
    4   libclh.dylib                   0x00007fff9609a119 cuosPosixThreadStartFunc(void*) + 41
    5   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff951c2946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff951c2946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 18:: Dispatch queue: NSWorkspace Volume Observer Queue
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreServices.CarbonCore 0x00007fff8f4b07e1 FileIDTree_VolumeMessageProcessed_rpc + 105
    3   com.apple.CoreServices.CarbonCore 0x00007fff8f4aea33 ___FSAddVolumeObserverOnQueue_block_invoke_2 + 205
    4   libdispatch.dylib             0x00007fff8eac8c13 _dispatch_client_callout + 8
    5   libdispatch.dylib             0x00007fff8ead387e _dispatch_source_latch_and_call + 721
    6   libdispatch.dylib             0x00007fff8eacc62b _dispatch_source_invoke + 412
    7   libdispatch.dylib             0x00007fff8eacc154 _dispatch_queue_drain + 571
    8   libdispatch.dylib             0x00007fff8eacdecc _dispatch_queue_invoke + 202
    9   libdispatch.dylib             0x00007fff8eacb6b7 _dispatch_root_queue_drain + 463
    10  libdispatch.dylib             0x00007fff8ead9fe4 _dispatch_worker_thread3 + 91
    11  libsystem_pthread.dylib       0x00007fff8c2516cb _pthread_wqthread + 729
    12  libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 19 Crashed:: Dispatch queue: com.apple.photoapps.volumeMgr
    0   ???                           0x000000010d3dd5ab 0 + 4517123499
    1   com.apple.DiskArbitration     0x00007fff90ab5648 _DASessionCallback + 265
    2   com.apple.DiskArbitration     0x00007fff90ab5538 __DASessionSetDispatchQueue_block_invoke_2 + 56
    3   libdispatch.dylib             0x00007fff8eac8c13 _dispatch_client_callout + 8
    4   libdispatch.dylib             0x00007fff8ead387e _dispatch_source_latch_and_call + 721
    5   libdispatch.dylib             0x00007fff8eacc62b _dispatch_source_invoke + 412
    6   libdispatch.dylib             0x00007fff8eacc154 _dispatch_queue_drain + 571
    7   libdispatch.dylib             0x00007fff8eacdecc _dispatch_queue_invoke + 202
    8   libdispatch.dylib             0x00007fff8eacb6b7 _dispatch_root_queue_drain + 463
    9   libdispatch.dylib             0x00007fff8ead9fe4 _dispatch_worker_thread3 + 91
    10  libsystem_pthread.dylib       0x00007fff8c2516cb _pthread_wqthread + 729
    11  libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 20:
    Thread 19 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff90ab5898  rbx: 0x00007fa228126400  rcx: 0x00007fff90ab59f4  rdx: 0x0000600000090900
      rdi: 0x00006080004494e0  rsi: 0x0000600000a70100  rbp: 0x00000001180a5cb0  rsp: 0x00000001180a5c48
       r8: 0x0000000000000080   r9: 0xbaddc0dedeadbead  r10: 0x00007fa224466e40  r11: 0x0000000000000002
      r12: 0x0000000000000003  r13: 0x000061800008dbb0  r14: 0x0000600000a70100  r15: 0x00006080004494e0
      rip: 0x000000010d3dd5ab  rfl: 0x0000000000010203  cr2: 0x000000010d3dd5ab
      Logical CPU:     3
    Error Code:      0x00000014
    Trap Number:     14
    Binary Images:
                     0 - 0xffffffffffffffff +Aperture (???) /Volumes/*/Aperture.app/Contents/MacOS/Aperture
                     0 - 0xffffffffffffffff +PhotoFoundation (???) /Volumes/*/Aperture.app/Contents/Frameworks/PhotoFoundation.framework/Versions/ A/PhotoFoundation
                     0 - 0xffffffffffffffff +RedRock (???) /Volumes/*/Aperture.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRoc k
                     0 - 0xffffffffffffffff +iLifePageLayoutCore (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifePageLayoutCore.framework/Versi ons/A/iLifePageLayoutCore
                     0 - 0xffffffffffffffff +iLifePhotoStreamConfiguration (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifePhotoStreamConfiguration.frame work/Versions/A/iLifePhotoStreamConfiguration
                     0 - 0xffffffffffffffff +iLifeAssetManagement (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeAssetManagement.framework/Vers ions/A/iLifeAssetManagement
                     0 - 0xffffffffffffffff +AccountConfigurationPlugin (???) /Volumes/*/Aperture.app/Contents/Frameworks/AccountConfigurationPlugin.framewor k/Versions/A/AccountConfigurationPlugin
                     0 - 0xffffffffffffffff +MobileMe (???) /Volumes/*/Aperture.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobil eMe
                     0 - 0xffffffffffffffff +ProKit (???) /Volumes/*/Aperture.app/Contents/Frameworks/ProKit.framework/Versions/A/ProKit
                     0 - 0xffffffffffffffff +iLifeSlideshow (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/A /iLifeSlideshow
                     0 - 0xffffffffffffffff +iLifeFaceRecognition (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/iLifeFaceRecognition
                     0 - 0xffffffffffffffff +PrintServices (???) /Volumes/*/Aperture.app/Contents/Frameworks/PrintServices.framework/Versions/A/ PrintServices
                     0 - 0xffffffffffffffff +ProUtils (???) /Volumes/*/Aperture.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProUt ils
                     0 - 0xffffffffffffffff +Geode (???) /Volumes/*/Aperture.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
                     0 - 0xffffffffffffffff +ProXTCore (???) /Volumes/*/Aperture.app/Contents/Frameworks/ProXTCore.framework/Versions/A/ProX TCore
                     0 - 0xffffffffffffffff +iLifeSQLAccess (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/A /iLifeSQLAccess
                     0 - 0xffffffffffffffff +Tellus (???) /Volumes/*/Aperture.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
                     0 - 0xffffffffffffffff +Tessera (???) /Volumes/*/Aperture.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesser a
                     0 - 0xffffffffffffffff +eOkaoCom.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoCom.dylib
                     0 - 0xffffffffffffffff +eOkaoPt.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoPt.dylib
                     0 - 0xffffffffffffffff +eOkaoDt.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoDt.dylib
                     0 - 0xffffffffffffffff +eOkaoFr.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoFr.dylib
                     0 - 0xffffffffffffffff +TaskView (???) /Volumes/*/Aperture.app/Contents/PlugIns/TaskView.bundle/Contents/MacOS/TaskVie w
                     0 - 0xffffffffffffffff +FacebookPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/M acOS/FacebookPublisher
                     0 - 0xffffffffffffffff +FlickrPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Mac OS/FlickrPublisher
                     0 - 0xffffffffffffffff +MobileMePublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/M acOS/MobileMePublisher
                     0 - 0xffffffffffffffff +SharedPhotoStreamPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/SharedPhotoStreamPublisher.publisher/C ontents/MacOS/SharedPhotoStreamPublisher
                     0 - 0xffffffffffffffff +SmugMugPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/SmugMugPublisher.publisher/Contents/Ma cOS/SmugMugPublisher
                     0 - 0xffffffffffffffff +Facebook (???) /Volumes/*/Aperture.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents/ MacOS/Facebook
                     0 - 0xffffffffffffffff +Flickr (???) /Volumes/*/Aperture.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/Ma cOS/Flickr
                     0 - 0xffffffffffffffff +SmugMug (???) /Volumes/*/Aperture.app/Contents/PlugIns/SmugMug.accountconfigplugin/Contents/M acOS/SmugMug
           0x10d1b5000 -        0x10d1e2fff  com.apple.iTunesLibrary (12.0.1 - 12.0.1.26) <8EEB7003-E3B0-3149-81B6-F5D70F97466C> /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
           0x10e080000 -        0x10e08bff7  com.apple.PluginManager (1.7.6 - 55) <0E0F6415-A474-3FC8-8C8E-33867E31F391> /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
           0x10f0e3000 -        0x10f1fbfff  com.apple.mobiledevice (757.1.5.0.2 - 757.1.5.0.2) <364C6894-934B-3844-A77F-7DFEC21F8AEE> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
           0x10f279000 -        0x10f2aeff7  libssl.0.9.8.dylib (52) <70680606-475F-3C89-BB5F-E274253DC7C6> /usr/lib/libssl.0.9.8.dylib
           0x10f2c6000 -        0x10f2c8ff7  com.apple.LibraryRepair (1.0 - 1) <7D0695B1-BCC9-3ED2-9688-14806C8ED284> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
           0x10f4c7000 -        0x10f51aff7  com.apple.NyxAudioAnalysis (12.5 - 12.5) <D1DAF825-1680-3D27-9F20-B1316C0A7C03> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
           0x118003000 -        0x118004fe5 +cl_kernels (???) <0A48AF2D-C3D6-4260-9FD2-9BB66B01CA20> cl_kernels
           0x11843a000 -        0x11843fff7  libgermantok.dylib (17) <47EF3D93-B111-3218-AF60-E33F506D57E8> /usr/lib/libgermantok.dylib
           0x11d722000 -        0x11d726ff3  libFontRegistryUI.dylib (134) <9C55337C-4D65-34C8-9BB9-90399B420A6F> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x11da6f000 -        0x11da6ffe7 +cl_kernels (???) <7E713AF1-D6EB-4975-86EB-6F84BE214B39> cl_kernels
           0x11e6ec000 -        0x11e7d2fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x11e814000 -        0x11e8f4ff7  unorm8_rgba.dylib (2.4.5) <A8805102-8A21-3A5E-AE22-63C0DEC8CB6F> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
        0x123400000000 -     0x1234004f7ff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.0.86 - 10.0.0) <03454F0A-EEE2-3B25-8DB2-A32FA24CE699> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD5000GraphicsGLDriver
        0x123440000000 -     0x123440864fff  com.apple.GeForceGLDriver (10.0.43 - 10.0.0) <4E749711-614F-32F8-8373-1F0307082D7B> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff61749000 -     0x7fff6177f837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff8a906000 -     0x7fff8a992fff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff8a993000 -     0x7fff8a99eff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8a9c6000 -     0x7fff8a9cafff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8a9cb000 -     0x7fff8aa86ff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8aa87000 -     0x7fff8aa93ff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8ab41000 -     0x7fff8ab48ff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8ab5b000 -     0x7fff8ab5dfff  libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8ab73000 -     0x7fff8ab97ff7  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
        0x7fff8ab98000 -     0x7fff8abb3ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff8abc0000 -     0x7fff8acb4ff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8ad57000 -     0x7fff8b026ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8b027000 -     0x7fff8b0a4ff7  com.apple.iLifeMediaBrowser (2.9.0 - 675) <2E008E85-B3EA-391C-9D79-6275AC70EDDB> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8b0a5000 -     0x7fff8b0c2ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8b0c3000 -     0x7fff8b0c8ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8b0c9000 -     0x7fff8b0cdfff  com.apple.LoginUICore (3.0 - 3.0) <D76AB05B-B627-33EE-BA8A-515D85275DCD> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8b0ce000 -     0x7fff8b0cffff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b18e000 -     0x7fff8b22ddf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff8b247000 -     0x7fff8b249fff  com.apple.ExceptionHandling (1.5 - 10) <C3A6EB3D-C0B3-371F-99D8-AF5495498091> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
        0x7fff8b3bc000 -     0x7fff8b462fff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8b463000 -     0x7fff8b555ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff8b556000 -     0x7fff8b5caff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8b5cb000 -     0x7fff8b5dafff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8b5f7000 -     0x7fff8b5fbfff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff8b5fc000 -     0x7fff8b603fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8b619000 -     0x7fff8b6a2fff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8b6a3000 -     0x7fff8b724ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8b725000 -     0x7fff8b730ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff8b731000 -     0x7fff8b742ff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff8b743000 -     0x7fff8b750ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff8b751000 -     0x7fff8b76ffff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <C763B730-D6BC-31D3-951A-898BB49C5A3E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8b770000 -     0x7fff8b775ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8b776000 -     0x7fff8b77bff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8b77c000 -     0x7fff8b7cdff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8b7f6000 -     0x7fff8b802ff7  libGPUSupportMercury.dylib (11.0.7) <C04F6E18-3043-3096-A6E6-F6431ADC41D3> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
        0x7fff8b803000 -     0x7fff8b80eff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8b80f000 -     0x7fff8b811fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8b829000 -     0x7fff8b843ff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
        0x7fff8b844000 -     0x7fff8b895ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b896000 -     0x7fff8b92cffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8b92d000 -     0x7fff8bd04fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8bd09000 -     0x7fff8bd0dfff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8bd0e000 -     0x7fff8bd39fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8bd4f000 -     0x7fff8bf34267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff8bf35000 -     0x7fff8bf37ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <D7516965-DB40-3235-9D00-C724F7D2BC02> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff8bf38000 -     0x7fff8bf6aff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8bf6b000 -     0x7fff8bf74ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8bf75000 -     0x7fff8bf86fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff8bf87000 -     0x7fff8bf91ff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8bf92000 -     0x7fff8c195ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8c1f2000 -     0x7fff8c24dfef  libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8c24e000 -     0x7fff8c257fff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c258000 -     0x7fff8c2d0ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8c2d1000 -     0x7fff8c2d8ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8c2d9000 -     0x7fff8c2fafff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8c2fb000 -     0x7fff8c32bfff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff8c32c000 -     0x7fff8c32cff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8c32d000 -     0x7fff8c338fdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8c35e000 -     0x7fff8c5d8fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8c5d9000 -     0x7fff8c601fff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff8c75e000 -     0x7fff8c890ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8c891000 -     0x7fff8c8cafff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8c8ee000 -     0x7fff8c8f0fff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8c92f000 -     0x7fff8c946ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8c947000 -     0x7fff8c94ffff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8c950000 -     0x7fff8c951ff7  MetadataLib.dylib (6.2) <BE9131AC-7D9C-3678-A053-2873442A3DF3> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
        0x7fff8c952000 -     0x7fff8c95afff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8c95b000 -     0x7fff8c9c2ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8c9c3000 -     0x7fff8ca64ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8cbb4000 -     0x7fff8cfe4fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8cfe5000 -     0x7fff8cfe9fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8cfea000 -     0x7fff8d10cff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8d10d000 -     0x7fff8d19eff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
        0x7fff8d19f000 -     0x7fff8d34efff  GLEngine (11.0.7) <3CB7447A-1A1D-3D55-A6A4-4814B49F6678> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff8d34f000 -     0x7fff8d350ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff8dcc5000 -     0x7fff8dcc7ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff8dcc8000 -     0x7fff8dcc8ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8dcc9000 -     0x7fff8df09ff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8df0a000 -     0x7fff8df24ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8df25000 -     0x7fff8ea66fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8ea67000 -     0x7fff8ea78ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8ea79000 -     0x7fff8eac6ff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8eac7000 -     0x7fff8eaf1ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8eaf2000 -     0x7fff8ec50ff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8ec51000 -     0x7fff8ec8cfff  com.apple.AOSAccounts (1.3.1 - 1.8.19) <1EF4B780-3474-331E-9104-6CE796D8C930> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff8ecce000 -     0x7fff8eccffff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff8ecd0000 -     0x7fff8ecd1fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8edb2000 -     0x7fff8edb4ffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8edb5000 -     0x7fff8edbdffb  com.apple.CloudServices (1.0 - 1) <D278BECB-AEC3-3D32-BEC8-E949EB89D66B> /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi ces
        0x7fff8edbe000 -     0x7fff8edd4ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8ede4000 -     0x7fff8edfeff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8edff000 -     0x7fff8ee05ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8ee06000 -     0x7fff8ee77ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8ee78000 -     0x7fff8f028ff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8f057000 -     0x7fff8f091ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8f329000 -     0x7fff8f376fff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8f377000 -     0x7fff8f385ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff8f386000 -     0x7fff8f3b9ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8f44c000 -     0x7fff8f477fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8f478000 -     0x7fff8f75fffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8f760000 -     0x7fff8f878ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8f879000 -     0x7fff8f8deff7  com.apple.ids (10.0 - 1000) <12E5717E-8D63-3B70-BB46-A60AFB02CCAE> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8f8df000 -     0x7fff8f8e2ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8f8e3000 -     0x7fff8f911fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f912000 -     0x7fff8f92eff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8fa02000 -     0x7fff8fa16ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8fb45000 -     0x7fff8fedbfff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8fedc000 -     0x7fff8fedcfff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff90815000 -     0x7fff90861ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff90862000 -     0x7fff90863fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff90864000 -     0x7fff908c9fff  com.apple.framework.internetaccounts (2.1 - 210) <DC8D9230-B7C8-3100-8B2F-399B51A4483A> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff90925000 -     0x7fff90950ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff90951000 -     0x7fff90963ff7  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
        0x7fff90964000 -     0x7fff9097dff7  com.apple.CalendarAgentLink (8.0 - 250) <0F3CCA9C-645D-3A1A-A959-F4F8D31F9B1A> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff9098d000 -     0x7fff9098ffff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff909b9000 -     0x7fff909c2fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff909c3000 -     0x7fff90a99ff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff90a9a000 -     0x7fff90ab2fff  com.apple.CalendarStore (8.0 - 1479) <42CC3B45-7916-3C2C-8F07-E40D96C9FEDB> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff90ab3000 -     0x7fff90ab8fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff90ac4000 -     0x7fff90ac6ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff90add000 -     0x7fff90ae1fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
        0x7fff90aef000 -     0x7fff90b1fffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff90b45000 -     0x7fff90b48fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff90b49000 -     0x7fff90cd8fff  libGLProgrammability.dylib (11.0.7) <AF37E7F3-16C8-3747-9CC6-A442C0153DC6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff90cd9000 -     0x7fff90cdcfff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff90cdd000 -     0x7fff90d30ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2B

  • Inetd service/program crashes with core dump in Solaris 8 zone/container

    I have developed a service in C that is launched from inetd when something comes on a specific port.
    When a connection is opened to the port a core dump is created in the same directory where the executable file is located.
    If you run the same service program from the command line everything is working perfect.
    This is running in a Solaris 8 zone/container on a Solaris 10 machine.
    Everything is set correctly in /etc/inetd.conf and in /etc/services.
    I have even stripped down the program to a hello world program that is just printing a string to the screen and it is still crashing with a core dump.
    # ldd test_srv
    /usr/lib/secure/s8_preload.so.1
    libc.so.1 => /usr/lib/libc.so.1
    libdl.so.1 => /usr/lib/libdl.so.1
    /usr/platform/SUNW,Sun-Fire-480R/lib/libc_psr.so.1
    The same service is running on a Linux machine and on a Solaris 10 machine without zones/containers without any problems.
    Can you please help me figure out what am I missing. Is there something specific with zones/containers that should be set / configured?
    Do I have to set some specific env. variables to work in a Solaris 8 zone/container environment or is it something very simple that I'm missing?

    Could you please examine the truss log and advice what the problem is and how to fix it?
    (some lines deleted)
    bash-2.03# truss -f -p 18361 #### /usr/sbin/inetd -s -t &
    18361:  poll(0xFFBFF528, 53, -1)        (sleeping...)
    18361:  poll(0xFFBFF528, 53, -1)                        = 1
    18361:  accept(63, 0xFFBFF870, 0xFFBFF914, 1)           = 3
    18361:  sigprocmask(SIG_BLOCK, 0xFFBFF5F0, 0xFFBFF600)  = 0
    18361:  lwp_sigtimedwait(0xFFBFF600, 0xFFBFF578, 0x00000010) = 0
    18361:  lwp_sigtimedwait(0xFFBFF568, 0xFFBFF728, 0x00000010) = 0
    18361:  fork()                                          = 1921
    1921:   fork()          (returning as child ...)        = 18361
    1921:   sigprocmask(0, 0x00000000, 0xFFBFF600)          = 0
    18361:  sigprocmask(0, 0x00000000, 0xFFBFF600)          = 0
    1921:   lwp_sigtimedwait(0xFFBFF600, 0xFFBFF578, 0x00000010) = 0
    18361:  sigprocmask(SIG_SETMASK, 0xFFBFF5F0, 0xFFBFF600) = 0
    18361:  close(3)                                        = 0
    18361:  sigprocmask(0, 0x00000000, 0xFFBFF600)          = 0
    1921:   lwp_sigtimedwait(0xFFBFF668, 0xFFBFF528, 0x00000020) = 0
    1921:   sigaction(SIGHUP, 0xFFBFF528, 0xFFBFF500)       = 0
    18361:  lwp_sigtimedwait(0xFFBFF568, 0xFFBFF5F0, 0x00000010) = 0
    1921:   lwp_sigtimedwait(0xFFBFF508, 0xFFBFF458, 0x00000010) = 0
    18361:  sigprocmask(SIG_SETMASK, 0xFFBFF5F0, 0xFFBFF600) = 0
    1921:   sigprocmask(SIG_SETMASK, 0xFFBFF5F0, 0xFFBFF600) = 0
    1921:   lwp_sigtimedwait(0xFFBFF600, 0xFFBFF578, 0x00000010) = 0
    1921:   lwp_sigtimedwait(0xFFBFF568, 0xFFBFF728, 0x00000010) = 0
    1921:   fcntl(3, F_DUP2FD, 0x00000000)                  = 0
    1921:   close(3)                                        = 0
    1921:   fcntl(0, F_DUP2FD, 0x00000001)                  = 1
    1921:   fcntl(0, F_DUP2FD, 0x00000002)                  = 2
    1921:   open64("/etc/.name_service_door", O_RDONLY)     = 3
    1921:   fcntl(3, F_SETFD, 0x00000001)                   = 0
    1921:   door_info(3, 0xFF0C2748)                        = 0
    1921:   door_call(3, 0xFFBFF278)                        = 0
    1921:   close(67)                                       Err#9 EBADF
    1921:   close(66)                                       Err#9 EBADF
    1921:   close(65)                                       Err#9 EBADF
    1921:   close(64)                                       Err#9 EBADF
    1921:   close(63)                                       = 0
    1921:   close(62)                                       = 0
    1921:   close(12)                                       = 0
    1921:   close(11)                                       = 0
    1921:   close(10)                                       Err#9 EBADF
    1921:   close(9)                                        Err#9 EBADF
    1921:   close(8)                                        Err#9 EBADF
    1921:   close(7)                                        Err#9 EBADF
    1921:   close(6)                                        Err#9 EBADF
    1921:   close(5)                                        Err#9 EBADF
    1921:   close(4)                                        Err#9 EBADF
    1921:   setrlimit(RLIMIT_NOFILE, 0xFFBFFD20)            = 0
    1921:   xenix(398872, 0xFFBFF5E4, 0x00000040)           = 38
    1921:   execve("/tmp/srv/t_srv", 0x0008B5FC, 0xFFBFFDA0)  argc = 0
    1921:   getuid()                                        = 0 [0]
    1921:   resolvepath("/usr/lib/ld.so.1", "/usr/lib/ld.so.1", 1023) = 16
    1921:   open("/var/ld/ld.config", O_RDONLY)             = 3
    1921:   fstat(3, 0xFFBFF5E8)                            = 0
    1921:   mmap(0x00000000, 148, PROT_READ, MAP_SHARED, 3, 0) = 0xFF3E0000
    1921:   close(3)                                        = 0
    1921:   stat("/usr/lib/libc.so.1", 0xFFBFF648)          = 0
    1921:   resolvepath("/usr/lib/libc.so.1", "/usr/lib/libc.so.1", 1023) = 18
    1921:   open("/usr/lib/libc.so.1", O_RDONLY)            = 3
    1921:   mmap(0x00000000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0xFF340000
    1921:   mmap(0x00000000, 802816, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON, -1, 0) = 0xFF200000
    1921:   mmap(0xFF200000, 703520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF200000
    1921:   mmap(0xFF2BC000, 24772, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 704512) = 0xFF2BC000
    1921:   munmap(0xFF2AC000, 65536)                       = 0
    1921:   memcntl(0xFF200000, 113528, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0
    1921:   close(3)                                        = 0
    1921:   stat("/usr/lib/libdl.so.1", 0xFFBFF648)         = 0
    1921:   resolvepath("/usr/lib/libdl.so.1", "/usr/lib/libdl.so.1", 1023) = 19
    1921:   open("/usr/lib/libdl.so.1", O_RDONLY)           = 3
    1921:   mmap(0xFF340000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF340000
    1921:   mmap(0x00000000, 8192, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON, -1, 0) = 0xFF330000
    1921:   mmap(0xFF330000, 2638, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF330000
    1921:   close(3)                                        = 0
    1921:   stat("/usr/platform/SUNW,Sun-Fire-480R/lib/libc_psr.so.1", 0xFFBFF368) = 0
    1921:   resolvepath("/usr/platform/SUNW,Sun-Fire-480R/lib/libc_psr.so.1", "/usr/platform/sun4u-us3/lib/libc_psr.so.1", 1023) = 41
    1921:   open("/usr/platform/SUNW,Sun-Fire-480R/lib/libc_psr.so.1", O_RDONLY) = 3
    1921:   mmap(0xFF340000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xFF340000
    1921:   close(3)                                        = 0
    1921:   mmap(0x00000000, 8192, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xFF320000
    1921:   dup(0)                                          = 3
    1921:   llseek(0, 0, SEEK_CUR)                          Err#29 ESPIPE
    1921:   close(0)                                        = 0
    1921:   fcntl(3, F_DUP2FD, 0x00000000)                  = 0
    1921:   close(3)                                        = 0
    1921:   dup(1)                                          = 3
    1921:   close(1)                                        = 0
    1921:   fcntl(3, F_DUP2FD, 0x00000001)                  = 1
    1921:   close(3)                                        = 0
    1921:   dup(2)                                          = 3
    1921:   close(2)                                        = 0
    1921:   fcntl(3, F_DUP2FD, 0x00000002)                  = 2
    1921:   close(3)                                        = 0
    1921:   sys#177(0x00000080, 0xFFBFFB7C, 0xFF3F0518, 0x00000000, 0xFF3C2EF8, 0xFF2C0284) = 0x00000000 [0xFFBFFB7C]
    1921:   sys#227(0x00000006, 0x00000000, 0x0001ADF0, 0xFF3F0518, 0xFF3C3C18, 0xFF3C2670) = 0x0000000C [0x00000000]
    1921:   sys#227(0x00000002, 0x0000000C, 0x0000000E, 0xFFBFFCAE, 0x00000002, 0xFF3C2670) = 0x00000002 [0x00000000]
    1921:       Incurred fault #6, FLTBOUNDS  %pc = 0xFF232E2C
    1921:         siginfo: SIGSEGV SEGV_MAPERR addr=0x00000000
    1921:       Received signal #11, SIGSEGV [default]
    1921:         siginfo: SIGSEGV SEGV_MAPERR addr=0x00000000
    1921:           *** process killed ***
    18361:      Received signal #18, SIGCLD, in poll() [caught]
    18361:        siginfo: SIGCLD CLD_DUMPED pid=1921 status=0x000B
    18361:  poll(0xFFBFF528, 53, -1)                        Err#4 EINTR
    18361:  lwp_sigtimedwait(0xFFBFF218, 0xFFBFF140, 0x00000010) = 0
    18361:  lwp_sigtimedwait(0xFFBFF130, 0xFFBFF218, 0x00000010) = 0
    18361:  sigprocmask(0, 0x00000000, 0xFFBFEF28)          = 0
    18361:  poll(0xFFBFF528, 53, -1)        (sleeping...)Thank you in advance

  • Safari crashes with EXC_BAD_ACCESS (SIGSEGV) Exception Type

    Hi -  Looking for some help!
    After I updated to OS X 10.8.3, Safari will not open, but immediately crashes with the following exception type:
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    I have reinstalled 10.8.3 five times (what do they say about you if you expect a different answer when trying the same thing?), but no joy.  Also repaired Disk Permissions a few times (hmmm...  what did I say about repeating things?), again without any effect. 
    Others have reported a similar problem, but their solutions do not seem applicable here (I've tried all that were relevant without luck).  This is even more sad since I usually don't use Safari now (I dislike the unified URL-Search window), but I would like it to function in case it becomes advantageous to use it over Firefox.
    Anyway, I'd appreciate any advice to help make it fucntion.  Here's the entire error message:
    Process: Safari [574]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version:         6.0.3 (8536.28.10)
    Build Info: WebBrowser-7536028010000000~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [188]
    User ID:         501
    Date/Time: 2013-03-23 21:12:28.795 -0700
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          4978 sec
    Crashes Since Last Report:           1
    Per-App Crashes Since Last Report:   1
    Anonymous UUID: 43D941AC-4F78-4CBA-651B-492B3B83E818
    Crashed Thread: 0  Dispatch queue: com.apple.main-thread
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT 000000010f01c000-000000010f01d000 [ 4K] r-x/rwx SM=COW /Applications/Safari.app/Contents/MacOS/Safari
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 libsystem_c.dylib              0x00007fff913b29ae strtoul_l + 81
    1 com.apple.Safari.framework          0x00007fff9582275a Safari::SWebPreferences::setWebKitLinkTimeVersionString(Safari::CF::String const&) + 44
    2 com.apple.Safari.framework          0x00007fff957e2396 SafariMain + 120
    3   libdyld.dylib                      0x00007fff95ca77e1 start + 1
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7e72ba90  rbx: 0x00007fff50be3cc8  rcx: 0x00007fff7e729788  rdx: 0x000000000000000a
      rdi: 0x0000000000000000  rsi: 0x00007fff7e72ba98  rbp: 0x00007fff50be3c80  rsp: 0x00007fff50be3c50
       r8: 0x000000000000000a   r9: 0x00007fff7e72d890  r10: 0x00007fff7e729788  r11: 0x00007fff959239c8
      r12: 0x00007f9f3180b038  r13: 0x0000000000000000  r14: 0x00007fff50be3d18  r15: 0x00007fff50be3c98
      rip: 0x00007fff913b29ae  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Logical CPU: 4
    Binary Images:
           0x10f01c000 -        0x10f01cfff  com.apple.Safari (6.0.3 - 8536.28.10) <F65DC101-5E84-3DE2-8494-CA90BD70AB3F> /Applications/Safari.app/Contents/MacOS/Safari
        0x7fff6ec1c000 -     0x7fff6ec5093f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff8e2c4000 -     0x7fff8e2dbfff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8e2e5000 -     0x7fff8e2edfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8e346000 -     0x7fff8e347fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8e681000 -     0x7fff8e776fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8e877000 -     0x7fff8e882ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8e883000 -     0x7fff8f2136ff  com.apple.CoreGraphics (1.600.0 - 331.0.4) <4953961C-96DC-39D7-ADF5-B767F2A7E4E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8f214000 -     0x7fff8f296ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8f2c3000 -     0x7fff8f2e8ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8f324000 -     0x7fff8f331fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8f5f6000 -     0x7fff8f632fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8f681000 -     0x7fff8f68eff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f68f000 -     0x7fff8f933ff7  com.apple.CoreImage (8.2.4 - 1.0.1) <4A6B017F-B9F7-36DA-943D-A95611F147EA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8f9fb000 -     0x7fff8f9fdfff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff902b4000 -     0x7fff902b5fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff902b6000 -     0x7fff902bbfff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff902bc000 -     0x7fff90557fff  com.apple.JavaScriptCore (8536 - 8536.28.10) <BC911515-D051-3E2E-8E57-D36878407C60> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff90558000 -     0x7fff9059bff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff9059c000 -     0x7fff905aeff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff905af000 -     0x7fff905b9ff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff905ba000 -     0x7fff905c2ff7  libsystem_dnssd.dylib (379.37) <616FC901-151E-38BF-B2C4-24A351C5FAAD> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff905c3000 -     0x7fff9062bff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff9062c000 -     0x7fff90632fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff90633000 -     0x7fff90650ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff9067e000 -     0x7fff906fdff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff906fe000 -     0x7fff9070dfff  com.apple.opengl (1.8.7 - 1.8.7) <26F7FF79-6BB2-3968-B70D-71D4E07C9551> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff9070e000 -     0x7fff90730ff7  libxpc.dylib (140.42) <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
        0x7fff90731000 -     0x7fff90731fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff9074a000 -     0x7fff90750fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff90751000 -     0x7fff90770ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff90771000 -     0x7fff90772fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff90ba6000 -     0x7fff90baaff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff90bab000 -     0x7fff90c7dff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff90c7e000 -     0x7fff90c85fff  libGFXShared.dylib (8.7.25) <869580B2-39CB-30C3-B76E-73BB4894B6B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff90c86000 -     0x7fff90cdbff7  libTIFF.dylib (849) <C4D0E196-9319-319B-AF72-8B63FB5AF71B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff90d7a000 -     0x7fff90d89ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff90d8b000 -     0x7fff90db5ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff90f15000 -     0x7fff90f83fff  com.apple.framework.IOKit (2.0.1 - 755.22.5) <1547DA6F-9793-30A2-8E92-7368DE84D46C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff90f84000 -     0x7fff912b4fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff912b5000 -     0x7fff91301ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff9130a000 -     0x7fff91349ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff9134a000 -     0x7fff91416ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff91417000 -     0x7fff91417fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff91418000 -     0x7fff91461fff  com.apple.framework.CoreWiFi (1.2.2 - 122.12) <D237551E-0E2C-30FB-8FAA-003D8F25E819> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff91462000 -     0x7fff914beff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff914bf000 -     0x7fff914d5fff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff914d7000 -     0x7fff914eaff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff914f9000 -     0x7fff914fbff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff914fc000 -     0x7fff914fffff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff91500000 -     0x7fff9153dfef  libGLImage.dylib (8.7.25) <139A9892-A6F2-3F49-87FB-E7AC3F56E003> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff9153e000 -     0x7fff91773ff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff91780000 -     0x7fff9178bfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff91b79000 -     0x7fff91b90fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff91b91000 -     0x7fff91b9fff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff91bbb000 -     0x7fff91c55fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff91c60000 -     0x7fff91c67fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff91c68000 -     0x7fff91cd1fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff91dc6000 -     0x7fff91ec3ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff91ec4000 -     0x7fff91f75fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff91f8b000 -     0x7fff91f8cff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff91f8d000 -     0x7fff91f94fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff92075000 -     0x7fff920cbfff  com.apple.HIServices (1.20 - 417) <839B4EE4-B96F-3371-BE90-3B4EBB86C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff92115000 -     0x7fff92472ff7  com.apple.Foundation (6.8 - 945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff92473000 -     0x7fff92492ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff92777000 -     0x7fff92912fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff92964000 -     0x7fff929befff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff929bf000 -     0x7fff929f9ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff929fa000 -     0x7fff92a08ff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff92a09000 -     0x7fff92a34fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff92a35000 -     0x7fff92a35fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff92a84000 -     0x7fff92bd5fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <C680EE1A-B4ED-3E77-A08C-DC47922ACA33> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff92bed000 -     0x7fff92c31fff  libcups.2.dylib (327.3) <71E771A1-0489-3417-8A4A-56A2C930F80C> /usr/lib/libcups.2.dylib
        0x7fff92c32000 -     0x7fff92c3cfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff92c74000 -     0x7fff92d94fff  com.apple.desktopservices (1.7.3 - 1.7.3) <707F77D2-EC0E-3431-840F-B984BD7ABDD6> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff92d95000 -     0x7fff92da3fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff92da5000 -     0x7fff92dcdfff  libJPEG.dylib (849) <5C9052F6-D0B3-39CC-8302-468B43D694D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff92e5e000 -     0x7fff92efcff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff936ea000 -     0x7fff936eaffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <173346B7-614C-380B-8E80-9BD1BE501674> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff9377e000 -     0x7fff93a4fff7  com.apple.security (7.0 - 55179.11) <73958084-5BBC-3597-A751-7370B0C247E5> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff93aa5000 -     0x7fff93b25ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <39B53565-FA31-3F61-B090-C787C983142E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff93b38000 -     0x7fff93b3cfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff93bad000 -     0x7fff93bfcff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff93bfd000 -     0x7fff93bfdfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff93bfe000 -     0x7fff93bfefff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff93bff000 -     0x7fff9482cff7  com.apple.AppKit (6.8 - 1187.37) <FAEA8B77-210F-3C0F-B9CF-85A7595CCA26> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff94fd7000 -     0x7fff95028ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff95029000 -     0x7fff9503eff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff950a2000 -     0x7fff950adff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff950bc000 -     0x7fff95162ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff95163000 -     0x7fff95167fff  libGIF.dylib (849) <6A664B4D-0A88-33F7-9064-0CD159AB9CE9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff95168000 -     0x7fff95169fff  libquit.dylib (130) <DC77F406-C5D4-301B-A96D-9A3DCA263756> /usr/lib/libquit.dylib
        0x7fff95177000 -     0x7fff9518efff  libGL.dylib (8.7.25) <15F5CB64-847B-3D3D-9663-E0523F15F513> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff9519e000 -     0x7fff95595fff libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff955bf000 -     0x7fff95abcfff  com.apple.Safari.framework (8536 - 8536.28.10) <3A95B221-2F54-38D1-A916-FA79400EB8D8> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff95abd000 -     0x7fff95b25fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff95c53000 -     0x7fff95c53fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff95c70000 -     0x7fff95c72fff  libCVMSPluginSupport.dylib (8.7.25) <A45E21E3-4B40-39B0-A8B6-411526A84F47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff95c73000 -     0x7fff95ca4ff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff95ca5000 -     0x7fff95ca8ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff95cae000 -     0x7fff95e98ff7  com.apple.CoreFoundation (6.8 - 744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff9629c000 -     0x7fff9629ffff  libRadiance.dylib (849) <F7D9A0FD-1195-34CB-BFE5-79DAF3F40AC3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff963f0000 -     0x7fff963f6ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff9642b000 -     0x7fff96430fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff96434000 -     0x7fff965bafff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff9661b000 -     0x7fff9661dfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff96661000 -     0x7fff9671eff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff967a2000 -     0x7fff967c3ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff9688b000 -     0x7fff96926fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff96927000 -     0x7fff96928ff7  libsystem_sandbox.dylib (220.2) <6838A6FD-8626-3356-BB4F-BB4787216207> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff96929000 -     0x7fff96929fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff9692c000 -     0x7fff96b14fff  com.apple.WebKit2 (8536 - 8536.28.10) <B9D84DFC-E7D5-3398-B0E8-5108DE9EC546> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff96b15000 -     0x7fff96b58ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff96d08000 -     0x7fff96d1efff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff96d1f000 -     0x7fff96d46ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff96d47000 -     0x7fff96d4bfff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff96d84000 -     0x7fff96dd3ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff96dd8000 -     0x7fff96dddfff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff97054000 -     0x7fff9712efff  com.apple.backup.framework (1.4.2 - 1.4.2) <0B557393-CD2A-3076-BED2-F28D02E1EC1D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff9712f000 -     0x7fff971bcff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff972c0000 -     0x7fff9732dff7  com.apple.datadetectorscore (4.1 - 269.2) <4FD4A7CE-BB00-3AAB-B7AA-AE395D5400EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff9732e000 -     0x7fff9735cff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff9735d000 -     0x7fff9735eff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff9735f000 -     0x7fff97397fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff97398000 -     0x7fff973e2ff7  libGLU.dylib (8.7.25) <C243C6D3-3384-3DB1-BB15-E27B65C87294> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff97483000 -     0x7fff974b9fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff974ba000 -     0x7fff97668fff  com.apple.QuartzCore (1.8 - 304.2) <234EABE1-067C-3DAE-BEAC-674526E232C2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff97669000 -     0x7fff976c0ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff979a8000 -     0x7fff979bdfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff97a1f000 -     0x7fff97a7cff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <D15F3FB3-BE53-3545-AD37-9A25A597FE3C> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff97a7d000 -     0x7fff97b7afff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff97b7b000 -     0x7fff97cf0fff  com.apple.CFNetwork (596.3.3 - 596.3.3) <3739DC8D-8610-3740-80EC-43E130779CB8> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff97cf1000 -     0x7fff97ef1fff  libicucore.A.dylib (491.11.2) <FD6282D8-DF3F-3842-8C2E-CF478D2B9669> /usr/lib/libicucore.A.dylib
        0x7fff97ef2000 -     0x7fff9800bfff  com.apple.ImageIO.framework (3.2.0 - 849) <C52AED41-A7C2-300B-91FA-5AF73718D243> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff9800c000 -     0x7fff98017fff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff98018000 -     0x7fff98072ff7  com.apple.opencl (2.2.18 - 2.2.18) <4A78E53C-17B0-3B2D-A9EA-EF8720FE4134> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff98073000 -     0x7fff9818b92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff9818c000 -     0x7fff9818eff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff9818f000 -     0x7fff981b0fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff981b1000 -     0x7fff9916efff  com.apple.WebCore (8536 - 8536.28.10) <89CDA119-0FC8-3D0E-87B8-AB96BE6D1A36> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff9916f000 -     0x7fff991a3fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff991fb000 -     0x7fff9920ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9964d000 -     0x7fff99683fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff99c52000 -     0x7fff99c56ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff99c57000 -     0x7fff99c57fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff99c58000 -     0x7fff99d5afff  libJP2.dylib (849) <4EEA33EB-AF9F-365D-A572-F7D11AD1C76F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff99d5b000 -     0x7fff99d82fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff99d83000 -     0x7fff99e04fff  com.apple.Metadata (10.7.0 - 707.5) <4140B1F6-7D73-33C7-B3F2-4DB349C31AE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff99e12000 -     0x7fff99ed7ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff99ee0000 -     0x7fff99f2bfff  com.apple.framework.CoreWLAN (3.0.2 - 302.12) <896D75EB-069B-3674-936E-27A81568BECB> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff99f71000 -     0x7fff99f91fff  libPng.dylib (849) <F4C23A55-F17B-3E4F-9E80-BC97F778BA49> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff99f92000 -     0x7fff99f93ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff99ffc000 -     0x7fff99ffefff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff9a05a000 -     0x7fff9a371ff7  com.apple.CoreServices.CarbonCore (1037.5 - 1037.5) <731D8F92-1C52-3613-BA01-EFEA54DADF41> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff9a377000 -     0x7fff9a399ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff9a39a000 -     0x7fff9a3c6fff  com.apple.framework.Apple80211 (8.3.2 - 832.18.1) <5D601780-9AD9-31C9-9AB5-716D8634CB78> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff9a3c7000 -     0x7fff9a3d4fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff9a445000 -     0x7fff9a550fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9a551000 -     0x7fff9a55dfff  com.apple.CrashReporterSupport (10.8.3 - 417) <48EDDDF3-5720-39D6-B51F-D9AFB93327B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff9a5c4000 -     0x7fff9a623fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff9a624000 -     0x7fff9aa41fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff9aa42000 -     0x7fff9aa55ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff9aa56000 -     0x7fff9aa58fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff9aa85000 -     0x7fff9aa8eff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff9aa8f000 -     0x7fff9aa93fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff9ae36000 -     0x7fff9ae36fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff9aec9000 -     0x7fff9af25fff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff9af26000 -     0x7fff9af41ff7  libsystem_kernel.dylib (2050.22.13) <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
        0x7fff9af42000 -     0x7fff9b0cdff7  com.apple.WebKit (8536 - 8536.28.10) <792FA1F3-68F2-36F8-A070-898B3682F5DE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        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: 578
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=170.9M resident=140.5M(82%) swapped_out_or_unallocated=30.4M(18%)
    Writable regions: Total=19.7M written=732K(4%) resident=848K(4%) swapped_out=0K(0%) unallocated=18.9M(96%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             11.5M
    MALLOC guard page                    48K
    STACK GUARD                        56.0M
    Stack                              8192K
    __DATA                             13.7M
    __IMAGE                             528K
    __LINKEDIT                         52.0M
    __TEXT                            118.9M
    __UNICODE                           544K
    shared memory                        12K
    ===========                      =======
    TOTAL                             261.2M
    Model: iMac11,3, BootROM IM112.0057.B01, 4 processors, Intel Core i7, 2.93 GHz, 32 GB, SMC 1.59f2
    Graphics: ATI Radeon HD 5750, ATI Radeon HD 5750, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1333 MHz, 0x857F, 0x483634314755363746393333334700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.72.0-P2P
    Bluetooth: Version 4.1.3f3 11349, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Parallels Shared #0, Ethernet, vnic0
    Serial ATA Device: Hitachi HDS722020ALA330, 2 TB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    Serial ATA Device: APPLE SSD TS256B, 251 GB
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: USB2.0 Hub, 0x2109  (VIA Labs, Inc.), 0x3431, 0xfa130000 / 6
    USB Device: Officejet Pro 8500 A910, 0x03f0  (Hewlett Packard), 0x5312, 0xfa131000 / 15
    USB Device: hub_device, apple_vendor_id, 0x9126, 0xfa140000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa141000 / 14
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa141400 / 16
    USB Device: HP LaserJet P2035, 0x03f0  (Hewlett Packard), 0x5d17, 0xfa142000 / 13
    USB Device: Apple LED Cinema Display, apple_vendor_id, 0x9226, 0xfa146000 / 12
    USB Device: Display Audio, apple_vendor_id, 0x1105, 0xfa144000 / 11
    USB Device: Display iSight, apple_vendor_id, 0x8508, 0xfa145000 / 10
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 4
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 7
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0610, 0xfd140000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0610, 0xfd141000 / 6
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52b, 0xfd141200 / 8
    USB Device: CRCA102-3I1, 0x0764  (Cyber Power Systems, Inc.), 0x0501, 0xfd141100 / 7
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
    FireWire Device: My Book 111D, WD, 800mbit_speed

    After trying the update on the 10.8.2 version from Time Machine, the problem re-appeared.  Resetting the NVRAM did not help.  Finally tried Apple Support who suggested reinstalling the OS (which writes a complete version of 10.8.3 rather than the updated files).  That worked. 

  • Several programs crashing with Mavericks

    I have an iMac and I installed Mavericks about three days ago. Everything has been fine  - only a bit slower. However, today, I have tried to use my Epson V600 scanner, Adobe Elements 10, Print Shop, and Adobe Professional. All are crashing! I'm dying here and very worried as I need to scan something now and get it off in the morning. Am I needing to download additional or updated drivers for all these programs? I'm feeling sick...

    Let e elaborate on this just a bit. It looks as though the whole problem is the scanning. Elements, Print Shop and Adobe Professional work on their own - the problem, the crashing comes when I try to use the scanner either on its own or through one of the other programs. I am going to post the the message I get when the crash came with Adobe Acrobat Professional:
    Process:         Acrobat [474]
    Path:            /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/Acrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         8.0.0 (8.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [161]
    Responsible:     Acrobat [474]
    User ID:         502
    Date/Time:       2013-10-28 22:50:51.652 -0400
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  4BBDE7B8-DE31-5ABC-8C33-E9466AF310FB
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/Acrobat
        __TEXT                 0000000000001000-0000000000003000 [    8K] r-x/rwx SM=COW  /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/Acrobat
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0000000000 0 + 0
    1   com.epson.scan.devcl                    0x0dea82f4 PMDD::CDevice::CDevice(RegInfo*) + 712
    2   com.epson.scan.devcl                    0x0ded0522 PMDD::CNSDevice::CNSDevice(RegInfo*, char*) + 34
    3   com.epson.scan.devcl                    0x0dec0efe PMDD::CPmdd::PMInitialize(RegInfo*, unsigned long*, char*) + 840
    4   com.epson.scan.devcl                    0x0dec163c PMDD::CPmdd::IPMInit(RegInfo*, unsigned long*, char*) + 50
    5   com.epson.scan.scncl                    0x0e90d2eb CScannerDev::Init(RegInfo const*, unsigned long*, char*) + 173
    6   com.epson.scan.scncl                    0x0e90164f CScanner::Init(RegInfo const*, char*) + 713
    7   com.epson.scan.scncl                    0x0e987705 CFCScanner::Init(RegInfo const*, char*) + 67
    8   com.epson.scan.scncl                    0x0e94a3f1 CICEScanner::Init(RegInfo const*, char*) + 73
    9   com.epson.scan.scncl                    0x0e99a1e5 CVBIScanner::Init(RegInfo const*, char*) + 67
    10  com.epson.scan.scncl                    0x0e8f70c0 CScanImg::ISIInitialize(RegInfo const*, void const*) + 404
    11  com.epson.scan.twpmg                    0x0d915e35 CTriplet::Initialize(RegInfo const*, void const*) + 67
    12  com.epson.scan.twpmg                    0x0d913cbb CCtrlTriplet::OpenDS(TW_IDENTITY*, char*) + 115
    13  com.epson.scan.twpmg                    0x0d90b5f1 CImgTriplet::OpenDS(TW_IDENTITY*, char*) + 37
    14  com.epson.scan.twpmg                    0x0d910492 CCtrlTriplet::IdentityMsg(TW_IDENTITY*, unsigned short, char*) + 162
    15  com.epson.scan.twpmg                    0x0d914e49 CCtrlTriplet::EntryPoint(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 267
    16  com.epson.scan.twpmg                    0x0d90bb15 CImgTriplet::EntryPoint(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 81
    17  com.epson.scan.twpmg                    0x0d924611 CImgTriplet22::EntryPoint(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 87
    18  com.epson.scan.twpmg                    0x0d91836e DS_Entry + 136
    19  com.epson.scan.dscl                     0x0d8c4c53 CDSCtl::DoMSGOpenDS(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 701
    20  com.epson.scan.dscl                     0x0d8c4e41 CDSCtl::DoDATIdentity(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 153
    21  com.epson.scan.dscl                     0x0d8c4f28 CDSCtl::DoDGControl(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 160
    22  com.epson.scan.dscl                     0x0d8c5167 CDSCtl::DSEntry(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 133
    23  com.epson.scan.dscl                     0x0d8c53d0 DS_Entry + 116
    24  com.epson.scan.perfectionv600           0x0d89b7fb DS_Control(unsigned short, unsigned short, char*) + 745
    25  com.epson.scan.perfectionv600           0x0d89cd1d DS_Entry + 193
    26  org.twain.dsm                           0x03b052f7 -[DS callDS:dataGroup:dataArgumentType:messageID:dataPtr:] + 388
    27  org.twain.dsm                           0x03b04c4d -[DS openDS:dsIdentity:] + 92
    28  org.twain.dsm                           0x03b04844 -[DSM openDS] + 687
    29  org.twain.dsm                           0x03b0416f -[DSM identity] + 183
    30  org.twain.dsm                           0x03b0354a -[DSM entry:destination:dataGroup:dataArgumentType:messageID:dataPtr:] + 150
    31  org.twain.dsm                           0x03b03372 DSM_Entry + 159
    32  com.adobe.AcrobatPlugin.Scan            0x876e1886 AcroPluginMain + 116414
    33  com.adobe.AcrobatPlugin.Scan            0x8775a3f4 AcroPluginMain + 610860
    34  com.adobe.AcrobatPlugin.Scan            0x8775bad9 AcroPluginMain + 616721
    35  com.adobe.AcrobatPlugin.Scan            0x8775c252 AcroPluginMain + 618634
    36  com.adobe.AcrobatPlugin.Scan            0x8775de2f AcroPluginMain + 625767
    37  com.adobe.AcrobatPlugin.Scan            0x8775ded4 AcroPluginMain + 625932
    38  com.adobe.AcrobatPlugin.Scan            0x8775ea1e AcroPluginMain + 628822
    39  com.adobe.AcrobatPlugin.Scan            0x8775eaef AcroPluginMain + 629031
    40  com.adobe.AcrobatPlugin.Scan            0x876d57f3 AcroPluginMain + 67115
    41  com.adobe.AcrobatPlugin.Scan            0x876d661c AcroPluginMain + 70740
    42  com.adobe.AcrobatPlugin.Scan            0x876d7384 AcroPluginMain + 74172
    43  com.adobe.Acrobat.framework             0x84398497 CopiesPagesPDE_Open + 1922123
    44  com.adobe.Acrobat.framework             0x8439859d CopiesPagesPDE_Open + 1922385
    45  com.adobe.Acrobat.framework             0x8418d64a RunAcrobat + 2092300
    46  libobjc.A.dylib                         0x9aee02af -[NSObject performSelector:withObject:] + 70
    47  com.apple.AppKit                        0x9b92ec35 -[NSApplication sendAction:to:from:] + 438
    48  com.apple.AppKit                        0x9b94afe5 -[NSMenuItem _corePerformAction] + 486
    49  com.apple.AppKit                        0x9b94acea -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 163
    50  com.apple.AppKit                        0x9b94a3a1 -[NSMenu _performActionWithHighlightingForItemAtIndex:sendAccessibilityNotification:] + 79
    51  com.apple.AppKit                        0x9b99da14 -[NSMenu performActionForItemAtIndex:] + 65
    52  com.apple.AppKit                        0x9b99d9c9 -[NSMenu _internalPerformActionForItemAtIndex:] + 45
    53  com.apple.AppKit                        0x9b99d994 -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 106
    54  com.apple.AppKit                        0x9b99d7e4 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 120
    55  com.apple.AppKit                        0x9b940136 NSSLMMenuEventHandler + 816
    56  com.apple.HIToolbox                     0x91fa5eb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    57  com.apple.HIToolbox                     0x91df964f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    58  com.apple.HIToolbox                     0x91df8968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    59  com.apple.HIToolbox                     0x91e0baf1 SendEventToEventTarget + 88
    60  com.apple.HIToolbox                     0x91fa5d5e SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 478
    61  com.apple.HIToolbox                     0x91e6f097 SendMenuCommandWithContextAndModifiers + 70
    62  com.apple.HIToolbox                     0x91e6f044 SendMenuItemSelectedEvent + 199
    63  com.apple.HIToolbox                     0x91e6ef11 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 134
    64  com.apple.HIToolbox                     0x91ffa6bd MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 722
    65  com.apple.HIToolbox                     0x91e768ae _HandleMenuSelection2 + 488
    66  com.apple.HIToolbox                     0x91e766b7 _HandleMenuSelection + 53
    67  com.apple.AppKit                        0x9b8ad628 _NSHandleCarbonMenuEvent + 358
    68  com.apple.AppKit                        0x9b702902 _DPSNextEvent + 2459
    69  com.apple.AppKit                        0x9b701ad0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    70  com.apple.AppKit                        0x9b6f435c -[NSApplication run] + 727
    71  com.adobe.Acrobat.framework             0x83f8f44a RunAcrobat + 2828
    72  com.adobe.Acrobat.framework             0x83f8ea6e RunAcrobat + 304
    73  com.adobe.Acrobat.Pro                   0x00002e8b start + 2455
    74  com.adobe.Acrobat.Pro                   0x00002602 start + 270
    75  com.adobe.Acrobat.Pro                   0x0000251d start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x951b6992 kevent64 + 10
    1   libdispatch.dylib                       0x946fa8bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x946fa556 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x951b6046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x964a7dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x964abcce start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x951b6046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x964a7dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x964abcce start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x951b0fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x96fa6311 MPWaitOnSemaphore + 104
    2   AdobeACE                                0x8fc3a0c5 ACEInitialize + 6319
    3   AdobeACE                                0x8fc39a51 ACEInitialize + 4667
    4   com.apple.CoreServices.CarbonCore          0x96fa656e PrivateMPEntryPoint + 68
    5   libsystem_pthread.dylib                 0x964a65fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x964a6485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x964abcf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x951b0fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x96fa6311 MPWaitOnSemaphore + 104
    2   AdobeACE                                0x8fc3a0c5 ACEInitialize + 6319
    3   AdobeACE                                0x8fc39a51 ACEInitialize + 4667
    4   com.apple.CoreServices.CarbonCore          0x96fa656e PrivateMPEntryPoint + 68
    5   libsystem_pthread.dylib                 0x964a65fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x964a6485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x964abcf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x951b0fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x96fa6311 MPWaitOnSemaphore + 104
    2   AdobeACE                                0x8fc3a0c5 ACEInitialize + 6319
    3   AdobeACE                                0x8fc39a51 ACEInitialize + 4667
    4   com.apple.CoreServices.CarbonCore          0x96fa656e PrivateMPEntryPoint + 68
    5   libsystem_pthread.dylib                 0x964a65fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x964a6485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x964abcf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x951b0f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x951b016c mach_msg + 68
    2   com.apple.CoreFoundation                0x99b01f69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x99b01541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x99b00d5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x99b00bbb CFRunLoopRunInMode + 123
    6   com.apple.AppKit                        0x9b8abf18 _NSEventThread + 283
    7   libsystem_pthread.dylib                 0x964a65fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x964a6485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x964abcf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x951b0f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x951b016c mach_msg + 68
    2   com.apple.CoreFoundation                0x99b01f69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x99b01541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x99b00d5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x99b00bbb CFRunLoopRunInMode + 123
    6   com.adobe.AcrobatPlugin.Comments          0x8c66e6cb AcroPluginMain + 1083631
    7   com.adobe.AcrobatPlugin.Comments          0x8c66f29b AcroPluginMain + 1086655
    8   com.apple.CoreServices.CarbonCore          0x96fa656e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x964a65fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x964a6485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x964abcf2 thread_start + 34
    Thread 9:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x951b0f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x951b016c mach_msg + 68
    2   com.apple.QuartzCore                    0x9406ca7d CA::Render::Server::server_thread(void*) + 232
    3   com.apple.QuartzCore                    0x9406c98c thread_fun + 29
    4   libsystem_pthread.dylib                 0x964a65fb _pthread_body + 144
    5   libsystem_pthread.dylib                 0x964a6485 _pthread_start + 130
    6   libsystem_pthread.dylib                 0x964abcf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x951b6046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x964a7dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x964abcce start_wqthread + 30
    Thread 11:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x951b5b76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9524205b nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib                       0x95241f06 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x9b976ddc -[NSUIHeartBeat _heartBeatThread:] + 2318
    4   com.apple.Foundation                    0x97944f2e -[NSThread main] + 45
    5   com.apple.Foundation                    0x97944e86 __NSThread__main__ + 1426
    6   libsystem_pthread.dylib                 0x964a65fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x964a6485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x964abcf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x951b6046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x964a7dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x964abcce start_wqthread + 30
    Thread 13:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x951b57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x964a8d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x964aabd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo                     0x91ca4540 CVDisplayLink::runIOThread() + 936
    4   com.apple.CoreVideo                     0x91ca4180 startIOThread(void*) + 159
    5   libsystem_pthread.dylib                 0x964a65fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x964a6485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x964abcf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x951b6046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x964a7dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x964abcce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00391a1c  ebx: 0x0dea8039  ecx: 0x00000000  edx: 0x00000000
      edi: 0xbfffc27c  esi: 0x0def56cc  ebp: 0xbfffbe38  esp: 0xbfffbdec
       ss: 0x00000023  efl: 0x00010202  eip: 0x00000000   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU:     0
    Error Code:      0x00000014
    Trap Number:     14
    Binary Images:
        0x1000 -     0x2fff +com.adobe.Acrobat.Pro (8.0.0 - 8.0.0) <6FC21A8F-6201-453F-B620-F2EF8BA25BE0> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/Acrobat
    0x399a000 -  0x39a5ffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x39d3000 -  0x39d4ff5 +cl_kernels (???) <F1C91D5C-FA19-4397-BC2C-6BA22542D942> cl_kernels
    0x3abc000 -  0x3accfd7 +com.adobe.registration (adobe_registration 2.0.0 - 2.0) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/adobe_registration.framework/adobe_registr ation
    0x3b02000 -  0x3b08fff  org.twain.dsm (1.9.5 - 1.9.5) <3CE5B8E4-1F2D-3694-890D-B3965F244443> /System/Library/Frameworks/TWAIN.framework/TWAIN
    0x3b14000 -  0x3b14ff3 +cl_kernels (???) <DB6C740A-742A-4584-A120-F800B8D8DB14> cl_kernels
    0x571a000 -  0x573fff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x57e6000 -  0x57e7ffd  com.apple.textencoding.unicode (2.6 - 2.6) <27946D57-CEFB-3EF1-B124-4A39D2621738> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x7eed000 -  0x7f03fff +com.adobe.selfhealer (AdobeSelfHealing version 2.1.0 - 2.1.0) <A6A98D18-4FEA-47EA-AED5-C08416DF5C50> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeSelfHealing.framework/AdobeSelfHealin g
    0x7f0c000 -  0x7f1bfc4 +com.adobe.personalization (adobe_personalization 2.0.0 - 2.0) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/adobe_personalization.framework/adobe_pers onalization
    0x7f22000 -  0x7f2dfef +com.adobe.epic (adobe_epic 2.0.0 - 2.0) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/adobe_epic.framework/adobe_epic
    0x7f32000 -  0x7f76ff7 +com.adobe.adobe_pcd (adobe_pcd 1.0.0 - 1.0) <26ED7749-B5C3-40AA-B138-B5A3C030EE56> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/adobe_pcd.framework/adobe_pcd
    0x7f7b000 -  0x7f88ff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/asneu.framework/asneu
    0x7fc8000 -  0x7fc8ffd +cl_kernels (???) <21272A71-0839-44C0-AA1E-31F8AC9847C0> cl_kernels
    0xa18c000 -  0xa277ff7  unorm8_bgra.dylib (2.3.58) <44644D3C-3D0E-3CBB-9265-664D95EC791F> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0xa5fc000 -  0xa5fdff1 +cl_kernels (???) <90D71A0B-65E9-490E-929C-DF31AD4F7FE0> cl_kernels
    0xa7a2000 -  0xa7a2fff +cl_kernels (???) <9D0C0EA4-0FBA-4BDB-9D1C-1419660FB555> cl_kernels
    0xae00000 -  0xae86ff7  com.apple.iLifeMediaBrowser (2.8.0 - 637) <2D3B36A1-EFE0-36D4-83A2-668FE02AF862> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0xaef6000 -  0xaefaff9  libgermantok.dylib (14) <F6DEC1E3-5AAA-3BEB-9EF3-92608F4A094D> /usr/lib/libgermantok.dylib
    0xca8a000 -  0xca98fff  libSimplifiedChineseConverter.dylib (61) <6E42E198-9C8D-3F0F-9660-6D9975C2461E> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xcb48000 -  0xcb5affd  libTraditionalChineseConverter.dylib (61) <EFC81138-0455-321B-A93A-F4E9C4A3EB31> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xd877000 -  0xd889ff2 +com.twainds.scangear1020.canon (10.2.4.0 - 10.2.4.0) /Library/Image Capture/TWAIN Data Sources/*/CanoScan 8400F
    0xd89a000 -  0xd8b2ff7 +com.epson.scan.perfectionv600 (3.9.2.0 - 3.9.2.0) /Library/Image Capture/TWAIN Data Sources/*/EPSON Perfection V600
    0xd8c1000 -  0xd8dbff7 +com.epson.scan.dscl (3.9.1f1 - 3.9.1f1) /Library/Image Capture/TWAIN Data Sources/*/DS Control.bundle/Contents/MacOS/DS Control
    0xd8eb000 -  0xd930fe7 +com.epson.scan.twpmg (3.9.2f0 - 3.9.2f0) /Library/Image Capture/TWAIN Data Sources/*/TWAIN Protocol Manager.bundle/Contents/MacOS/TWAIN Protocol Manager
    0xd954000 -  0xd960fe7 +com.epson.scan.DDC (1.1.0 - 1.1.0) /Library/Image Capture/TWAIN Data Sources/*/EsDDC.bundle/Contents/MacOS/EsDDC
    0xd967000 -  0xd976fe0 +com.epson.scan.EsDDE (2.0.7 - 2.0.7) /Library/Image Capture/TWAIN Data Sources/*/EsDDE.bundle/Contents/MacOS/EsDDE
    0xdea4000 -  0xdef2fca +com.epson.scan.devcl (3.9.2f1 - 3.9.2f1) /Library/Image Capture/TWAIN Data Sources/*/Device Control.bundle/Contents/MacOS/Device Control
    0xdf83000 -  0xdfd7ffd +com.adobe.AdobeXMPCore (Adobe XMP Core 4.0 -c 316 44 . 253921  - 0) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeXMP.framework/AdobeXMP
    0xe800000 -  0xe8b0fff  ColorSyncDeprecated.dylib (426) <F54DBFF3-3165-3D15-8AE4-37B603502A5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xe8f3000 -  0xe9c1fc3 +com.epson.scan.scncl (3.9.2f0 - 3.9.2f0) /Library/Image Capture/TWAIN Data Sources/*/Scan Control.bundle/Contents/MacOS/Scan Control
    0xf500000 -  0xf66afc7 +com.adobe.Acrobat.adm (8.0.0 - 8.0.0) <66737F1D-E9EB-49CD-9D81-A2429ABF53E6> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/SPPlugins/AdobeADM.bundle/Contents/MacOS/AdobeA DM
    0x40000000 - 0x400a6fc8 +AdobeJP2K (0) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x45000000 - 0x450ac25f +com.adobe.Preflight (Preflight version 8.0.0 [224] - 8.0.0 [224]) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Preflight.acroplugin/Preflight
    0x50000000 - 0x502b7ff7  com.apple.AMDRadeonX3000GLDriver (1.14.21 - 1.1.4) <C2A4FAFD-AFB3-342D-81A0-7388055CDD5C> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
    0x83f8c000 - 0x84e35fe4 +com.adobe.Acrobat.framework (Acrobat version 8.0.0 - 8.0.0) <94E1BCA6-3332-47E5-BDBD-98F35C7CB58A> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/Acrobat.framework/Acrobat
    0x869f5000 - 0x86a1dfea +com.adobe.AcrobatPlugin.WebLink (8.0.0 - 8.0.0) <2D2BBB90-AD20-4249-A8D7-5FCDEBC5AD8E> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/WebLink.acroplugin/Contents/MacOS/WebLink
    0x86a6a000 - 0x86b0afca +com.adobe.AcrobatPlugin.Web2PDF (8.0.0 - 8.0.0) <95AC7473-90CB-4F62-9222-4FB36AE7FB26> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Web2PDF.acroplugin/Contents/MacOS/Web2PDF
    0x86cab000 - 0x86cdbfea +com.adobe.AcrobatPlugin.Updater (8.0.0 - 8.0.0) <F5F74E7A-D86E-4AD0-917F-66FF008D4F26> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Updater.acroplugin/Contents/MacOS/Updater
    0x86d39000 - 0x86f24b2f +com.adobe.AcrobatPlugin.TouchUp (8.0.0 - 8.0.0) <8A1DB3DC-A7A5-478D-AF18-A8E6331F0351> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/TouchUp.acroplugin/Contents/MacOS/TouchUp
    0x872f5000 - 0x87316ffb +com.adobe.AcrobatPlugin.TablePicker (8.0.0 - 8.0.0) <F26DECF4-3A5C-4FCE-ABF7-CD6DF87DCDB2> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/TablePicker.acroplugin/Contents/MacOS/TableP icker
    0x87361000 - 0x87436047 +com.adobe.AcrobatPlugin.Spelling (8.0.0 - 8.0.0) <CDE64DEC-984F-4592-A421-D98DDCB4649B> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Spelling.acroplugin/Contents/MacOS/Spelling
    0x87567000 - 0x87583fff +com.adobe.AcrobatPlugin.SendMail (8.0.0 - 8.0.0) <BEFCFE6C-B189-45CE-80BF-D1034070AFA9> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/SendMail.acroplugin/Contents/MacOS/SendMail
    0x875bd000 - 0x87622fcf +com.adobe.AcrobatPlugin.Search (8.0.0 - 8.0.0) <824B9A2D-21A9-47EA-8AD0-C4B5C7FBDD22> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Search.acroplugin/Contents/MacOS/Search
    0x876c4000 - 0x8778efe2 +com.adobe.AcrobatPlugin.Scan (8.0.0 - 8.0.0) <14BF5FAB-7C17-40A1-A66A-C52651D4E04E> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Scan.acroplugin/Contents/MacOS/Scan
    0x8782d000 - 0x8788f2df +com.adobe.AcrobatPlugin.SaveAsXML (8.0.0 - 8.0.0) <96B533FC-AB0C-4814-9075-42FFD9FA5CA3> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/SaveAsXML.acroplugin/Contents/MacOS/SaveAsXM L
    0x879bd000 - 0x87a19fca +com.adobe.AcrobatPlugin.SaveAsRTF (8.0.0 - 8.0.0) <1CA1109B-BD29-41E0-8B43-BBD727E208FA> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/SaveAsRTF.acroplugin/Contents/MacOS/SaveAsRT F
    0x87aba000 - 0x87b1bfdf +com.adobe.AcrobatPlugin.Reflow (8.0.0 - 8.0.0) <58002CC2-E9BD-4F0B-A7C8-24B68C13EFA0> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Reflow.acroplugin/Contents/MacOS/Reflow
    0x87bd1000 - 0x87be6fc0 +com.adobe.AcrobatPlugin.ReadOutLoud (8.0.0 - 8.0.0) <328F391F-BEAD-4F40-B271-116F4A086524> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/ReadOutLoud.acroplugin/Contents/MacOS/ReadOu tLoud
    0x87c12000 - 0x8827c1e8 +com.adobe.AcrobatPlugin.PPKLite (8.0.0 - 8.0.0) <A9D154DC-3FA0-43FA-AE7B-DF21A3757DE4> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/PPKLite.acroplugin/Contents/MacOS/PPKLite
    0x88f4f000 - 0x88fd5fcb +com.adobe.AcrobatPlugin.PDDom (8.0.0 - 8.0.0) <110E7BEF-0C0A-4C40-BCAE-ABA9104C91BE> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/PDDom.acroplugin/Contents/MacOS/PDDom
    0x89102000 - 0x8912afdf +com.adobe.AcrobatPlugin.PaperCapture (8.0.0 - 8.0.0) <9F1E3DC1-60B5-4846-8970-BAC5E8974BE0> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/PaperCapture.acroplugin/Contents/MacOS/Paper Capture
    0x8916e000 - 0x8931ffd6 +com.adobe.AcrobatPlugin.Multimedia (8.0.0 - 8.0.0) <68E3E3B3-B505-4551-826D-CE7691E4DD5B> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Multimedia.acroplugin/Contents/MacOS/Multime dia
    0x897a8000 - 0x89b63fee +com.adobe.AcrobatPlugin.MakeAccessible (8.0.0 - 8.0.0) <EB58E402-D67B-468F-9ACF-604E8E632DE1> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/MakeAccessible.acroplugin/Contents/MacOS/Mak eAccessible
    0x8a070000 - 0x8a136fc7 +com.adobe.AcrobatPlugin.JDFProdDef (8.0.0 - 8.0.0) <8EBDAB15-37E4-42C2-A945-7D92C5EECF9C> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/JDFProdDef.acroplugin/Contents/MacOS/JDFProd Def
    0x8a26d000 - 0x8a284ffe +com.adobe.AcrobatPlugin.InDesignPI (8.0.0 - 8.0.0) <15425C06-A055-4A43-8E32-C26BBB9B5651> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/InDesignPI.acroplugin/Contents/MacOS/InDesig nPI
    0x8a2ac000 - 0x8a388ebb +com.adobe.AcrobatPlugin.ImageConversion (8.0 - 8.0) <1437D021-B018-458E-92C8-93C6F4B0EFB3> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/ImageConversion.acroplugin/Contents/MacOS/Im ageConversion
    0x8a451000 - 0x8a740ffb +com.adobe.AcrobatPlugin.HTML2PDF (8.0.0 - 8.0.0) <C4820D26-D8B6-4A3C-BC2C-155D36A3E2EA> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/HTML2PDF.acroplugin/Contents/MacOS/HTML2PDF
    0x8b128000 - 0x8b12ffdf +com.adobe.AcrobatPlugin.HLS (8.0.0 - 8.0.0) <E62AB987-FF39-4D30-95A3-3E5B892D5903> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/HLS.acroplugin/Contents/MacOS/HLS
    0x8b140000 - 0x8b169fff +com.adobe.AcrobatPlugin.EWH (8.0.0 - 8.0.0) <88C9E01D-8F27-4AEB-8949-78B5701C8460> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/EWH.acroplugin/Contents/MacOS/EWH
    0x8b1b4000 - 0x8b353fcb +com.adobe.AcrobatPlugin.EScript (8.0.0 - 8.0.0) <B3E2AF8F-5B97-4E23-980E-AB0398E84CBB> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/EScript.acroplugin/Contents/MacOS/EScript
    0x8b57a000 - 0x8b5a6ff7 +com.adobe.AcrobatPlugin.EFS (8.0.0 - 8.0.0) <7FF9F374-D4C2-4D63-9CEC-628A46270739> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/EFS.acroplugin/Contents/MacOS/EFS
    0x8b61c000 - 0x8b975e28 +com.adobe.AcrobatPlugin.Editor (8.0.0 - 8.0.0) <26EAA777-3C5D-4E1D-AF08-3B40414F72F2> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Editor.acroplugin/Contents/MacOS/Editor
    0x8c18d000 - 0x8c196fe7 +com.adobe.AcrobatPlugin.eBook (8.0 - 8.0) <2E333F69-8FAC-4152-99C0-831CFD8B9C56> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/eBook.acroplugin/Contents/MacOS/eBook
    0x8c1b0000 - 0x8c1cefff +com.adobe.AcrobatPlugin.DVA (8.0.0 - 8.0.0) <FA7ABD85-AEBB-422E-AA92-6285B74F9DEA> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/DVA.acroplugin/Contents/MacOS/DVA
    0x8c1f6000 - 0x8c206fef +com.adobe.AcrobatPlugin.Distiller (8.0 - 8.0) <69B6BC96-2FD4-4ED2-98D4-2C65458215B1> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/DistillerPI.acroplugin/Contents/MacOS/Distil lerPI
    0x8c224000 - 0x8c362fee +com.adobe.AcrobatPlugin.DigSig (8.0.0 - 8.0.0) <388015E0-F3A7-4ADF-A576-E9643FE06787> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/DigSig.acroplugin/Contents/MacOS/DigSig
    0x8c563000 - 0x8c94e6e7 +com.adobe.AcrobatPlugin.Comments (8.0 - 8.0.0) <7FCAF207-F8D0-4793-A1A1-88670D43F407> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Comments.acroplugin/Contents/MacOS/Comments
    0x8cfe9000 - 0x8d06dfe2 +com.adobe.AcrobatPlugin.Checkers (8.0.0 - 8.0.0) <8D93AE2A-D116-423C-A704-A5C632E5F910> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Checkers.acroplugin/Contents/MacOS/Checkers
    0x8d1df000 - 0x8d21efcf +com.adobe.AcrobatPlugin.Catalog (8.0.0 - 8.0.0) <0EFFAC59-C338-42A4-BB92-DEE97D888D0B> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Catalog.acroplugin/Contents/MacOS/Catalog
    0x8d28a000 - 0x8dae690c +com.adobe.AcrobatPlugin.AcroForm (8.0.0 - 8.0.0) <824092CE-BD04-4994-A6B7-64EB231C010F> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/AcroForm.acroplugin/Contents/MacOS/AcroForm
    0x8e956000 - 0x8e99cfeb +com.adobe.AcrobatPlugin.Accessibility (8.0.0 - 8.0.0) <B858F5BC-8FB6-478A-9859-7E9E131E4307> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Accessibility.acroplugin/Contents/MacOS/Acce ssibility
    0x8ea27000 - 0x8ec88fcf +AdobeCoolType (1) <8802F7FF-15A4-496B-88E7-5DF2D6FF0946> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCo olType
    0x8efdd000 - 0x8eff6ff7 +AdobeBIB (1) <25F81A44-3778-4EBA-A158-4B17885DDFFC> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x8f03c000 - 0x8f496fe7 +AdobeAGM (1) <36369F6F-7740-4231-80CD-7A84BA8DE67D> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x8fc37000 - 0x8fd2dff7 +AdobeACE (1) <DC253EAF-FF51-44C8-8959-BA42103CD701> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x8feef000 - 0x8ff21417  dyld (239.3) <4B280BB1-55F8-313F-86A6-8ADD644ED69E> /usr/lib/dyld
    0x90008000 - 0x9003efff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x9003f000 - 0x90385ffb  com.apple.MediaToolbox (1.0 - 1273.29) <60F62850-70EC-38E8-9C7F-81204CF9C382> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x90386000 - 0x903f1ff9  com.apple.Heimdal (4.0 - 2.0) <E3091095-A893-3089-8DA1-8705B3BE5BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x903f2000 - 0x903f6ffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x903f7000 - 0x9042cffd  libssl.0.9.8.dylib (50) <F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9> /usr/lib/libssl.0.9.8.dylib
    0x9042d000 - 0x9043afff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x9043b000 - 0x9047dfff  libGLU.dylib (9.0.83) <0D9BFE5A-435E-3C66-AF96-D3567B8FC87B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9047e000 - 0x904acff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x904ad000 - 0x9061dfff  com.apple.QTKit (7.7.3 - 2826) <C6C84EA7-E9C6-3891-B76F-C497C4A2ED65> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9061e000 - 0x9062bff7  com.apple.HelpData (2.1.4 - 90) <5BACC236-5B40-33AC-B088-87EDEFAF1D3E> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90637000 - 0x90661ff7  libsandbox.1.dylib (278.10) <28813216-B652-3E4D-B0D5-BE49B385C6EC> /usr/lib/libsandbox.1.dylib
    0x90662000 - 0x90663fff  com.apple.marco (10.0 - 1000) <F7AD1FF7-5B1E-3D3C-AF00-FA3A43118CE5> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x90664000 - 0x90669ff3  libsystem_platform.dylib (24.1.4) <875321B9-34EF-3FCC-880C-633FA05223F5> /usr/lib/system/libsystem_platform.dylib
    0x9066a000 - 0x9074dff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0x9074e000 - 0x9074fff7  com.apple.diagnosticlogcollection (10.0 - 1000) <B2525E0D-2BB1-3AF6-BDCA-56DCDC1F7DBF> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
    0x90750000 - 0x90760ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90761000 - 0x90765ffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90766000 - 0x90a8cffb  com.apple.JavaScriptCore (9537 - 9537.65) <402E2B2F-AA3F-33E6-BD7D-46B1E9314311> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90a8d000 - 0x90ad3fff  libcurl.4.dylib (78) <EC84399F-5EA8-321B-B122-99730CC557C8> /usr/lib/libcurl.4.dylib
    0x90ad4000 - 0x90afcff7  libRIP.A.dylib (599.7) <461297C0-DDA9-3613-8F27-D7F1AC57208F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x90afd000 - 0x90b10ff7  com.apple.idsfoundation (10.0 - 1000) <1C0CCF49-109E-3C34-96ED-466B7BEB8551> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
    0x90b42000 - 0x90c79ff3  com.apple.desktopservices (1.8 - 1.8) <4D853961-F911-3FE2-A7DF-3130EA1D8CEB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90c7a000 - 0x90d4afef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90d4b000 - 0x90de2ff7  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
    0x90de3000 - 0x911dbff3  com.apple.CoreGraphics (1.600.0 - 599.7) <DB004990-F06F-3768-AE4C-191B3C748EFC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x911df000 - 0x9122dff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9122e000 - 0x91249ff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9124a000 - 0x91252fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x912a2000 - 0x91317ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <5C9BC698-0CC1-3F6A-9F9D-BCC3A9C3D6DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91318000 - 0x9135eff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9135f000 - 0x9139eff7  com.apple.bom (12.0 - 192) <50F9D23C-9C9A-38BF-B4E2-66D93BE2A174> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9139f000 - 0x91723ff7  com.apple.FinderKit (1.2 - 1.2) <97A5857E-B4D8-3473-8A54-147F36E63EFA> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x91724000 - 0x91727ff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91728000 - 0x91786ff7  com.apple.CoreUtils (1.9 - 190.4) <9E43FF7D-7FCD-3032-9EF9-BCF6D09E73C3> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x9178f000 - 0x917e4ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x917e5000 - 0x91800ff6  libPng.dylib (1038) <F39168D4-ABEB-3C2D-A763-B9D3E1EF43BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91801000 - 0x9180afff  com.apple.DiskArbitration (2.6 - 2.6) <6379523D-3196-370C-AE4A-8EA586E36909> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9180b000 - 0x9182eff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0x9182f000 - 0x91859fff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x9185a000 - 0x9185affd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x9185b000 - 0x9185ffff  com.apple.IOAccelerator (98.7.1 - 98.7.1) <8D098F2D-5884-3E61-8D20-5B9A7847BC20> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
    0x91860000 - 0x918e5ffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x918e6000 - 0x918e9ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x918ea000 - 0x91a5cffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <E5FFD35D-18CF-333C-BECE-39F8E47BE707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91a5d000 - 0x91ac7ff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x91ac9000 - 0x91b01fff  com.apple.LDAPFramework (2.4.28 - 194.5) <0C42A932-15E8-3CD1-AC35-1DF7D41B25A2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91b02000 - 0x91b15fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91b16000 - 0x91b47ff4  com.apple.securityinterface (9.0 - 55047) <0D5ED2B8-C973-3C91-BA45-22501A043263> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91b48000 - 0x91b4affe  libCVMSPluginSupport.dylib (9.0.83) <BD30BDD1-DD5B-3F31-A09B-C274EA93CD7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x91b4b000 - 0x91ba9fff  com.apple.ViewBridge (1.0 - 46) <62450F2D-C27A-3D11-BA41-AF8C6B18BEDD> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x91baa000 - 0x91baafff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91bab000 - 0x91c09ffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91c0a000 - 0x91c0cfff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x91c0d000 - 0x91c80fff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91c81000 - 0x91ca1fff  com.apple.facetimeservices (10.0 - 1000) <BD92DB29-AD36-3B60-A5EF-F4A68F1394A1> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x91ca2000 - 0x91cc9fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91d6b000 - 0x91d79ff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x91d7a000 - 0x91d84ff2  com.apple.AppSandbox (3.0 - 1) <085C3B38-C7D8-3A62-AFC6-CEE27F93DFD1> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x91d85000 - 0x91d8dffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x91d8e000 - 0x91df0ff3  com.apple.imfoundation (10.0 - 1000) <20565092-0897-3E34-A35A-E1F027D53A26> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x91df1000 - 0x92166ff9  com.apple.HIToolbox (2.1 - 695) <74E2DE33-E48E-3206-BD78-AFB988235A83> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92167000 - 0x921dcffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x921dd000 - 0x921effff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x921f0000 - 0x921f3ffa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x921f4000 - 0x92255ff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x92261000 - 0x92264ffe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x9226e000 - 0x926a2ff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x926a3000 - 0x926a7ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x926a8000 - 0x92798ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x92799000 - 0x92807ffb  libType1Scaler.dylib (112) <193E1B2C-F137-322D-A89C-2314D8F06AB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x92808000 - 0x9280bff3  com.apple.AppleSystemInfo (3.0 - 3.0) <99A923AE-121B-307D-AC1C-968976FBA225> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x9280c000 - 0x92861ff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x92862000 - 0x9286cff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <D6735614-EF4B-389F-BF99-7D8416A504BA> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9286d000 - 0x92877fff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x92878000 - 0x928b4ff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x928b5000 - 0x9299bff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9299c000 - 0x92a87ff4  com.apple.DiskImagesFramework (10.9 - 371.1) <FC13BD5A-0FB7-35D5-A8DF-0510CFA996FE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x92a88000 - 0x92a88fff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92a89000 - 0x92aa1fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92aa2000 - 0x92aaeffe  libkxld.dylib (2422.1.72) <F9B35FA5-C936-3286-A055-2B0780A674AC> /usr/lib/system/libkxld.dylib
    0x92aaf000 - 0x92ab0fff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x92ab1000 - 0x92adcff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x92add000 - 0x92ae3ffc  libCGXCoreImage.A.dylib (599.7) <87F9F4B2-487E-3B11-A869-D6CBDAB39055> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
    0x92ae4000 - 0x92ae5fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x92ae6000 - 0x92f8dfe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x92f8e000 - 0x92faaff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x92fab000 - 0x92ffefff  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
    0x92fff000 - 0x9303cffb  libGLImage.dylib (9.0.83) <FA15FEB5-54E4-313B-8E78-A2D2E6C88FE1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9303d000 - 0x9307cff5  com.apple.ids (10.0 - 1000) <AEDCAD16-6626-3A0B-A9BE-3FC8A47CEB52> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
    0x9307d000 - 0x9307efff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x9307f000 - 0x930d4fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x930d5000 - 0x93171fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93acd000 - 0x93ef2fe3  com.apple.VideoToolbox (1.0 - 1273.29) <200BFEED-8948-3266-A2C4-1DC6A695EC58> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x93ef3000 - 0x93efbfee  libcldcpuengine.dylib (2.3.58) <713322D8-A643-3B9F-8194-9C4020D8A4D6> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x93efc000 - 0x93fc9ff7  com.apple.backup.framework (1.5 - 1.5) <E33257DD-A751-3230-89B7-B4B79F70A8FB> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93fca000 - 0x93fe9ff9  com.apple.framework.Apple80211 (9.0 - 900.47) <68E399FF-AB98-378D-94AC-D0869A72344F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x93fea000 - 0x94043ffa  libTIFF.dylib (1038) <691DAAFD-D72B-3BE9-AE5C-84AF86BE66CD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94044000 - 0x941f0ff1  com.apple.QuartzCore (1.8 - 332.0) <07F9B77F-35A2-3D21-99FA-CD3FCE5B9C7B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x941f1000 - 0x94245fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <95A1E1CF-FC3E-3203-8683-34823CD70B6B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94246000 - 0x944c2ff7  com.apple.QuickTime (7.7.3 - 2826) <D9F2857B-5668-3828-B85E-0F897462C8D8> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x944c3000 - 0x944c8fff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x944c9000 - 0x9468fffb  libicucore.A.dylib (511.25) <44DDE9A4-578E-3D23-A41A-D8795D000A18> /usr/lib/libicucore.A.dylib
    0x946f7000 - 0x9470fffd  libdispatch.dylib (339.1.9) <6249BAE5-044F-3A7A-9CCC-03FF7E6B405B> /usr/lib/system/libdispatch.dylib
    0x94710000 - 0x94712ffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x94713000 - 0x94715ff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x94716000 - 0x94767ffb  com.apple.CoreMedia (1.0 - 1273.29) <BE08E6C7-5E6F-3B54-9C17-751CFCBD823D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94768000 - 0x94768fff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94769000 - 0x9476bfff  com.apple.SecCodeWrapper (3.0 - 1) <29ECC157-F444-31FE-99CC-A9289FF3AC8D> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x9476c000 - 0x949edff3  com.apple.RawCamera.bundle (4.09 - 711) <F60727D9-0CD4-3315-84F8-1AC2C691751C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x949ee000 - 0x949f9ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x949fa000 - 0x94a2cff7  libTrueTypeScaler.dylib (111.1) <A568EE4C-1588-3F8B-8640-F02CEFC5AF09> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x94a2d000 - 0x94a44ff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x94a45000 - 0x94a6dfff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x94a6e000 - 0x94a99ff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x94a9a000 - 0x94a9afff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94a9b000 - 0x94b02ffc  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <8DADD7D2-AB98-34ED-8D6F-335338502CBE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x94b03000 - 0x94b8cfff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x94b8d000 - 0x94b95ff7  libCGCMS.A.dylib (599.7) <A7404924-9A2B-3324-A934-BD08953E7098> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x94b96000 - 0x94bbbff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94bbc000 - 0x94bc5ffa  com.apple.CommonAuth (4.0 - 2.0) <6CB82D57-3C55-39E5-9036-8047DF3E6F57> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x94bc6000 - 0x94cb2ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x94cb3000 - 0x94cdfff7  GLRendererFloat (9.0.83) <53D57A4C-3973-33ED-A0EF-1BCFE1B97A42> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x94d95000 - 0x94dd2ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x94dd3000 - 0x94e04ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x94e05000 - 0x95072ff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95073000 - 0x95073fff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x95099000 - 0x950adff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x950ae000 - 0x95189ff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.fram

  • Several programs crash with Glib-GIO error

    in my notebook several programs crash with an error ouput:
    (here for firefox)
    (firefox:6303): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    (firefox:6303): GLib-CRITICAL **: g_error_free: assertion `error != NULL' failed
    (firefox:6303): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    (firefox:6303): GLib-GIO-WARNING **: (gfile.c:5244):IA__g_file_load_partial_contents_finish: runtime check failed: (g_simple_async_result_get_source_tag (simple) == g_file_load_contents_async)
    Speicherzugriffsfehler
    - firefox crashes every time i try to browse for a file (fileupload form).
    - nautilus --no-desktop crashes also before the gui is loaded with the same error output.
    - same to brasero
    - same to gnomebaker
    - evince crashes on open/file (again when browser should be opened)
    thunar works, seems there is a problem with nautilus or any gnome's lib
    on my another pc also running arch, there are no such problems.. would be great if anyone would help.
    every hint is welcome, since i'm pretty frustrated.. google and irc didn't help.
    thank you in advance

    Hi
    I experience a very similar problem.
    Whenever I insert a blank CDrom or a blank dvd some applications crash that somehow access the dvd drive. these are brasero or listen, that I'm aware of, for the moment.
    others like gnome-baker do fine. nautilus as well is doing fine.
    brasero:
    (brasero:25610): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    (brasero:25610): GLib-CRITICAL **: g_error_free: assertion `error != NULL' failed
    (brasero:25610): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    (brasero:25610): GLib-GIO-WARNING **: (gfile.c:5244):IA__g_file_load_partial_contents_finish: runtime check failed: (g_simple_async_result_get_source_tag (simple) == g_file_load_contents_async)
    Segmentation fault
    listen does:
    (listen.py:25694): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    sys:1: Warning: g_error_free: assertion `error != NULL' failed
    (listen.py:25694): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    (listen.py:25694): GLib-GIO-WARNING **: (gfile.c:5244):IA__g_file_load_partial_contents_finish: runtime check failed: (g_simple_async_result_get_source_tag (simple) == g_file_load_contents_async)
    /usr/bin/listen: line 1: 25694 Segmentation fault LD_LIBRARY_PATH=/usr/lib/firefox python -OO /usr/lib/listen/listen.py $@
    So it's bothering as all the time i want to burn something listen will crash.
    Otherwise I'm using gnome-baker for burning, so it's ok.
    but bothering.
    This might help you.
    If I can give u more information, just tell me (but I have to tell u: I'm not a big pro!)

  • Crashing with EXC_BAD_ACCESS (SIGSEGV)

    I have been trying to use keynote to show a slide show on a monitor in another part of the building but it is crashing with the same error, usually after more than 24 hours running. I have been sending the reports to Apple, but after 4 in as many days, I am wondering if there is something I can do to trouble shoot.
    I have keynote is looping a presentation to an refurbished AppleTV via a refurbished Airport Express (June 2012). The Airport Express is creating a network, 2.4/GHz, and it is not connected to the internet or our local network
    Since I don't want to dump console reports into the post, I look at the console and it seems the same after the first 3 thread, at least to the untrained eye, so I deleted 4-9 in the interest of space. I only included the first part of the bianary images to save space. Please let me know if there is more information I need to include. 
    Any suggestions are welcome and thanks for your time.
    Process:         Keynote [370]
    Path:            /Applications/Keynote.app/Contents/MacOS/Keynote
    Identifier:      com.apple.iWork.Keynote
    Version:         6.1 (1769)
    Build Info:      Keynote-1769000000000000~1
    App Item ID:     409183694
    App External ID: 290032634
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [186]
    Responsible:     Keynote [370]
    Date/Time:       2014-02-13 05:44:43.445 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   GLEngine                                0x00007fff83f4b57d gleRunVertexSubmitImmediate + 7021
    1   GLEngine                                0x00007fff83ecec86 gleDrawArraysOrElements_ExecCore + 713
    2   GLEngine                                0x00007fff83e4629e glDrawElements_Exec + 332
    3   com.apple.iWork.Keynote                 0x0000000103222eef 0x101d70000 + 21704431
    4   com.apple.iWork.Keynote                 0x0000000101e641d7 0x101d70000 + 999895
    5   com.apple.iWork.Keynote                 0x0000000101e7183d 0x101d70000 + 1054781
    6   com.apple.iWork.Keynote                 0x0000000101e71d6e 0x101d70000 + 1056110
    7   com.apple.QuartzCore                    0x00007fff8878e2aa CAOpenGLLayerDraw(CAOpenGLLayer*, double, CVTimeStamp const*, unsigned int) + 733
    8   com.apple.QuartzCore                    0x00007fff8878de49 -[CAOpenGLLayer _display] + 395
    9   com.apple.QuartzCore                    0x00007fff887411a2 CA::Layer::display_if_needed(CA::Transaction*) + 590
    10  com.apple.QuartzCore                    0x00007fff887408f1 CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 35
    11  com.apple.QuartzCore                    0x00007fff8874037c CA::Context::commit_transaction(CA::Transaction*) + 236
    12  com.apple.QuartzCore                    0x00007fff88740016 CA::Transaction::commit() + 388
    13  com.apple.QuartzCore                    0x00007fff887507a1 CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) + 71
    14  com.apple.CoreFoundation                0x00007fff88e7a0a7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    15  com.apple.CoreFoundation                0x00007fff88e7a017 __CFRunLoopDoObservers + 391
    16  com.apple.CoreFoundation                0x00007fff88e6b294 CFRunLoopRunSpecific + 340
    17  com.apple.HIToolbox                     0x00007fff895fdf0d RunCurrentEventLoopInMode + 226
    18  com.apple.HIToolbox                     0x00007fff895fdcb7 ReceiveNextEventCommon + 479
    19  com.apple.HIToolbox                     0x00007fff895fdabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    20  com.apple.AppKit                        0x00007fff8668528e _DPSNextEvent + 1434
    21  com.apple.AppKit                        0x00007fff866848db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    22  com.apple.AppKit                        0x00007fff866789cc -[NSApplication run] + 553
    23  com.apple.AppKit                        0x00007fff86663803 NSApplicationMain + 940
    24  libdyld.dylib                           0x00007fff87bc15fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff88dec662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8565e43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8565e152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff88de7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88de6d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff88e6c315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff88e6b939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff88e6b275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff868251ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff886bf899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff886bf72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff886c3fc9 thread_start + 13
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff88de7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88de6d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff88e6c315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff88e6b939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff88e6b275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff84357907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8435770b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff886bf899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff886bf72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff886c3fc9 thread_start + 13
    4 - 9 ...
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff88debe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff886c0f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff886c3fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff83f4b57d  rbx: 0x0000000000000009  rcx: 0x0000000000000008  rdx: 0x00007fff83f4c6a4
      rdi: 0x0000000000040900  rsi: 0x0000000000000001  rbp: 0x00007fff5de8da20  rsp: 0x00007fff5de8d7d0
       r8: 0x0000000000040900   r9: 0x00007f956d82cc00  r10: 0x00006000005910e0  r11: 0x00007f956d82cc00
      r12: 0x0000000000000002  r13: 0x0000000000044801  r14: 0x00007f956d82cc00  r15: 0x0000000000000001
      rip: 0x00007fff83f4b57d  rfl: 0x0000000000010207  cr2: 0x0000000000000008
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x101d70000 -        0x103e6afff  com.apple.iWork.Keynote (6.1 - 1769) <B4BDDB1E-0AD6-3CC3-893A-B7D188458A58> /Applications/Keynote.app/Contents/MacOS/Keynote
           0x104771000 -        0x104784fff  com.apple.MediaLibrary (1.0 - 637) <CB99F701-D188-34A1-A53B-0331A352C8A3> /System/Library/Frameworks/MediaLibrary.framework/Versions/A/MediaLibrary
           0x10495d000 -        0x10495dfeb +cl_kernels (???) <037FF78C-4F6E-448A-A47D-350578A04929> cl_kernels
           0x108a43000 -        0x108a43ffd +cl_kernels (???) <2AB8F59A-EB52-40A0-84F3-1368649C57D7> cl_kernels
           0x109147000 -        0x109148fe4 +cl_kernels (???) <C762D32E-E93F-4158-8395-E6193B7A7D3F> cl_kernels
           0x109156000 -        0x109157ff9 +cl_kernels (???) <BB4E5835-DB89-4496-BE57-9EF669E7DA40> cl_kernels
           0x11137e000 -        0x11137efff +cl_kernels (???) <079EC7E4-E91F-4D81-A966-CDDA5C9F3431> cl_kernels
           0x1117fa000 -        0x1118e0fef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x111d8a000 -        0x111e6aff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A>
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 98
        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: 14665
        thread_create: 0
        thread_set_state: 0
    System Profile:
    Model: iMac13,1, BootROM IM131.010A.B05, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 2.9f5
    Graphics: NVIDIA GeForce GT 640M, NVIDIA GeForce GT 640M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3431554638424455352D474E2D4620
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3431554638424455352D474E2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF4), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 23 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: APPLE HDD HTS541010A9E662, 1 TB
    USB Device: Hub in Apple USB Keyboard
    USB Device: M4848
    USB Device: Apple USB Keyboard
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: DataTraveler 3.0
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: iMac, Apple Inc., 23.4

    I have been trying to use keynote to show a slide show on a monitor in another part of the building but it is crashing with the same error, usually after more than 24 hours running. I have been sending the reports to Apple, but after 4 in as many days, I am wondering if there is something I can do to trouble shoot.
    I have keynote is looping a presentation to an refurbished AppleTV via a refurbished Airport Express (June 2012). The Airport Express is creating a network, 2.4/GHz, and it is not connected to the internet or our local network
    Since I don't want to dump console reports into the post, I look at the console and it seems the same after the first 3 thread, at least to the untrained eye, so I deleted 4-9 in the interest of space. I only included the first part of the bianary images to save space. Please let me know if there is more information I need to include. 
    Any suggestions are welcome and thanks for your time.
    Process:         Keynote [370]
    Path:            /Applications/Keynote.app/Contents/MacOS/Keynote
    Identifier:      com.apple.iWork.Keynote
    Version:         6.1 (1769)
    Build Info:      Keynote-1769000000000000~1
    App Item ID:     409183694
    App External ID: 290032634
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [186]
    Responsible:     Keynote [370]
    Date/Time:       2014-02-13 05:44:43.445 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   GLEngine                                0x00007fff83f4b57d gleRunVertexSubmitImmediate + 7021
    1   GLEngine                                0x00007fff83ecec86 gleDrawArraysOrElements_ExecCore + 713
    2   GLEngine                                0x00007fff83e4629e glDrawElements_Exec + 332
    3   com.apple.iWork.Keynote                 0x0000000103222eef 0x101d70000 + 21704431
    4   com.apple.iWork.Keynote                 0x0000000101e641d7 0x101d70000 + 999895
    5   com.apple.iWork.Keynote                 0x0000000101e7183d 0x101d70000 + 1054781
    6   com.apple.iWork.Keynote                 0x0000000101e71d6e 0x101d70000 + 1056110
    7   com.apple.QuartzCore                    0x00007fff8878e2aa CAOpenGLLayerDraw(CAOpenGLLayer*, double, CVTimeStamp const*, unsigned int) + 733
    8   com.apple.QuartzCore                    0x00007fff8878de49 -[CAOpenGLLayer _display] + 395
    9   com.apple.QuartzCore                    0x00007fff887411a2 CA::Layer::display_if_needed(CA::Transaction*) + 590
    10  com.apple.QuartzCore                    0x00007fff887408f1 CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 35
    11  com.apple.QuartzCore                    0x00007fff8874037c CA::Context::commit_transaction(CA::Transaction*) + 236
    12  com.apple.QuartzCore                    0x00007fff88740016 CA::Transaction::commit() + 388
    13  com.apple.QuartzCore                    0x00007fff887507a1 CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) + 71
    14  com.apple.CoreFoundation                0x00007fff88e7a0a7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    15  com.apple.CoreFoundation                0x00007fff88e7a017 __CFRunLoopDoObservers + 391
    16  com.apple.CoreFoundation                0x00007fff88e6b294 CFRunLoopRunSpecific + 340
    17  com.apple.HIToolbox                     0x00007fff895fdf0d RunCurrentEventLoopInMode + 226
    18  com.apple.HIToolbox                     0x00007fff895fdcb7 ReceiveNextEventCommon + 479
    19  com.apple.HIToolbox                     0x00007fff895fdabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    20  com.apple.AppKit                        0x00007fff8668528e _DPSNextEvent + 1434
    21  com.apple.AppKit                        0x00007fff866848db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    22  com.apple.AppKit                        0x00007fff866789cc -[NSApplication run] + 553
    23  com.apple.AppKit                        0x00007fff86663803 NSApplicationMain + 940
    24  libdyld.dylib                           0x00007fff87bc15fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff88dec662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8565e43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8565e152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff88de7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88de6d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff88e6c315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff88e6b939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff88e6b275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff868251ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff886bf899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff886bf72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff886c3fc9 thread_start + 13
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff88de7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88de6d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff88e6c315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff88e6b939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff88e6b275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff84357907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8435770b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff886bf899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff886bf72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff886c3fc9 thread_start + 13
    4 - 9 ...
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff88debe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff886c0f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff886c3fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff83f4b57d  rbx: 0x0000000000000009  rcx: 0x0000000000000008  rdx: 0x00007fff83f4c6a4
      rdi: 0x0000000000040900  rsi: 0x0000000000000001  rbp: 0x00007fff5de8da20  rsp: 0x00007fff5de8d7d0
       r8: 0x0000000000040900   r9: 0x00007f956d82cc00  r10: 0x00006000005910e0  r11: 0x00007f956d82cc00
      r12: 0x0000000000000002  r13: 0x0000000000044801  r14: 0x00007f956d82cc00  r15: 0x0000000000000001
      rip: 0x00007fff83f4b57d  rfl: 0x0000000000010207  cr2: 0x0000000000000008
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x101d70000 -        0x103e6afff  com.apple.iWork.Keynote (6.1 - 1769) <B4BDDB1E-0AD6-3CC3-893A-B7D188458A58> /Applications/Keynote.app/Contents/MacOS/Keynote
           0x104771000 -        0x104784fff  com.apple.MediaLibrary (1.0 - 637) <CB99F701-D188-34A1-A53B-0331A352C8A3> /System/Library/Frameworks/MediaLibrary.framework/Versions/A/MediaLibrary
           0x10495d000 -        0x10495dfeb +cl_kernels (???) <037FF78C-4F6E-448A-A47D-350578A04929> cl_kernels
           0x108a43000 -        0x108a43ffd +cl_kernels (???) <2AB8F59A-EB52-40A0-84F3-1368649C57D7> cl_kernels
           0x109147000 -        0x109148fe4 +cl_kernels (???) <C762D32E-E93F-4158-8395-E6193B7A7D3F> cl_kernels
           0x109156000 -        0x109157ff9 +cl_kernels (???) <BB4E5835-DB89-4496-BE57-9EF669E7DA40> cl_kernels
           0x11137e000 -        0x11137efff +cl_kernels (???) <079EC7E4-E91F-4D81-A966-CDDA5C9F3431> cl_kernels
           0x1117fa000 -        0x1118e0fef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x111d8a000 -        0x111e6aff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A>
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 98
        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: 14665
        thread_create: 0
        thread_set_state: 0
    System Profile:
    Model: iMac13,1, BootROM IM131.010A.B05, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 2.9f5
    Graphics: NVIDIA GeForce GT 640M, NVIDIA GeForce GT 640M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3431554638424455352D474E2D4620
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3431554638424455352D474E2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF4), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 23 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: APPLE HDD HTS541010A9E662, 1 TB
    USB Device: Hub in Apple USB Keyboard
    USB Device: M4848
    USB Device: Apple USB Keyboard
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: DataTraveler 3.0
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: iMac, Apple Inc., 23.4

  • Computer Crashed with CS4 - How can I get these programs to my new computer?

    Computer Crashed with CS4 - How can I get these programs to my new computer?

    You will want to install them from the installation media.

  • Keynote Crashing - with Lion.   Most often when I switch out of Keynote to another program - Keynote freezes - says Application Not Responding.  If I save the Keynote before switching, it does not crash - only when it says it is an "edited" file....help

    Keynote Crashing - with Lion.   Most often when I switch out of Keynote to another program - Keynote freezes - says Application Not Responding.  If I save the Keynote before switching, it does not crash - only when it says it is an "edited" file....help

    I posted this on another thread. See if this works:
    1) Uncheck "Backup previous version" in Keynote's Preferences.
    2) Make a duplicate copy of your file that has issues and save it.
    3) If you still get spinning wheels from switching between apps after editing or 10 seconds of inactivity, manually save with command+s. It may beach ball here but be patient and wait for it to finish! Try editing and resume doing work now.
    Command+s may be a bit slow but I think that might be normal since the files are so big.
    Good luck and let me know if this works.

Maybe you are looking for

  • Content Conversion when each field is in a new line

    Hi, I have file format denoted with .SIF or .CIF. This file is organised like - AB=asdas BC=qweqwe CD=lop;lk;lk YZ=sdfsdf In each line the data after the = is actually the value of the field. Few set of these fields could repeat. And a new record wou

  • Airport Express with HP PSC 1410 printer

    I have an airport/airtunes express and have an HP PSC 1410 all in one printer. I can't get it to work as my "network printer" I was surfing the Apple website looking at FAQs and it directed me to the HP site. There are a list of known printers that w

  • Apple XServe G5 Won't Start Up

    Hi, My apple Xserve G5 has stopped turning on after I shut it down. When turned ut back on I pressed the power button all of the fans spin up and the System Indicatior light turns Solid Amber/Orange and does not flash. I tried leaving it on for a lon

  • ITunes match creating 100s of playlists with no content

    Since upgrading (?) to itunes match I know have hundreds of playlists that  iIdid not create.They hav eno content in theM. Tre all titled "Gen" and they thave slowed my itunes down to a crawl and are immposable to delete. any ideas?

  • I can't access my own files

    I have been having a problem with my external hard drive, I think it is about to die, so I am in the process of copying all my files/folders to my wifes computer, which has a much bigger internal harddrive than my computer, but I have another problem