App crashes with EXC_BAD_ACCESS while loading preferences on @Property

Hello everybody, this is one of many EXC_BADACCES questions, but I have done research for a long time and think that this question has not been answered yet. My App saves data with in the preferences. Everything wents well, if I delete the preferences und start the App, so that no loading happens at all. But if loading happens, there is a problem. I have to save one main array wich contains self-written objects called Box. One Box has a NSString* boxName and six NSMutableArray* wich contain another self written object, called Flashcard wich contains two NSString*: question and answer. If the AppDelegate gets the message applicationWillTerminate it encodes the main array (called boxArray) using the NSKeyedArchiver and saves it in the preferences. In the init method of AppControll, this archive is loaded from the preferences:
- (id)init {self = [super init];if (self) {  
// Initialization code here.  
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
   NSData* archive = [defaults objectForKey:@"boxArray"];
   if (archive) {    
   NSArray* array = [NSKeyedUnarchiver unarchiveObjectWithData:archive]; 
      boxArray = [NSMutableArray arrayWithArray:array];
   } else {    boxArray = [[NSMutableArray alloc] init];    }}return self;
In the encodeWithCoder method of Box, it creates sereval NSData* objects for all its arrays, like this.
NSData* p1archv = [NSKeyedArchiver archivedDataWithRootObject:phase1];
[aCoder encodeObject:p1archv forKey:@"phase1"];
and it loads everything like this: NSData* p1archv = [aDecoder decodeObjectForKey:@"phase1"];
if (p1archv) {  
     NSArray* a = [NSKeyedUnarchiver unarchiveObjectWithData:p1archv]; 
      phase1 = [NSMutableArray arrayWithArray:a]; 
      NSLog(@"loaded phase1: %@",phase1);    } else {  
     phase1 = [[NSMutableArray alloc] init];        NSLog(@"inited phase1");    }
It saves its own box name like this: [aCoder encodeObject:boxName forKey:@"boxName"]; Loading is like this:
boxName = [aDecoder decodeObjectForKey:@"boxName"];
The flashcards encodeWithCoder:
- (void) encodeWithCoder:(NSCoder *)aCoder {
[aCoder encodeObject:question forKey:@"question"];
[aCoder encodeObject:answer forKey:@"answer"];NSLog(@"encoded %@ and %@",question, answer);
and initWithCoder:
- (id) initWithCoder:(NSCoder *)aDecoder {
self = [super init];
if (self) {    // Initialization code here.
   question = [aDecoder decodeObjectForKey:@"question"];
    answer = [aDecoder decodeObjectForKey:@"answer"];}return self;
Ok, now you know the actual setting, but this is what my actual problem is:
If the application starts, and there are preferences to load, it crashes in the Box.h file. To be exact it crashes in this line:
@property (readwrite, copy) NSString* boxName;
with an EXC_BAD_ACCESS. I turned NSZombieEnabled on and it showed exactly the same line. On my research I made brake-points at every single method, and I found out, that in the init with coder method of Box, everything is ok and boxName is what it should be (e.g. "foo") but if the tableview (Managed by an NSArrayController) wants to load the data into the table view it crashes in the while running or it´s showing stuff like e.g. "1:918" in stepping through the single steps. I#m sure, I have not released the array, or the boxName or anything before in the loading process, so I can´t explain this issue. I would be very glad if you could help me, Elefantosque

Hi,
i suppose boxArray get's released to early, because unarchiveObjectWithData returns an autoreleased object.
- (id)init
     self = [super init];
     if (self)
          // Initialization code here.  
          NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
          NSData* archive = [defaults objectForKey:@"boxArray"];
          if (archive)
               NSArray* array = [NSKeyedUnarchiver unarchiveObjectWithData:archive]; 
               //boxArray = [NSMutableArray arrayWithArray:array]; -- boxArray will be released, because it's an autoreleased object.
               boxArray [[NSMutableArray alloc] initWithArray:array];
          else
               boxArray = [[NSMutableArray alloc] init];
     return self;
- (id)init {self = [super init];if (self) {  
// Initialization code here.  
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
   NSData* archive = [defaults objectForKey:@"boxArray"];
   if (archive) {    
   NSArray* array = [NSKeyedUnarchiver unarchiveObjectWithData:archive]; 
      boxArray = [NSMutableArray arrayWithArray:array];
   } else {    boxArray = [[NSMutableArray alloc] init];    }}return self;
}- (id)init
    self = [super init];
    if (self)
        // Initialization code here.  
        NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
        NSData* archive = [defaults objectForKey:@"boxArray"];
        if (archive)
            NSArray* array = [NSKeyedUnarchiver unarchiveObjectWithData:archive]; 
            //boxArray = [NSMutableArray arrayWithArray:array]; -- boxArray will be released, because it's an autoreleased object.
            boxArray [[NSMutableArray alloc] initWithArray:array];
        else
            boxArray = [[NSMutableArray alloc] init];
    return self;

Similar Messages

  • Fix for Music app crash with iTunes Match "on"

    Sometimes if you try to use iTunes match for the first time on 3G(or any other cellular connection) it crashes Music app permanently. It can occur if you try to run Music app on the go with bad 3G connectivity so some data is corrupted or configured incorrectly. I had this twice, but found this "easy" fix without a need of PC/Mac computer & iTunes.
    How to fix music app crash with itunes match "on".
    Step by step on the iPad:
    - delete all music on your device:
    Go to settings->usage->view list of all apps->swipe music icon ->choose delete
    - set itunes match off
    - run music app
    - give it a while till it shows "no music" info and only shop button. It needs to reload all settings and clear all data. Wait till no loading circle.
    - go to settings app again
    - music settings - itunes match on but "show all your music" off !
    -  open music app
    - wait till all your music lists covers download. It will take a while. Scroll down to load them all if you want. Wait till no loading circle.
    - go to settings app again
    - music settings - show all your music on
    - go to music app
    - wait till it download list of all your music
    Done
    Maybe you can fix this with lesser number of steps but this way I'm sure it works.

    Sometimes if you try to use iTunes match for the first time on 3G(or any other cellular connection) it crashes Music app permanently. It can occur if you try to run Music app on the go with bad 3G connectivity so some data is corrupted or configured incorrectly. I had this twice, but found this "easy" fix without a need of PC/Mac computer & iTunes.
    How to fix music app crash with itunes match "on".
    Step by step on the iPad:
    - delete all music on your device:
    Go to settings->usage->view list of all apps->swipe music icon ->choose delete
    - set itunes match off
    - run music app
    - give it a while till it shows "no music" info and only shop button. It needs to reload all settings and clear all data. Wait till no loading circle.
    - go to settings app again
    - music settings - itunes match on but "show all your music" off !
    -  open music app
    - wait till all your music lists covers download. It will take a while. Scroll down to load them all if you want. Wait till no loading circle.
    - go to settings app again
    - music settings - show all your music on
    - go to music app
    - wait till it download list of all your music
    Done
    Maybe you can fix this with lesser number of steps but this way I'm sure it works.

  • Premiere Pro CS 4.1 Crashes at Startup While Loading NI's VST's.

    Premiere Pro CS 4.1 crashes at startup while loading Native Instrument's VST's. My work around is to move the VST folder off the Plug-Ins directory, but that is a pain because I have to do it everytime I wanna use Premiere. In all honesty, I use my audio apps a lot more than Premiere. Any help would be great.
    System Specs...
    MacPro
    Mac OsX 10.5.7
    Premiere Pro CS 4.1
    4GB RAM

    With your VST folder in its proper place, try launching and re-launching Pr.  Theoretically, every time it fails to start the plug-in that caused the problem should be automatically blacklisted.  Sooner or later, all of the VST plug-ins that cause problems will be blacklisted and Pr will start normally.
    That's the theory, anyway.
    -Jeff

  • Lync for mac (lync_14.0.7_131205) crashes with EXC_BAD_ACCESS at start up after upgrade to 10.9.2 (13C64)

    Lync for mac (lync_14.0.7_131205) crashes with EXC_BAD_ACCESS at start up after upgrade to 10.9.2 (13C64)
    I have removed and clean installed, including certs (http://technet.microsoft.com/en-us/library/jj945448%28v=office.14%29.aspx).  There is no "unknown" cert either.
    This is what I get:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2014-02-25 21:24:24 +0000
    Application Name: Microsoft Lync
    Application Bundle ID: com.microsoft.Lync
    Application Signature: UCCP
    Application Version: 14.0.7.131205
    Crashed Module Name: CoreFoundation
    Crashed Module Version: 855.14
    Crashed Module Offset: 0x00012192
    Blame Module Name: Microsoft Lync
    Blame Module Version: 14.0.7.131205
    Blame Module Offset: 0x00f02d02
    Application LCID: 1033
    Extra app info: Reg=English Loc=0x0409
    Crashed thread: 0 

    Please check if Lync for Mac 14.0.6 works correctly.
    The following is a similar thread you can refer to:
    http://social.technet.microsoft.com/Forums/lync/en-US/1ea7487f-5ded-4713-93c8-1abd594aea74/lync-for-mac-2011-crashing-since-update-to-1407?forum=ocsclients
    Lisa Zheng
    TechNet Community Support

  • "KERN_INVALID_ADDRESS at 0x000000ac" I am facing this issue after updateing my device to ios 5 and my app crashes with this error

    "KERN_INVALID_ADDRESS at 0x000000ac" I am facing this issue after updateing my device to ios 5 and my app crashes with this error

    "KERN_INVALID_ADDRESS at 0x000000ac" I am facing this issue after updateing my device to ios 5 and my app crashes with this error

  • InDesign 5 crashes with EXC_BAD_ACCESS (SIGBUS)

    user says that Indesign 5 crashes while placing pdf files.
    They get followign error
    Process:         Adobe InDesign CS5 [40353]
    Path:            /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Identifier:      com.adobe.InDesign
    Version:         7.0.4.553 (7040)
    Code Type:       X86 (Native)
    Parent Process:  launchd [122]
    Interval Since Last Report:          20711627 sec
    Crashes Since Last Report:           241
    Per-App Interval Since Last Report:  5580968 sec
    Per-App Crashes Since Last Report:   67
    Date/Time:       2012-10-10 10:18:18.343 -0400
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  440CA63B-9C86-492A-A9FF-5B8B9EE9F0FC
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0 com.adobe.InDesign.Links       0x1fe27e43 0x1fd9b000 + 577091
    1 PublicLib.dylib                0x014d9422 Command::DoImmediate(short) + 34
    2 com.adobe.InDesign.Utilities   0x1ace5aa3 0x1ace4000 + 6819
    3 com.adobe.InDesign.Utilities   0x1ace5ccc 0x1ace4000 + 7372
    4 ...adobe.InDesign.AppFramework       0x19a2a688 0x19a10000 + 108168
    5 PublicLib.dylib                0x014da57b CmdUtils::ProcessCommand(ICommand*) + 59
    6 ...adobe.InDesign.AppFramework       0x19a3d3d0 GetPlugIn + 34464
    7 com.adobe.InDesign.Widgets              0x1cad1059 GetPlugIn + 211337
    8 com.adobe.InDesign.Widgets              0x1cad4386 GetPlugIn + 224438
    9 com.adobe.InDesign.Widgets              0x1cad3fc0 GetPlugIn + 223472
    10 PublicLib.dylib                           0x014ee82b CScrapSuite_Extensible::Paste(IClipboardController*, IControlView*, short) + 219
    11 ...obe.InDesign.Application UI            0x1b422ff4 0x1b400000 + 143348
    12 ...obe.InDesign.Application UI            0x1b423f05 0x1b400000 + 147205
    13 ...obe.InDesign.Application UI            0x1b421abc 0x1b400000 + 137916
    14 ...obe.InDesign.Application UI            0x1b484632 GetPlugIn + 217730
    15 com.adobe.InDesign.Actions              0x21d92de3 GetPlugIn + 11699
    16 com.adobe.InDesign.Actions              0x21d98adb GetPlugIn + 35499
    17 ...adobe.InDesign.AppFramework      0x19a11e63 0x19a10000 + 7779
    18 com.apple.HIToolbox                0x97d8713d DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1181
    19 com.apple.HIToolbox                0x97d8657b SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 405
    20 com.apple.HIToolbox                0x97da2ecc SendEventToEventTarget + 52
    21 ...adobe.InDesign.AppFramework      0x19a12fef 0x19a10000 + 12271
    22 ...adobe.InDesign.AppFramework      0x19a384fa GetPlugIn + 14282
    23 com.adobe.InDesign                0x0000288b main + 187
    24 com.adobe.InDesign                0x000027a6 start + 54
    Had user reset preference file but same problem.
    Any way to diagnose this issue?

    I agree with Larry as to the problem being link related. I'd try hiding the links from ID (move them or rename the floder where they're stored, if you can) and see if the file will launch. If it does, try relinking half and see if the file crashes. If it does, hide half or what you relinked and try again. Keep linking or hiding by halves until you are able to isolate a bad link. It won't take long to winnow through even a few hundred links this way.
    Also you may need to empty the InDesign Recovery folder if ID crashes as soon as you restart it.

  • 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

  • Safari crash with EXC_BAD_ACCESS (SIGBUS)

    Safari is crashing on me and I'm getting the following log--is there something anybody can pick out as a culprit or offer a hint as to a possible solution? This is all Greek to me.
    Process: Safari [415]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.2.1 (5525.27.1)
    Build Info: WebBrowser-55252701~1
    Code Type: X86 (Native)
    Parent Process: launchd [85]
    Date/Time: 2009-03-03 12:51:04.399 -0800
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000004
    Crashed Thread: 3
    Thread 0:
    0 libSystem.B.dylib 0x92a191c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92a209bc mach_msg + 72
    2 com.apple.CoreFoundation 0x94af80ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x94af8cd8 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x960972c0 RunCurrentEventLoopInMode +
    283
    5 com.apple.HIToolbox 0x960970d9 ReceiveNextEventCommon +
    374
    6 com.apple.HIToolbox 0x96096f4d
    BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x90043d7d _DPSNextEvent + 657
    8 com.apple.AppKit 0x90043630 -[NSApplication
    nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.Safari 0x0000808e 0x1000 + 28814
    10 com.apple.AppKit 0x9003c66b -[NSApplication run] + 795
    11 com.apple.AppKit 0x900098a4 NSApplicationMain + 574
    12 com.apple.Safari 0x000b9b16 0x1000 + 756502
    Thread 1:
    0 libSystem.B.dylib 0x92a203ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x92a4ad0d pthreadcondwait$UNIX2003
    + 73
    2 com.apple.WebCore 0x923128ff
    WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x922cb065
    WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x92a4a095 pthreadstart + 321
    5 libSystem.B.dylib 0x92a49f52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x92a191c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92a209bc mach_msg + 72
    2 com.apple.CoreFoundation 0x94af80ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x94af8cd8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x90d5aebe
    CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x92a4a095 pthreadstart + 321
    6 libSystem.B.dylib 0x92a49f52 thread_start + 34
    Thread 3 Crashed:
    0 com.apple.Safari 0x00105f5f 0x1000 + 1068895
    1 com.apple.Safari 0x00106650 0x1000 + 1070672
    2 com.apple.Safari 0x001066d5 0x1000 + 1070805
    3 com.apple.Safari 0x001156b4 0x1000 + 1132212
    4 com.apple.Safari 0x00114a38 0x1000 + 1129016
    5 com.apple.Safari 0x000ff6fc 0x1000 + 1042172
    6 com.apple.Safari 0x000fff49 0x1000 + 1044297
    7 com.apple.Safari 0x00109998 0x1000 + 1083800
    8 com.apple.Safari 0x001028b9 0x1000 + 1054905
    9 com.apple.Safari 0x00103735 0x1000 + 1058613
    10 com.apple.Safari 0x001184a3 0x1000 + 1143971
    11 com.apple.CoreFoundation 0x94af85f5 CFRunLoopRunSpecific + 3141
    12 com.apple.CoreFoundation 0x94af8cd8 CFRunLoopRunInMode + 88
    13 com.apple.Safari 0x00118d4d 0x1000 + 1146189
    14 com.apple.Safari 0x00117fd3 0x1000 + 1142739
    15 com.apple.Safari 0x00118081 0x1000 + 1142913
    16 libSystem.B.dylib 0x92a4a095 pthreadstart + 321
    17 libSystem.B.dylib 0x92a49f52 thread_start + 34
    Thread 3 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x201a3004 ecx: 0x92a19d23 edx: 0xffffffff
    edi: 0x61f746b4 esi: 0x00000004 ebp: 0xb01c81e8 esp: 0xb01c81d0
    ss: 0x0000001f efl: 0x00010282 eip: 0x00105f5f cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000004
    Binary Images:
    0x1000 - 0x1d7fe2 com.apple.Safari 3.2.1 (5525.27.1)
    <66278f41bc085c64e0f06ff487af4adc>
    /Applications/Safari.app/Contents/MacOS/Safari
    0x223000 - 0x232ff8 SyndicationUI ??? (???)
    <9272a16db977c7a8efb814b6a8897bda>
    /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndica
    tionUI
    0x119c5000 - 0x11bbbfff com.apple.RawCamera.bundle 2.0.12 (421)
    <02fe3f4ea6251f7b2d23d855ce5c5fd2>
    /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x15038000 - 0x1503dff3 libCGXCoreImage.A.dylib ??? (???)
    <375e0cdb64b043378dbf637992bbfeb0>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5>
    /usr/lib/dyld
    0x90003000 - 0x90801fef com.apple.AppKit 6.5.6 (949.43)
    <a3a300499bbe4f1dfebf71d752d01916>
    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x90802000 - 0x9080ffe7 com.apple.opengl 1.5.9 (1.5.9)
    <7e5048a2677b41098c84045305f42f7f>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90810000 - 0x9098ffff com.apple.AddressBook.framework 4.1.1 (699)
    <60ddae72a1df8ddbc5c53df92f372b76>
    /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90990000 - 0x90992fff com.apple.securityhi 3.0 (30817)
    <72cb8b012603370e904b31a24a91121b>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI
    .framework/Versions/A/SecurityHI
    0x90ae1000 - 0x90af7fff com.apple.DictionaryServices 1.0.0 (1.0.0)
    <ad0aa0252e3323d182e17f50defe56fc>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Dict
    ionaryServices.framework/Versions/A/DictionaryServices
    0x90af8000 - 0x90af8ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib
    .framework/Versions/A/vecLib
    0x90b11000 - 0x90b14fff com.apple.help 1.1 (36)
    <b507b08e484cb89033e9cf23062d77de>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.frame
    work/Versions/A/Help
    0x90b15000 - 0x90c16fe7 com.apple.PubSub 1.0.3 (65.1.2)
    /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90c17000 - 0x90cd5fff com.apple.WebKit 5525.27 (5525.27.1)
    <a15e548666c9a463d61be1f114b2fa27>
    /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x90cd6000 - 0x90cdafff libGIF.dylib ??? (???)
    <572a32e46e33be1ec041c5ef5b0341ae>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90cdb000 - 0x90d1afef libTIFF.dylib ??? (???)
    <3589442575ac77746ae99ecf724f5f87>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90d1b000 - 0x90d3affa libJPEG.dylib ??? (???)
    <e7eb56555109e23144924cd64aa8daec>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90d58000 - 0x90df5fe4 com.apple.CFNetwork 422.15.2 (422.15.2)
    <80851410a5592b7c3b149b2ff849bcc1>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNe
    twork.framework/Versions/A/CFNetwork
    0x90df6000 - 0x90e30ffe com.apple.securityfoundation 3.0.1 (35844)
    <2fbb6a1177ef98350b8aefc60737ba0e>
    /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityF
    oundation
    0x90e31000 - 0x90ebbfe3 com.apple.DesktopServices 1.4.7 (1.4.7)
    <d16642ba22c32f67be793ebfbe67ca3a>
    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/D
    esktopServicesPriv
    0x90ebc000 - 0x90ed4ff7 com.apple.CoreVideo 1.6.0 (20.0)
    <c0d869876af51283a160cd2224a23abf>
    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90ed5000 - 0x90fa0fff com.apple.ColorSync 4.5.1 (4.5.1)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/ColorSync.framework/Versions/A/ColorSync
    0x90fa1000 - 0x90fccfe7 libauto.dylib ??? (???)
    <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x90fcd000 - 0x90fd4fe9 libgcc_s.1.dylib ??? (???)
    <a9ab135a5f81f6e345527df87f51bfc9> /usr/lib/libgcc_s.1.dylib
    0x90feb000 - 0x910a5fe3 com.apple.CoreServices.OSServices 226.5 (226.5)
    <2a135d4fb16f4954290f7b72b4111aa3>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSSe
    rvices.framework/Versions/A/OSServices
    0x910a6000 - 0x910a6ffa com.apple.CoreServices 32 (32)
    <2fcc8f3bd5bbfc000b476cad8e6a3dd2>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x910a7000 - 0x91124fef libvMisc.dylib ??? (???)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib
    .framework/Versions/A/libvMisc.dylib
    0x91125000 - 0x9112ffeb com.apple.audio.SoundManager 3.9.2 (3.9.2)
    <0f2ba6e891d3761212cf5a5e6134d683>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSoun
    d.framework/Versions/A/CarbonSound
    0x91130000 - 0x911c3fff com.apple.ink.framework 101.3 (86)
    <bf3fa8927b4b8baae92381a976fd2079>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framew
    ork/Versions/A/Ink
    0x911c4000 - 0x911d0ffe libGL.dylib ??? (???)
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x911d1000 - 0x911e0ffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1)
    <eac1c7b7c07ed3148c85934b6f656308>
    /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjC
    Wrappers
    0x91221000 - 0x9124efeb libvDSP.dylib ??? (???)
    <b232c018ddd040ec4e2c2af632dd497f>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib
    .framework/Versions/A/libvDSP.dylib
    0x9124f000 - 0x91529ff3 com.apple.CoreServices.CarbonCore 786.11 (786.11)
    <f06fe5d92d56ac5aa52d1ba182745924>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Carb
    onCore.framework/Versions/A/CarbonCore
    0x9152a000 - 0x9154efeb libssl.0.9.7.dylib ??? (???)
    <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x9154f000 - 0x917cafe7 com.apple.Foundation 6.5.7 (677.22)
    <8fe77b5d15ecdae1240b4cb604fc6d0b>
    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91820000 - 0x91824fff libmathCommon.A.dylib ??? (???)
    /usr/lib/system/libmathCommon.A.dylib
    0x91825000 - 0x91825ff8 com.apple.ApplicationServices 34 (34)
    <8f910fa65f01d401ad8d04cc933cf887>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applicat
    ionServices
    0x91826000 - 0x91868fef com.apple.NavigationServices 3.5.2 (163)
    <91844980804067b07a0b6124310d3f31>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigation
    Services.framework/Versions/A/NavigationServices
    0x91869000 - 0x91879ffc com.apple.LangAnalysis 1.6.4 (1.6.4)
    <8b7831b5f74a950a56cf2d22a2d436f6>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x9187a000 - 0x918b0fef libtidy.A.dylib ??? (???)
    <5351215b54226cc47eb1cd4b011cc2f3> /usr/lib/libtidy.A.dylib
    0x918b1000 - 0x918efff7 libGLImage.dylib ??? (???)
    <1123b8a48bcbe9cc7aa8dd8e1a214a66>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.
    dylib
    0x918f0000 - 0x91977ff7 libsqlite3.0.dylib ??? (???)
    <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x91978000 - 0x919d5ffb libstdc++.6.dylib ??? (???)
    <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x919d6000 - 0x919fefff libcups.2.dylib ??? (???)
    <16bec7c6a004f744804e2281a1b1c094> /usr/lib/libcups.2.dylib
    0x91b6d000 - 0x9203ef3e libGLProgrammability.dylib ??? (???)
    <5d283543ac844e7c6fa3440ac56cd265>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgra
    mmability.dylib
    0x9203f000 - 0x920e6feb com.apple.QD 3.11.54 (???)
    <b743398c24c38e581a86e91744a2ba6e>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/QD.framework/Versions/A/QD
    0x920e7000 - 0x9222dff7 com.apple.ImageIO.framework 2.0.4 (2.0.4)
    <6a6623d3d1a7292b5c3763dcd108b55f>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/ImageIO.framework/Versions/A/ImageIO
    0x9222e000 - 0x92243ffb com.apple.ImageCapture 5.0.1 (5.0.1)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCaptu
    re.framework/Versions/A/ImageCapture
    0x92244000 - 0x9224cfff com.apple.DiskArbitration 2.2.1 (2.2.1)
    <75b0c8d8940a8a27816961dddcac8e0f>
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitrat
    ion
    0x9224d000 - 0x9225cfff libsasl2.2.dylib ??? (???)
    <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x9225d000 - 0x9226dfff com.apple.speech.synthesis.framework 3.7.1 (3.7.1)
    <06d8fc0307314f8ffc16f206ad3dbf44>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9226e000 - 0x922c7ff7 libGLU.dylib ??? (???)
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dyli
    b
    0x922c8000 - 0x92919fff com.apple.WebCore 5525.26 (5525.26.6)
    <8676962ab93f003cf9b10748725c1bc2>
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.fr
    amework/Versions/A/WebCore
    0x9291a000 - 0x92932fff com.apple.openscripting 1.2.8 (???)
    <572c7452d7e740e8948a5ad07a99602b>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScript
    ing.framework/Versions/A/OpenScripting
    0x92933000 - 0x92a14ff7 libxml2.2.dylib ??? (???)
    <d69560099d9eb32ba7f8a17baa65a28d> /usr/lib/libxml2.2.dylib
    0x92a18000 - 0x92b7fff3 libSystem.B.dylib ??? (???)
    <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x92b80000 - 0x92f1dfef com.apple.QuartzCore 1.5.7 (1.5.7)
    <2fed2dd7565c84a0f0c608d41d4d172c>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93187000 - 0x931e3ff7 com.apple.htmlrendering 68 (1.1.3)
    <fe87a9dede38db00e6c8949942c6bd4f>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRender
    ing.framework/Versions/A/HTMLRendering
    0x931e4000 - 0x931f2ffd libz.1.dylib ??? (???)
    <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x931f8000 - 0x93249ff7 com.apple.HIServices 1.7.0 (???)
    <01b690d1f376e400ac873105533e39eb>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/HIServices.framework/Versions/A/HIServices
    0x9324a000 - 0x93268ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5)
    <f8931f64103c8a86b82e9714352f4323>
    /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectorySe
    rvice
    0x93269000 - 0x932f4fff com.apple.framework.IOKit 1.5.1 (???)
    <f9f5f0d070e197a832d86751e1d44545>
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x932f5000 - 0x93336fe7 libRIP.A.dylib ??? (???)
    <5d0b5af7992e14de017f9a9c7cb05960>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93337000 - 0x93337ff8 com.apple.Cocoa 6.5 (???)
    <e064f94d969ce25cb7de3cfb980c3249>
    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93338000 - 0x933e8fff edu.mit.Kerberos 6.0.12 (6.0.12)
    <685cc018c133668d0d3ac6a1cb63cff9>
    /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x933e9000 - 0x934b0ff2 com.apple.vImage 3.0 (3.0)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage
    .framework/Versions/A/vImage
    0x934b1000 - 0x934fbfe1 com.apple.securityinterface 3.0.1 (35183)
    <f855cb06d2541ce544d9bcdf998b991c>
    /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityIn
    terface
    0x934fd000 - 0x934fdffb com.apple.installserver.framework 1.0 (8)
    /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/Install
    Server
    0x934fe000 - 0x934ffffc libffi.dylib ??? (???)
    <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x945e7000 - 0x94666ff5 com.apple.SearchKit 1.2.1 (1.2.1)
    <3140a605db2abf56b237fa156a08b28b>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Sear
    chKit.framework/Versions/A/SearchKit
    0x94667000 - 0x94a77fef libBLAS.dylib ??? (???)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib
    .framework/Versions/A/libBLAS.dylib
    0x94a78000 - 0x94a84ff9 com.apple.helpdata 1.0.1 (14.2)
    /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94a85000 - 0x94bb8fff com.apple.CoreFoundation 6.5.5 (476.17)
    <4a70c8dbb582118e31412c53dc1f407f>
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundatio
    n
    0x94bd7000 - 0x94cb7fff libobjc.A.dylib ??? (???)
    <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x94cb8000 - 0x94cc1fff com.apple.speech.recognition.framework 3.7.24
    (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechReco
    gnition.framework/Versions/A/SpeechRecognition
    0x94cc2000 - 0x94cf9fff com.apple.SystemConfiguration 1.9.2 (1.9.2)
    <8b26ebf26a009a098484f1ed01ec499c>
    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemCo
    nfiguration
    0x94cfa000 - 0x94d1efff libxslt.1.dylib ??? (???)
    <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x94d1f000 - 0x94d24fff com.apple.backup.framework 1.0 (1.0)
    /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x94d25000 - 0x94d8bffb com.apple.ISSupport 1.7 (38.2)
    /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x94d8d000 - 0x94edfff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2)
    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94ee0000 - 0x94ee0ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94ee1000 - 0x94ee1ffc com.apple.audio.units.AudioUnit 1.5 (1.5)
    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94ee2000 - 0x94ee7fff com.apple.CommonPanels 1.2.4 (85)
    <ea0665f57cd267609466ed8b2b20e893>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPane
    ls.framework/Versions/A/CommonPanels
    0x94ee8000 - 0x94eefffe libbsm.dylib ??? (???)
    <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x94f63000 - 0x94f6efe7 libCSync.A.dylib ??? (???)
    <e6aceed359bd228f42bc1246af5919c9>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94f6f000 - 0x94f76ff7 libCGATS.A.dylib ??? (???)
    <386dce4b28448fb86e33e06ac466f4d8>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94fb9000 - 0x94fe8fe3 com.apple.AE 402.3 (402.3)
    <4cb9ef65cf116d6dd424f0ce98c2d015>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.f
    ramework/Versions/A/AE
    0x94fe9000 - 0x94feffff com.apple.print.framework.Print 218.0.2 (220.1)
    <8bf7ef71216376d12fcd5ec17e43742c>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fram
    ework/Versions/A/Print
    0x94ff0000 - 0x94ff2fff com.apple.CrashReporterSupport 10.5.5 (159)
    <4ca9b6643fcbafd76424a46d162363eb>
    /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/
    CrashReporterSupport
    0x95235000 - 0x95267fff com.apple.LDAPFramework 1.4.5 (110)
    <cc04500cf7b6edccc75bb3fe2973f72c>
    /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9534a000 - 0x9534affd com.apple.vecLib 3.4.2 (vecLib 3.4.2)
    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9537b000 - 0x953f8feb com.apple.audio.CoreAudio 3.1.1 (3.1.1)
    <f35477a5e23db0fa43233c37da01ae1c>
    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9558d000 - 0x955b5ff7 com.apple.shortcut 1 (1.0)
    <057783867138902b52bc0941fedb74d1>
    /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x955b6000 - 0x955b6fff com.apple.Carbon 136 (136)
    <9961570a497d79f13b8ea159826af42d>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x955b7000 - 0x95975fea libLAPACK.dylib ??? (???)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib
    .framework/Versions/A/libLAPACK.dylib
    0x95b33000 - 0x95d01ff3 com.apple.security 5.0.4 (34102)
    <55dda7486df4e8e1d61505be16f83a1c>
    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95d14000 - 0x95d32fff libresolv.9.dylib ??? (???)
    <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x95d83000 - 0x95e51ff3 com.apple.JavaScriptCore 5525.26 (5525.26.2)
    <69e219e81bc886a94c4d4b310d393ab9>
    /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCor
    e
    0x95e52000 - 0x95e6dffb libPng.dylib ??? (???)
    <4780e979d35aa5ec2cea22678836cea5>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95e6e000 - 0x95fa6ff7 libicucore.A.dylib ??? (???)
    <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x95fb4000 - 0x96066ffb libcrypto.0.9.7.dylib ??? (???)
    <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x96067000 - 0x9636ffff com.apple.HIToolbox 1.5.4 (???)
    <3747086ba21ee419708a5cab946c8ba6>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.
    framework/Versions/A/HIToolbox
    0x96370000 - 0x963caff7 com.apple.CoreText 2.0.4 (???)
    <f9a90116ae34a2b0d84e87734766fb3a>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/CoreText.framework/Versions/A/CoreText
    0x963cb000 - 0x96457ff7 com.apple.LaunchServices 290.3 (290.3)
    <6f9629f4ed1ba3bb313548e6838b2888>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Laun
    chServices.framework/Versions/A/LaunchServices
    0x96458000 - 0x9653dff3 com.apple.CoreData 100.1 (186)
    <8e28162ef2288692615b52acc01f8b54>
    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9653e000 - 0x965d1ff3 com.apple.ApplicationServices.ATS 3.4 (???)
    <8c51de0ec3deaef416578cd59df38754>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/ATS.framework/Versions/A/ATS
    0x965da000 - 0x96623fef com.apple.Metadata 10.5.2 (398.25)
    <e0572f20350523116f23000676122a8d>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Meta
    data.framework/Versions/A/Metadata
    0x96a02000 - 0x970a2fff com.apple.CoreGraphics 1.407.2 (???)
    <3a91d1037afde01d1d8acdf9cd1caa14>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x970a3000 - 0x970ddfe7 com.apple.coreui 1.2 (62)
    /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x970de000 - 0x97158ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3)
    <222dade7b33b99708b8c09d1303f93fc>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/PrintCore.framework/Versions/A/PrintCore
    0x97292000 - 0x97294ff5 libRadiance.dylib ??? (???)
    <8a844202fcd65662bb9ab25f08c45a62>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framewor
    ks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff000
    No major installs or real changes in use as of late. Thanks in advance for any help on this frustrating issue.

    Thanks for everybody's help. Safari was crashing right out of the gates and while I only tried it once or twice changing preferences didn't seem to fix things. However, I found this thread and the problem seems to be solved:
    http://forums.macrumors.com/showthread.php?t=626260
    Thanks again!

  • 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. 

  • Mail crashing with  EXC_BAD_ACCESS (SIGBUS)-ISync related

    Hi,
    I am having a problem with Mail crashing with the (SIGBUS) error... I can stop this from happening by turning off sync in the Isync preferences. I was hoping that once MobileMe was fixed this problem would go away but no such luck... Unfortunately, I need syncing for my Iphone 3g. Has anyone experienced this and found a way to fix the problem? I am using 10.5.4, have repaired permissions and have tried to delete Isync and MobileMe preferences in multiple ways...
    The complete problem report is below:
    Process: Mail [3644]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 3.4 (928)
    Build Info: Mail-9280000~1
    Code Type: X86 (Native)
    Parent Process: launchd [66]
    Date/Time: 2008-08-11 10:21:06.336 -0500
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000030
    Crashed Thread: 10
    Thread 0:
    0 libSystem.B.dylib 0x928704a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92877c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x939d80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x939d8cf8 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x913d6da4 RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x913d6bbd ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x9141d84b IsUserStillTracking(MenuSelectData*, unsigned char*) + 493
    7 com.apple.HIToolbox 0x91406a38 TrackMenuCommon(MenuSelectData&, unsigned char*) + 3860
    8 com.apple.HIToolbox 0x91401ce7 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 279
    9 com.apple.HIToolbox 0x9140183b _HandleMenuSelection2 + 383
    10 com.apple.HIToolbox 0x914016af _HandleMenuSelection + 53
    11 com.apple.AppKit 0x90ab9bf3 _NSHandleCarbonMenuEvent + 244
    12 com.apple.AppKit 0x90a209f4 _DPSNextEvent + 1920
    13 com.apple.AppKit 0x90a1fdb8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    14 com.apple.AppKit 0x90a18df3 -[NSApplication run] + 795
    15 com.apple.AppKit 0x909e6030 NSApplicationMain + 574
    16 com.apple.mail 0x000fb29e 0x1000 + 1024670
    Thread 1:
    0 libSystem.B.dylib 0x928704a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92877c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x939d80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x939d8cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x91d614a5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x91d6d5c4 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x00483f35 -[RSSInterchange _runManager] + 2140
    7 com.apple.Foundation 0x91d2cf1d -[NSThread main] + 45
    8 com.apple.Foundation 0x91d2cac4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x928a16f5 pthreadstart + 321
    10 libSystem.B.dylib 0x928a15b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x928da07a _workqops + 10
    1 libSystem.B.dylib 0x928da0aa start_wqthread + 30
    Thread 3:
    Thread 4:
    0 libSystem.B.dylib 0x9287768e _semwaitsignal + 10
    1 libSystem.B.dylib 0x928a236d pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x933a6e51 fefragmentthread + 54
    3 libSystem.B.dylib 0x928a16f5 pthreadstart + 321
    4 libSystem.B.dylib 0x928a15b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x928704a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92877c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x939d80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x939d8cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x91d614a5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x91d6d5c4 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x003a910d +[_NSSocket _runIOThread] + 98
    7 com.apple.Foundation 0x91d2cf1d -[NSThread main] + 45
    8 com.apple.Foundation 0x91d2cac4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x928a16f5 pthreadstart + 321
    10 libSystem.B.dylib 0x928a15b2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x928c05e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x928a16f5 pthreadstart + 321
    2 libSystem.B.dylib 0x928a15b2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x928704a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92877c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x939d80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x939d8cf8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x97113a32 CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x928a16f5 pthreadstart + 321
    6 libSystem.B.dylib 0x928a15b2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x928704a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92877c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x939d80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x939d8cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x91d90460 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x91d2cf1d -[NSThread main] + 45
    6 com.apple.Foundation 0x91d2cac4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x928a16f5 pthreadstart + 321
    8 libSystem.B.dylib 0x928a15b2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x92870506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x928a284f pthread_condwait + 1244
    2 libSystem.B.dylib 0x928a40d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x91d72e8c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x91d72ca0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x91d72c05 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x90a86470 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x91d2cf1d -[NSThread main] + 45
    8 com.apple.Foundation 0x91d2cac4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x928a16f5 pthreadstart + 321
    10 libSystem.B.dylib 0x928a15b2 thread_start + 34
    Thread 10 Crashed:
    0 libSystem.B.dylib 0xffff07c7 __memcpy + 39
    1 com.apple.CoreData 0x94c2f39b -[NSSQLRow copy] + 459
    2 com.apple.CoreData 0x94c0efcb -[NSSQLCore databaseOperationForObject:] + 347
    3 com.apple.CoreData 0x94c38ae9 -[NSSQLCore recordDeleteForObject:] + 89
    4 com.apple.CoreData 0x94c10aa8 -[NSSQLCore recordChangesInContext:] + 280
    5 com.apple.CoreData 0x94c0dac0 -[NSSQLCore saveChanges:] + 256
    6 com.apple.CoreData 0x94bf77e9 -[NSSQLCore executeRequest:withContext:] + 297
    7 com.apple.CoreData 0x94bf7386 -[NSPersistentStoreCoordinator(_NSInternalMethods) executeRequest:withContext:] + 3094
    8 com.apple.CoreData 0x94c09805 -[NSManagedObjectContext save:] + 1333
    9 com.apple.MessageFramework 0x00434a5b -[BookmarksManager saveTransientFeedChanges] + 367
    10 com.apple.Mail.Syncer 0x17c2a75a 0x17c17000 + 79706
    11 com.apple.syncservices 0x905dfccd -[ISyncConcreteSessionDriver _finishSession] + 258
    12 com.apple.syncservices 0x905ba9e5 -[ISyncConcreteSessionDriver _sync:] + 253
    13 com.apple.syncservices 0x9065398d -[ISyncConcreteSessionDriver _startAsynchronousSyncWorker] + 425
    14 com.apple.Foundation 0x91d2cf1d -[NSThread main] + 45
    15 com.apple.Foundation 0x91d2cac4 _NSThread__main_ + 308
    16 libSystem.B.dylib 0x928a16f5 pthreadstart + 321
    17 libSystem.B.dylib 0x928a15b2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x928704a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x92877c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x939d80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x939d8cf8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x96e75464 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x96e75300 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x928a16f5 pthreadstart + 321
    7 libSystem.B.dylib 0x928a15b2 thread_start + 34
    Thread 10 crashed with X86 Thread State (32-bit):
    eax: 0xffc7d360 ebx: 0x94c2f1db ecx: 0x0000000a edx: 0x00000028
    edi: 0x00000030 esi: 0xffc7d334 ebp: 0xb0ab9558 esp: 0xb0ab9550
    ss: 0x0000001f efl: 0x00010282 eip: 0xffff07c7 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000030
    Binary Images:
    0x1000 - 0x270ff3 com.apple.mail 3.4 (928) <235e3a26da60172ebb1cef0300698c37> /Applications/Mail.app/Contents/MacOS/Mail
    0x2de000 - 0x350fff com.apple.iLifeMediaBrowser 1.0.8 (212) <afa1e1cb24dab8802261493e84692570> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x38e000 - 0x5e2ff3 com.apple.MessageFramework 3.4 (928.1) <eb4365318266f14754831179bedb477d> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x737000 - 0x739fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x740000 - 0x764fe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x159a8000 - 0x159adff3 libCGXCoreImage.A.dylib ??? (???) <b6cf72d9cbd5312d4ec435e298954ade> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x15d00000 - 0x15e1eff7 com.apple.RawCamera.bundle 2.0.8 (2.0.8) <56067945130800a348eb076676d41e92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x162bb000 - 0x162bcfe1 com.apple.textencoding.unicode 2.2 (2.2) <542f2b8930d6bdf16c318ffea541acab> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x172a8000 - 0x172a8ffd liblangid.dylib ??? (???) <4310e568d617f1ce7178266630e1b71a> /usr/lib/liblangid.dylib
    0x17a3d000 - 0x17a40fff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ce6f675ce724b0ba4e78323b79cf95c> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x17a46000 - 0x17a4bfff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x17ad4000 - 0x17b41fff +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x17c17000 - 0x17c35fff com.apple.Mail.Syncer 3.4 (928.1) <50b5f666e5348f40253bd9d55dfb9b33> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x17c48000 - 0x17c5bfff com.apple.syncservices.syncservicesui 4.1 (389.6) <1b41e95b2f856dbbcd0561d244aafa29> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x17c6a000 - 0x17cba01f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x70000000 - 0x700e3ff2 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <14ac3b684fa5a31932fa89c4bba7a29b> /usr/lib/dyld
    0x90003000 - 0x9000afe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x9000b000 - 0x90092ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x90093000 - 0x900e2fff com.apple.QuickLookUIFramework 1.3 (170.7) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x900e3000 - 0x9013dff7 com.apple.CoreText 2.0.2 (???) <9fde11f84a72e890bbf2aa8b0b13b79a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x903a7000 - 0x903acfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x903ad000 - 0x903ccffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x903cd000 - 0x904cefef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x904cf000 - 0x90503fef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x90504000 - 0x9050bff7 libCGATS.A.dylib ??? (???) <fbc59d0e1eccf907396563568d5cd872> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9050c000 - 0x905b3feb com.apple.QD 3.11.52 (???) <c72bd7bd2ce12694c3640a731d1ad878> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x905b4000 - 0x90694fff com.apple.syncservices 3.1 (389.6) <51037594e950b0331d4996691cf4acba> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x90695000 - 0x9071ffe3 com.apple.DesktopServices 1.4.6 (1.4.6) <1abd4175c3089704be6824c073f7cc33> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90720000 - 0x9072ffff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x90730000 - 0x9075dfeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9075e000 - 0x907aeff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x907af000 - 0x907affff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x907b0000 - 0x90877ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90878000 - 0x9087ffff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90880000 - 0x908b2fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x908b3000 - 0x908b4ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x908b5000 - 0x908f3ff7 libGLImage.dylib ??? (???) <093b1b698ca93a0380f5fa262459ea28> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x908f4000 - 0x90980ff7 com.apple.LaunchServices 289.2 (289.2) <3577886e3a6d56ee3949850c4fde76c9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90981000 - 0x9099fff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <fe27e80e1a9e86403fd9ed16dcfe4e11> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x909a0000 - 0x909beff7 com.apple.QuickLookFramework 1.3 (170.7) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x909bf000 - 0x909dfff2 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x909e0000 - 0x911ddfef com.apple.AppKit 6.5.3 (949.33) <84b236f43802f4c15011513d18efa101> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x911de000 - 0x91228fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91229000 - 0x9122efff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9122f000 - 0x91240ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x91241000 - 0x91280fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91281000 - 0x9129cff3 libPng.dylib ??? (???) <c0484bec6e2432b406755591924fe664> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9129d000 - 0x912ebff3 com.apple.datadetectorscore 1.0.2 (52.14) <e137549cb2c0ff943809824e31854a73> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x912ec000 - 0x913a6fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <7e10d25c615a39fe1ab4d48e24a3b555> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x913a7000 - 0x916aeff7 com.apple.HIToolbox 1.5.3 (???) <e36f5c553e5a32f64b7eb458dadadc71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x916af000 - 0x916c6fff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x916c7000 - 0x91895fff com.apple.security 5.0.4 (34102) <f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91896000 - 0x91896ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91961000 - 0x91d1ffea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91d20000 - 0x91d20ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91d21000 - 0x91d21ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d22000 - 0x91f9dfe7 com.apple.Foundation 6.5.5 (677.19) <bfd4ebea1a7739dd6b523f15dca01a37> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91f9e000 - 0x91fa0fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91fa1000 - 0x91ffdff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91ffe000 - 0x9207bfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9207c000 - 0x92083ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x92084000 - 0x920d4feb com.apple.framework.familycontrols 1.0.2 (1.0.2) <bcd9397c28e82724c202830fcc2c04d3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x920d5000 - 0x920d8fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x920d9000 - 0x923b3ff3 com.apple.CoreServices.CarbonCore 786.6 (786.6) <bc7c12c84fe21ae2626bdd17070aaafa> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x923b4000 - 0x923bffff com.apple.dotMacLegacy 3.1 (244.1) <dc5b306b079718439c199d386ff60cc4> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x923c0000 - 0x923c0ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x923c1000 - 0x923ecfe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x923ed000 - 0x9244affb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x9244b000 - 0x9244ffff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92450000 - 0x924c2fff com.apple.PDFKit 2.1 (2.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x924c3000 - 0x924cffe7 com.apple.opengl 1.5.6 (1.5.6) <125de77ea2434a91364e79a0905a7771> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x924d0000 - 0x92507fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92508000 - 0x9254afef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9254b000 - 0x92706ff3 com.apple.QuartzComposer 2.1 (106.5) <a296178aba94c71fc5314ea2ed0b4349> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x92707000 - 0x9273dfef libtidy.A.dylib ??? (???) <f1d1742e06280444baa5637b209fd0af> /usr/lib/libtidy.A.dylib
    0x9273e000 - 0x92754fe7 com.apple.CoreVideo 1.5.1 (1.5.1) <ed7bb95fb94817ea3212090aac5c65f3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9278f000 - 0x9286efff libobjc.A.dylib ??? (???) <a53206274b6c2d42691f677863f379ae> /usr/lib/libobjc.A.dylib
    0x9286f000 - 0x929cfff3 libSystem.B.dylib ??? (???) <98fc91f31f185411ddc46d3225e9af55> /usr/lib/libSystem.B.dylib
    0x929d0000 - 0x929dbfe7 libCSync.A.dylib ??? (???) <3f58eb487099bff0476ec79974d0ad4d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x929dc000 - 0x92b14ff7 libicucore.A.dylib ??? (???) <5031226ea28b371d8dfdbb32acfb48b5> /usr/lib/libicucore.A.dylib
    0x92b15000 - 0x92b1ffeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92b20000 - 0x92babfff com.apple.framework.IOKit 1.5.1 (???) <60cfc4b175c4ef60bb8e9036716a29f4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92bac000 - 0x92bd0feb libssl.0.9.7.dylib ??? (???) <3512c4a8198f0e964748bf6acbf359b4> /usr/lib/libssl.0.9.7.dylib
    0x92bd1000 - 0x92ef2fea com.apple.QuickTime 7.5.0 (861) <4e1161b204b3b1f1047412c16483c39a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92ef3000 - 0x92f4cff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f4d000 - 0x9302eff7 libxml2.2.dylib ??? (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
    0x9302f000 - 0x930a9ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x930aa000 - 0x9314cff3 com.apple.QuickTimeImporters.component 7.5 (861) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x93150000 - 0x93163fff com.apple.IMUtils 4.0.5 (582) <535270cbc62da9f8269578251a660e76> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x93164000 - 0x93195ffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93196000 - 0x93198ff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93199000 - 0x9319effb com.apple.DisplayServicesFW 2.0 (2.0) <8953865f53e940007a4e4ac5390d3c95> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9319f000 - 0x9325cfff com.apple.WebKit 5525.18 (5525.18) <9228870ec6a53b83134fd13a359276a8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9325d000 - 0x932a3fef com.apple.Metadata 10.5.2 (398.18) <9466e348fc3c1fece377ae1238fe74a7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x932a4000 - 0x932acfff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x932b2000 - 0x93648fff com.apple.QuartzCore 1.5.3 (1.5.3) <1b65c05f89e81a499302fd63295b242d> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93649000 - 0x93667fff libresolv.9.dylib ??? (???) <9602435a6eac87a0d1f41b8ca8541693> /usr/lib/libresolv.9.dylib
    0x93668000 - 0x93674fff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x93675000 - 0x93723ffb com.apple.QTKit 7.5 (861) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93724000 - 0x93733ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93734000 - 0x93739ffc com.apple.KerberosHelper 1.1 (1.0) <86b1b4589baa557d067d07efc01890d2> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x9373a000 - 0x93774ffe com.apple.securityfoundation 3.0 (32989) <36f7f260187c435b2670bcb24acd4219> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93775000 - 0x937f4ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x937f5000 - 0x937fefff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x937ff000 - 0x937ffff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93800000 - 0x93841fe7 libRIP.A.dylib ??? (???) <8c2cd4f044b3413d770ca8ad740f7645> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93842000 - 0x938d5fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x938d6000 - 0x9393cffb com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9393d000 - 0x93955fff com.apple.openscripting 1.2.8 (???) <d85d82af796d1df9bce7b1db8f6c846c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93956000 - 0x93964ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x93965000 - 0x93965ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93966000 - 0x93a98fff com.apple.CoreFoundation 6.5.3 (476.14) <7ef7f5db09ff6dd0135a6165872803cc> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93a99000 - 0x93a99ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x93a9a000 - 0x93a9affa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93a9b000 - 0x93b4dffb libcrypto.0.9.7.dylib ??? (???) <01109b36b445b3e8698ef87f814f7fd4> /usr/lib/libcrypto.0.9.7.dylib
    0x93b4e000 - 0x93b5efff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93b5f000 - 0x93b5fffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93b60000 - 0x93b9efff com.apple.CoreMediaIOServicesPrivate 9.0 (9.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x93b9f000 - 0x9423bfef com.apple.CoreGraphics 1.351.32 (???) <793d7ceb9e1880818e03c1f1b10df04b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9423c000 - 0x94307fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94308000 - 0x9430efff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9430f000 - 0x9431cff7 com.apple.DMNotification 1.1.0 (143) <07530f513cd71e41bccbf19225ac1cb4> /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x9431d000 - 0x94347fff com.apple.CoreMediaPrivate 9.0 (9.0) <8eb20bcfecc950600aa62dfa07aa47f3> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x94348000 - 0x9435efff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9435f000 - 0x94496feb com.apple.imageKit 1.0.1 (1.0) <9b6da3210b7e69e75039cbb0fd4a8482> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94497000 - 0x94616fff com.apple.AddressBook.framework 4.1.1 (695) <24a448ba4f9f784189bd3183e3474d81> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94617000 - 0x9463ffff libcups.2.dylib ??? (???) <ece20dff2a2c8ed3ae6ef735ef440c37> /usr/lib/libcups.2.dylib
    0x94640000 - 0x94684feb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <8135bb4f34a3bf02b8c2ca869fe33a42> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x94685000 - 0x946b5ff3 com.apple.DotMacSyncManager 1.2.3 (283) <3f521a1391d7740aca012fe3e4772095> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x946b6000 - 0x946f0fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x947c5000 - 0x94bd5fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94bd6000 - 0x94cbbff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94cbc000 - 0x94de0fe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94de1000 - 0x94decff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94ded000 - 0x94dfdffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94dfe000 - 0x952d1ffe libGLProgrammability.dylib ??? (???) <475db64244e011cd8811e076035b2632> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x952d2000 - 0x9530efff com.apple.DAVKit 3.0.4 (651) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x9530f000 - 0x95333fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x95334000 - 0x95338fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x95339000 - 0x9533dfff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x9533e000 - 0x95366ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x95367000 - 0x95417fff edu.mit.Kerberos 6.0.12 (6.0.12) <1dc515ebe407292db8e603938c72d4e8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95418000 - 0x95447fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95448000 - 0x9545cff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9545d000 - 0x95aadfff com.apple.WebCore 5525.18.1 (5525.18.1) <9fcf69305c5b48dd8a5cb77107f66c7a> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95aae000 - 0x95c0efee com.apple.CalendarStore 3.0.4 (833) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x95c0f000 - 0x95c0fffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95c10000 - 0x95c7dffb com.apple.WhitePagesFramework 1.2 (119.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x95c7e000 - 0x95d11ff3 com.apple.ApplicationServices.ATS 3.3 (???) <064eb6d96417afa38a80b1735c4113aa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95d12000 - 0x96e57ff2 com.apple.QuickTimeComponents.component 7.5 (861) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x96e58000 - 0x96ed4feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96ed5000 - 0x9701bff7 com.apple.ImageIO.framework 2.0.2 (2.0.2) <77dfee73f4c0d230425a5151ee0bce05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9701c000 - 0x97038fff com.apple.IMFramework 4.0.5 (582) <da822220ccdaabc47408e2f641d48685> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x97039000 - 0x97107ff3 com.apple.JavaScriptCore 5525.18 (5525.18) <672d1c7f16a4300addabeff4830f5024> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x97108000 - 0x9718aff3 com.apple.CFNetwork 330.4 (330.4) <ce5b085df34a78b7f198aff9db5b52ec> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    Thanks for your help.
    Peter Kaeding

    This isn't a MobileMe problem. First, turn off syncing and then use Disk Utility to Repair Permissions and reboot when done. Then try starting Mail without syncing to see what happens. If all is well, quit Mail and turn on syncing and try again; if that fails, try syncing through iTunes to see what happens.
    Mulder

  • Mail crashing with  EXC_BAD_ACCESS (SIGBUS)

    Mail has been crashing all weekend with the following report:
    Process: Mail [3406]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 3.4 (928)
    Build Info: Mail-9280000~1
    Code Type: X86 (Native)
    Parent Process: launchd [131]
    Date/Time: 2008-07-21 10:44:29.323 -0500
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000004
    Crashed Thread: 10
    Thread 0:
    0 libSystem.B.dylib 0x95fdc4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x95fe3c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x904f80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x904f8cf8 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x9108bda4 RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x9108bbbd ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x9108ba31 BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x93401505 _DPSNextEvent + 657
    8 com.apple.AppKit 0x93400db8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.AppKit 0x933f9df3 -[NSApplication run] + 795
    10 com.apple.AppKit 0x933c7030 NSApplicationMain + 574
    11 com.apple.mail 0x000fb29e 0x1000 + 1024670
    Thread 1:
    0 libSystem.B.dylib 0x9604607a _workqops + 10
    1 libSystem.B.dylib 0x960460aa start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x9604607a _workqops + 10
    1 libSystem.B.dylib 0x960460aa start_wqthread + 30
    Thread 3:
    0 libSystem.B.dylib 0x95fe368e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9600e36d pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x9482ce51 fefragmentthread + 54
    3 libSystem.B.dylib 0x9600d6f5 pthreadstart + 321
    4 libSystem.B.dylib 0x9600d5b2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x95fdc506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9600e84f pthread_condwait + 1244
    2 libSystem.B.dylib 0x960100d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x95451e8c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x95451ca0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x95451c05 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x93467470 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x9540bf1d -[NSThread main] + 45
    8 com.apple.Foundation 0x9540bac4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x9600d6f5 pthreadstart + 321
    10 libSystem.B.dylib 0x9600d5b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x95fdc4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x95fe3c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x904f80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x904f8cf8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x95caba32 CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x9600d6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x9600d5b2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x95fdc4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x95fe3c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x904f80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x904f8cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x9546f460 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x9540bf1d -[NSThread main] + 45
    6 com.apple.Foundation 0x9540bac4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x9600d6f5 pthreadstart + 321
    8 libSystem.B.dylib 0x9600d5b2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x95fdc4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x95fe3c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x904f80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x904f8cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x954404a5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x9544c5c4 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x002f910d +[_NSSocket _runIOThread] + 98
    7 com.apple.Foundation 0x9540bf1d -[NSThread main] + 45
    8 com.apple.Foundation 0x9540bac4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x9600d6f5 pthreadstart + 321
    10 libSystem.B.dylib 0x9600d5b2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9602c5e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x9600d6f5 pthreadstart + 321
    2 libSystem.B.dylib 0x9600d5b2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x95fdc4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x95fe3c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x904f80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x904f8cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x954404a5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x9544c5c4 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x003d3f35 -[RSSInterchange _runManager] + 2140
    7 com.apple.Foundation 0x9540bf1d -[NSThread main] + 45
    8 com.apple.Foundation 0x9540bac4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x9600d6f5 pthreadstart + 321
    10 libSystem.B.dylib 0x9600d5b2 thread_start + 34
    Thread 10 Crashed:
    0 com.apple.CoreFoundation 0x9048a5dd _CFArrayReplaceValues + 2397
    1 com.apple.Foundation 0x954069a3 -[NSCFArray insertObject:atIndex:] + 131
    2 com.apple.Foundation 0x95406914 -[NSCFArray addObject:] + 68
    3 com.apple.CoreData 0x952c8872 -[NSSQLCore createAdapterOperationsForDatabaseOperation:] + 210
    4 com.apple.CoreData 0x952c84ac -[NSSQLCore performChanges] + 140
    5 com.apple.CoreData 0x952c3ad9 -[NSSQLCore saveChanges:] + 281
    6 com.apple.CoreData 0x952ad7e9 -[NSSQLCore executeRequest:withContext:] + 297
    7 com.apple.CoreData 0x952ad386 -[NSPersistentStoreCoordinator(_NSInternalMethods) executeRequest:withContext:] + 3094
    8 com.apple.CoreData 0x952bf805 -[NSManagedObjectContext save:] + 1333
    9 com.apple.MessageFramework 0x00384a5b -[BookmarksManager saveTransientFeedChanges] + 367
    10 com.apple.Mail.Syncer 0x17f6375a 0x17f50000 + 79706
    11 com.apple.syncservices 0x932ccccd -[ISyncConcreteSessionDriver _finishSession] + 258
    12 com.apple.syncservices 0x932a79e5 -[ISyncConcreteSessionDriver _sync:] + 253
    13 com.apple.syncservices 0x9334098d -[ISyncConcreteSessionDriver _startAsynchronousSyncWorker] + 425
    14 com.apple.Foundation 0x9540bf1d -[NSThread main] + 45
    15 com.apple.Foundation 0x9540bac4 _NSThread__main_ + 308
    16 libSystem.B.dylib 0x9600d6f5 pthreadstart + 321
    17 libSystem.B.dylib 0x9600d5b2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x95fdc4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x95fe3c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x904f80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x904f8cf8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x9714d464 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x9714d300 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9600d6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x9600d5b2 thread_start + 34
    Thread 10 crashed with X86 Thread State (32-bit):
    eax: 0xa00224f4 ebx: 0x90489c9a ecx: 0xb109ef7c edx: 0x00000003
    edi: 0x00000004 esi: 0x00000000 ebp: 0xb109f698 esp: 0xb109f1e0
    ss: 0x0000001f efl: 0x00010206 eip: 0x9048a5dd cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000004
    Binary Images:
    0x1000 - 0x270ff3 com.apple.mail 3.4 (928) <235e3a26da60172ebb1cef0300698c37> /Applications/Mail.app/Contents/MacOS/Mail
    0x2de000 - 0x532ff3 com.apple.MessageFramework 3.4 (928.1) <eb4365318266f14754831179bedb477d> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x687000 - 0x689fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x690000 - 0x6b4fe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x15adb000 - 0x15ae0ff3 libCGXCoreImage.A.dylib ??? (???) <32265ec157db98a33c5dcf0e6687dec2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x15c00000 - 0x15d1eff7 com.apple.RawCamera.bundle 2.0.7 (2.0.7) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x172d4000 - 0x172d4ffd liblangid.dylib ??? (???) <4310e568d617f1ce7178266630e1b71a> /usr/lib/liblangid.dylib
    0x177fb000 - 0x177fcfe1 com.apple.textencoding.unicode 2.2 (2.2) <542f2b8930d6bdf16c318ffea541acab> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x17f50000 - 0x17f6efff com.apple.Mail.Syncer 3.4 (928.1) <50b5f666e5348f40253bd9d55dfb9b33> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x17f81000 - 0x17f94fff com.apple.syncservices.syncservicesui 4.1 (389.6) <1b41e95b2f856dbbcd0561d244aafa29> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x17fc5000 - 0x17fc8fff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ce6f675ce724b0ba4e78323b79cf95c> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x17fce000 - 0x17fd3fff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x18281000 - 0x182eefff +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x182fd000 - 0x1834d01f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x35246000 - 0x3524bfff libFontStreams.A.dylib ??? (???) <9c67b56cb4bdd358622a4bb0aa51e119> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libFontStreams.A.dylib
    0x352dd000 - 0x352deffd com.apple.BluetoothMenu 2.1 (2.1f17) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x352e8000 - 0x352ebfff com.apple.BezelServicesFW 1.4.832 (1.4.832) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x70000000 - 0x700e3ff2 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x76e00000 - 0x76e01ffc com.apple.JavaPluginCocoa 12.1.0 (12.1.0) <d21a12c5668d4d89bfe492a5223a75cc> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x76e41000 - 0x76e43ffe com.apple.AutomatorCMM 1.1 (160) <650079fd95a57e8131e79409a00b2aed> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x76e99000 - 0x76e9effd com.apple.JavaVM 12.1.0 (12.1.0) <25c546c36e5bed978579d281080ab4c8> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x76ede000 - 0x76eedfff com.apple.mail.WebPlugIn 3.3 (926.1) <0d6c5acf9929536c84e4dbd402490289> /Applications/Mail.app/Contents/PlugIns/MailWebPlugIn.bundle/Contents/MacOS/Mai lWebPlugIn
    0x77eae000 - 0x77eb4fcb +com.roxio.ToastItPlugin ToastIt 1.1.2 (build 17) (1.1.2) /Users/pkaeding/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x77edb000 - 0x77ee0fff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9ba69ef0bec96264a79fa28b3a5f058b> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x78400000 - 0x7846eff7 com.apple.Bluetooth 2.1 (2.1f17) <4fc7c4c461f04dfad116abd0153107d3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <14ac3b684fa5a31932fa89c4bba7a29b> /usr/lib/dyld
    0x90003000 - 0x9008efff com.apple.framework.IOKit 1.5.1 (???) <60cfc4b175c4ef60bb8e9036716a29f4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9008f000 - 0x900bafe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x900bb000 - 0x900dffff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x900e0000 - 0x90130feb com.apple.framework.familycontrols 1.0.2 (1.0.2) <bcd9397c28e82724c202830fcc2c04d3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90131000 - 0x9014ffff libresolv.9.dylib ??? (???) <9602435a6eac87a0d1f41b8ca8541693> /usr/lib/libresolv.9.dylib
    0x90150000 - 0x90163fff com.apple.IMUtils 4.0.5 (582) <535270cbc62da9f8269578251a660e76> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x90164000 - 0x9043eff3 com.apple.CoreServices.CarbonCore 786.4 (786.4) <059c4803a7a95e3c1a95a332baeb1edf> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9043f000 - 0x9044afe7 libCSync.A.dylib ??? (???) <8011fc1963cebdde0c6f101dbee5afd7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9044b000 - 0x90485fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90486000 - 0x905b8fff com.apple.CoreFoundation 6.5.3 (476.14) <7ef7f5db09ff6dd0135a6165872803cc> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x905b9000 - 0x90669fff edu.mit.Kerberos 6.0.12 (6.0.12) <1dc515ebe407292db8e603938c72d4e8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9066a000 - 0x9066ffff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90670000 - 0x90672ff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90673000 - 0x90cc3fff com.apple.WebCore 5525.18.1 (5525.18.1) <9fcf69305c5b48dd8a5cb77107f66c7a> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90cc4000 - 0x90cdafff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90cdb000 - 0x90d03fff libcups.2.dylib ??? (???) <ece20dff2a2c8ed3ae6ef735ef440c37> /usr/lib/libcups.2.dylib
    0x90d04000 - 0x91025fea com.apple.QuickTime 7.5.0 (861) <4e1161b204b3b1f1047412c16483c39a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91026000 - 0x9105afef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9105b000 - 0x9105bffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9105c000 - 0x91363ff7 com.apple.HIToolbox 1.5.3 (???) <e36f5c553e5a32f64b7eb458dadadc71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91364000 - 0x91367fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91368000 - 0x913dafff com.apple.PDFKit 2.1 (2.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x913db000 - 0x915a9fff com.apple.security 5.0.4 (34102) <f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x915aa000 - 0x919bafef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x919bb000 - 0x919fafef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91a00000 - 0x91a00ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91a01000 - 0x91a06ffc com.apple.KerberosHelper 1.1 (1.0) <86b1b4589baa557d067d07efc01890d2> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x91a07000 - 0x91a9afff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91a9b000 - 0x91aaaffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91aab000 - 0x91b04ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91b05000 - 0x91c4bff7 com.apple.ImageIO.framework 2.0.2 (2.0.2) <77dfee73f4c0d230425a5151ee0bce05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91c4c000 - 0x91c7dffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91c7e000 - 0x91cbcfff com.apple.CoreMediaIOServicesPrivate 9.0 (9.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x91d91000 - 0x91dcbffe com.apple.securityfoundation 3.0 (32989) <36f7f260187c435b2670bcb24acd4219> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91dcc000 - 0x91df6fff com.apple.CoreMediaPrivate 9.0 (9.0) <8eb20bcfecc950600aa62dfa07aa47f3> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x91df7000 - 0x91e15ff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <fe27e80e1a9e86403fd9ed16dcfe4e11> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91e16000 - 0x91f3afe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91f3b000 - 0x9201afff libobjc.A.dylib ??? (???) <a53206274b6c2d42691f677863f379ae> /usr/lib/libobjc.A.dylib
    0x9201e000 - 0x92023fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92119000 - 0x9325eff2 com.apple.QuickTimeComponents.component 7.5 (861) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9328f000 - 0x932a0ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x932a1000 - 0x93381fff com.apple.syncservices 3.1 (389.6) <51037594e950b0331d4996691cf4acba> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x93382000 - 0x93390ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x93391000 - 0x933b1ff2 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x933b2000 - 0x933b8fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x933b9000 - 0x933c0fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x933c1000 - 0x93bbefef com.apple.AppKit 6.5.3 (949.33) <84b236f43802f4c15011513d18efa101> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93bbf000 - 0x93d1ffee com.apple.CalendarStore 3.0.4 (833) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x93d20000 - 0x93d3cfff com.apple.IMFramework 4.0.5 (582) <da822220ccdaabc47408e2f641d48685> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x93d3d000 - 0x93ebcfff com.apple.AddressBook.framework 4.1.1 (695) <24a448ba4f9f784189bd3183e3474d81> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x93ebd000 - 0x93f0cfff com.apple.QuickLookUIFramework 1.1 (170.4) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x93f0d000 - 0x93f5bff3 com.apple.datadetectorscore 1.0.1 (52.13) <405948533b599cfbe02c8654b01ef6db> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x93f5c000 - 0x93f63fff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93f64000 - 0x94600fff com.apple.CoreGraphics 1.351.31 (???) <c97a42498636b2596764e48669f98e00> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94601000 - 0x9460dfff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x9460e000 - 0x9466bffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x9466c000 - 0x94737fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94738000 - 0x94acefff com.apple.QuartzCore 1.5.3 (1.5.3) <1b65c05f89e81a499302fd63295b242d> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94acf000 - 0x94b29ff7 com.apple.CoreText 2.0.2 (???) <9fde11f84a72e890bbf2aa8b0b13b79a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94b2a000 - 0x94b9cfff com.apple.iLifeMediaBrowser 1.0.7 (208) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x94b9d000 - 0x94c1cff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94c1d000 - 0x94dd8ff3 com.apple.QuartzComposer 2.1 (106.5) <a296178aba94c71fc5314ea2ed0b4349> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94dd9000 - 0x94deffe7 com.apple.CoreVideo 1.5.1 (1.5.1) <ed7bb95fb94817ea3212090aac5c65f3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94df0000 - 0x94e14feb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x9507e000 - 0x951b6ff7 libicucore.A.dylib ??? (???) <5031226ea28b371d8dfdbb32acfb48b5> /usr/lib/libicucore.A.dylib
    0x951b7000 - 0x951cbff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x951cc000 - 0x951d0fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x951d1000 - 0x951dbfeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x951dc000 - 0x95226fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95227000 - 0x9523ffff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95240000 - 0x95244fff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x95245000 - 0x9528bfef com.apple.Metadata 10.5.2 (398.18) <9466e348fc3c1fece377ae1238fe74a7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9528c000 - 0x95371ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95372000 - 0x953dfffb com.apple.WhitePagesFramework 1.2 (119.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x953e0000 - 0x953ffffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95400000 - 0x95400ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95401000 - 0x9567cfe7 com.apple.Foundation 6.5.5 (677.19) <bfd4ebea1a7739dd6b523f15dca01a37> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9567d000 - 0x956c1feb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <8135bb4f34a3bf02b8c2ca869fe33a42> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x956c2000 - 0x956cdff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x956ce000 - 0x95700fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95701000 - 0x95abffea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95ac0000 - 0x95b02fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x95b03000 - 0x95bc0fff com.apple.WebKit 5525.18 (5525.18) <9228870ec6a53b83134fd13a359276a8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95bc1000 - 0x95bd0fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x95bd1000 - 0x95c9fff3 com.apple.JavaScriptCore 5525.18 (5525.18) <672d1c7f16a4300addabeff4830f5024> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95ca0000 - 0x95d22ff3 com.apple.CFNetwork 330.4 (330.4) <ce5b085df34a78b7f198aff9db5b52ec> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95d23000 - 0x95daaff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x95dab000 - 0x95eacfef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95ead000 - 0x95ee3fef libtidy.A.dylib ??? (???) <f1d1742e06280444baa5637b209fd0af> /usr/lib/libtidy.A.dylib
    0x95ee4000 - 0x95eedfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95eee000 - 0x95f81ff3 com.apple.ApplicationServices.ATS 3.3 (???) <064eb6d96417afa38a80b1735c4113aa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95f82000 - 0x95f92fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95f93000 - 0x95f9affe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x95f9b000 - 0x95fc8feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95fc9000 - 0x95fceffb com.apple.DisplayServicesFW 2.0 (2.0) <8953865f53e940007a4e4ac5390d3c95> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95fcf000 - 0x95fcfffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95fda000 - 0x95fdaffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95fdb000 - 0x9613bff3 libSystem.B.dylib ??? (???) <98fc91f31f185411ddc46d3225e9af55> /usr/lib/libSystem.B.dylib
    0x9613c000 - 0x9613cffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9613d000 - 0x961ebffb com.apple.QTKit 7.5 (861) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x961ec000 - 0x96248ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96249000 - 0x96259ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9625a000 - 0x96275ff3 libPng.dylib ??? (???) <c0484bec6e2432b406755591924fe664> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96276000 - 0x9631dfeb com.apple.QD 3.11.52 (???) <c72bd7bd2ce12694c3640a731d1ad878> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9631e000 - 0x96455feb com.apple.imageKit 1.0.1 (1.0) <9b6da3210b7e69e75039cbb0fd4a8482> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x96520000 - 0x96520fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96521000 - 0x965c3ff3 com.apple.QuickTimeImporters.component 7.5 (861) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x965c4000 - 0x965c4ffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x965c5000 - 0x965cdfff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x965ce000 - 0x96634ffb com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x96635000 - 0x966b2fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x966b3000 - 0x966f4fe7 libRIP.A.dylib ??? (???) <c8d988d3880d7268468112c64c626d86> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x966f5000 - 0x96700fff com.apple.dotMacLegacy 3.1 (244.1) <dc5b306b079718439c199d386ff60cc4> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x96701000 - 0x96bd4ffe libGLProgrammability.dylib ??? (???) <475db64244e011cd8811e076035b2632> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96bd5000 - 0x96bd5ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96bd6000 - 0x96c50ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x96c51000 - 0x96d18ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96d19000 - 0x96dd3fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <7e10d25c615a39fe1ab4d48e24a3b555> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96dd4000 - 0x96de1ff7 com.apple.DMNotification 1.1.0 (143) <07530f513cd71e41bccbf19225ac1cb4> /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x96de2000 - 0x96e32ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96e33000 - 0x96e3ffe7 com.apple.opengl 1.5.6 (1.5.6) <125de77ea2434a91364e79a0905a7771> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96e40000 - 0x96e41ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x96e42000 - 0x96e80ff7 libGLImage.dylib ??? (???) <093b1b698ca93a0380f5fa262459ea28> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96e81000 - 0x96e98fff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x96e99000 - 0x96ed5fff com.apple.DAVKit 3.0.4 (651) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x96ed6000 - 0x96f88ffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x96f89000 - 0x96fc0fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x96fc1000 - 0x96fc1ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96fc2000 - 0x96fc2ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96fc3000 - 0x970a4ff7 libxml2.2.dylib ??? (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
    0x970a5000 - 0x9712ffe3 com.apple.DesktopServices 1.4.6 (1.4.6) <1abd4175c3089704be6824c073f7cc33> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x97130000 - 0x971acfeb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x971ad000 - 0x971ddff3 com.apple.DotMacSyncManager 1.2.3 (283) <3f521a1391d7740aca012fe3e4772095> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x971de000 - 0x971e2fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x971e3000 - 0x9726fff7 com.apple.LaunchServices 289.2 (289.2) <3577886e3a6d56ee3949850c4fde76c9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x97270000 - 0x97272fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x97273000 - 0x97290ff7 com.apple.QuickLookFramework 1.1 (170.4) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x97291000 - 0x97298ff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x97299000 - 0x972c8fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x972c9000 - 0x972f1ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    I am thinking it is related to Mobile Me and Isync. Mail also seems to take a long time "Registering syncing preferences" I have attempted to disable syncing but have been unable to resolve the problem.
    Can anyone help?
    Thanks,
    Peter Kaeding

    Nothing was installed immediately preceding the crashes. The only thing that happened before the crashes started was the descending grey screen with "Please restart your computer" (kernel panic?).
    The only things installed recently was the HP driver update and the MobileMe update...
    I have also installed and updated Iphone 3G apps but I don't know if they would be connected...
    Thanks,
    Peter
    Message was edited by: Peter Kaeding

  • Crashing of PC while loading latest blackberry link in Windows 8.1

    Is there a common issue of PC crashing everytime while loading latest Blackberry link 1.0.28.
    Even sync with outlook is stopped in windows 8.1.
    Assistance required.

    Many have problems but millions do not,  it is most likely your computer, you have a better chance to find a answer here:
    http://answers.microsoft.com/en-us

  • App Crash with Lightroom 4.2

    Why am I getting app crashes while using LR 4.2?  I just installed the 4.2 update on Sept 3rd and already have had three crashes inside first day's use.   Crash details: 
    "1st crash"
    Problem signature:
    Problem Event Name:     APPCRASH
    Application Name:     lightroom.exe
    Application Version:     4.2.0.11
    Application Timestamp:     505a0579
    Fault Module Name:     StackHash_3173
    Fault Module Version:     6.1.7601.17725
    Fault Module Timestamp:     4ec4aa8e
    Exception Code:     c0000374
    Exception Offset:     00000000000c40f2
    OS Version:     6.1.7601.2.1.0.768.3
    Locale ID:     1033
    Additional Information 1:     3173
    Additional Information 2:     3173d202a7976be0362b81fa7b5f9ce2
    Additional Information 3:     f324
    Additional Information 4:     f3244425afc873fb2ecf33f88fc815ff
    *** missed capturing the crash data for second. ***
    "3rd crash"
    Problem signature:
      Problem Event Name:          APPCRASH
      Application Name:          lightroom.exe
      Application Version:          4.2.0.11
      Application Timestamp:          505a0579
      Fault Module Name:          StackHash_3173
      Fault Module Version:          6.1.7601.17725
      Fault Module Timestamp:          4ec4aa8e
      Exception Code:          c0000374
      Exception Offset:          00000000000c40f2
      OS Version:          6.1.7601.2.1.0.768.3
      Locale ID:          1033
      Additional Information 1:          3173
      Additional Information 2:          3173d202a7976be0362b81fa7b5f9ce2
      Additional Information 3:          f324
      Additional Information 4:          f3244425afc873fb2ecf33f88fc815ff

    Ive been getting app crashes when I open lightroom as well. using windows 7
    -- plus I am losing the source of my import after the thumbnails show.  I have reported re: a similar occurence but it now happens when the thumbnails load not only when tryiong to select.  Ive also had some corrupted files recently when loading. second time they are fine.
    Problem signature:
      Problem Event Name:                        APPCRASH
      Application Name:                             lightroom.exe
      Application Version:                           4.2.0.11
      Application Timestamp:                     505a0579
      Fault Module Name:                          StackHash_cb7b
      Fault Module Version:                        6.1.7601.17725
      Fault Module Timestamp:                  4ec4aa8e
      Exception Code:                                  c0000374
      Exception Offset:                                00000000000c40f2
      OS Version:                                          6.1.7601.2.1.0.256.48
      Locale ID:                                             1033
      Additional Information 1:                  cb7b
      Additional Information 2:                  cb7b5c306c9a7a4763a64680327d8e94
      Additional Information 3:                  1bc0
      Additional Information 4:                  1bc0cd5fe204d306a476aa9208cad465
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt

  • Photogene App crashes with some photos with iOS 8 update, not others when in edit

    SInce the iOS 8 update some when I select a photograph or when scrolling pictures in an Album, the App crashes.  This never happened before this new upgrade.  I've used it for months.  Any help appreciate.  With certain pictures, no problem.  I make personal cards for printing and this app has been great until now.  I go into one album, scroll, select a photograph p, work in it, no proble.  I move to another Album, and whil scrolling it crashes, repeatedly..  This app replaced the iPhoto App as that one was multiplying pictures like rabbits and alleged fixes and visits to the Apple Store did not solve the problem.  The Appke Store personnell were great but no one could fix that issue.  I deleted it.  Many, many others everywhere had that similar problem.  Any help with this crashing problem is appreciated. 

    Thank you, Ralph,  for your reply.  I'm a practical person so I tried trial and error.  It was recents ans larger Albums that the Photogene crashed.  I could make a card from my smaller Albums.  So I transferred a few photos from the ones that crashed to the successful Album(s).  I could edit, put Text, save, export to my library, e-mail and post on FaceBoo.  That worked for me.  A round about way, but it works.  Again, thanks.
    Dan

  • All CS2 apps crash with "Read Only Memory Exception" error.

    Machine Specs.
    Apple G5 1.8ghz DP
    OS X 10.4.10
    It doesn't matter which one I open, they all crash with the same error. This started when a user placed a support ticket for their mac not starting up. I wasn't able to save the user so I created a new user, and then moved their desktop files over to the new user. However the only files I moved were those on the desktop, and their Notes data directory.
    Thinking my job done I marked the tickets closed and walked away.
    I got a call later when the user came into the office and the issue was that Indesign CS2 was crashing with a "Read Only Memory Exception" error. I first deleted the Preferences on the machine. That didn't work.
    So I created a new user to see if it was the user causing the errors. I received the same error when opening Indesign CS2 from the brand new user account. I also tested all other CS2 programs and got the same errors.
    Next I tried deleting the CS2 programs and re-installing them. No luck, same error, even with a new user. I have not re-installed any plug-ins with the new App installs yet.
    Removed all fonts, and ran a font cache cleaner. Same error.
    Finally, the last thing I've tried is to manually remove every adobe application on the machine. Acrobat 5/6/7, CS1, CS2...etc. I have also removed any Adobe files/folders in the //library/, and /$home/Library/.
    Yet I still get the same error. Short of a complete wipe I'm not sure where to proceed next. I'm really confused and hoping someone can give me some clues.

    Thanks to a comcast permissions error any new files I upload to my comcast.net pages requires the administrator username/password to even see the file to download it. Simply giving out the URL for new files results in page not found errors.
    So for the forseeable future I don't see any way to upload this file correctly. Its there on my webspace all 63megs of it. If I login through the FTP account I can upload and download to my hearts content but since anonymous access is disabled I'm not giving out my administrator login info.
    I've got a gig of space, using 22mb of it, and can't upload any more files because no-one has permissions to access them.
    I spent a half hour on the phone with comcast trying to figure this out. However I don't know whats going on with their end. I have a trouble ticket open for a level 3 tech, we'll see whats going on.
    So the Font Scrubber will remain unavailable for the time being unless someone wants to give me guest upload access to a FTP account. I'm not opening a fileshare account with anyone, don't like'm.

Maybe you are looking for

  • Itunes installed on Windows xp Pro 64 bit

    I just built a new computer using an AMD 64x2 processor. The operating system is Windows XP Pro 64. I used Itunes on my old 32 bit xp, but now I can't get Itunes installed on the 64. Is there a different driver I need to install and if so where can I

  • I get the blue screen whenever I try to install the bootcamp drivers in windows 7

    I just recently installed windows 7 home on my 2011 imac useing bootcamp. Everything seemed to install fine however whenever I try to run the bootcamp drivers in windows to get my mouse and wifi and all that to work I get a blue screened. Any Ideas?

  • Imessage photos not working can send text

    Hello,         I have an ipad 2 which I have mainly for work. It was worked great but today I noticed I can no longer send photos via imessanger. I have looked through the forums and no solutions. I have tried killing all tasks, restarting, removing

  • CSS3 Gallery problem, help!

    Hey everyone, I have a CSS3 gallery on my website www.hardtimesdesigns.co.uk/portfolio.html that works perfectly! I am trying to replicate the same gallery for a friend for his website. My effort can be seen here www.alicatrenovations.com.au/gallery.

  • Cant instal Adobe Camera RAW

    Hello Im having this problem - I instal Camera RAW Plugin 3.7 (Program Files/Common Files/Adobe/Plug-Ins/CS2/File Formats) open PhotoShop and the plugin is nowhere to be seen.Whats happening?Am I doing something wrong?Please help! Thank You.