OCCI client application crashing, when implemented in a shared library

Dear All,
I have a problem running my Oracle C++ client using OCCI.
The client crashes when it tries to call the OCCI createConnection method.
The crash happen only if the connection method is implemented inside of an object that it is build in a shared library, which after it is linked to the main program. If I implement everything in the main function the crash does not happen.
I am building and running my client on SLES9 service pack 2 (Linux kernel 2.6.5) using Oracle 10.2g (10.2.0.1) and gcc 3.3.3, glibc 2.3.3 and libaio-0.3 and libaio-devel-0.3.
==================================================
Attaching the core with gdb, I get the following stack:
#0 0x400c2f4e in parse_lsda_header () from /usr/lib/libstdc++.so.5
#1 0x400c324c in __gxx_personality_v0 () from /usr/lib/libstdc++.so.5
#2 0x40111454 in UnwindRaiseException () from /lib/libgcc_s.so.1
#3 0x401115dc in UnwindResume_or_Rethrow () from /lib/libgcc_s.so.1
#4 0x400c368f in __cxa_rethrow () from /usr/lib/libstdc++.so.5
#5 0x40284b8a in TAG_PACKET_38 () from /home/oracle/app/10.2g/lib/libocci.so.10.1
#6 0x402819da in ZN6oracle4occi14ConnectionImplC9EPNS015EnvironmentImplERKSsS5_S5_ () from /home/oracle/app/10.2g/lib/libocci.so.10.1
#7 0x4028606f in oracle::occi::ConnectionImpl::ConnectionImpl () from /home/oracle/app/10.2g/lib/libocci.so.10.1
#8 0x4028074b in oracle::occi::EnvironmentImpl::createConnection () from /home/oracle/app/10.2g/lib/libocci.so.10.1
#9 0x4001ba2a in oralib::connect (this=0x804a008) at oraclelib.cpp:46
#10 0x08048a27 in main () at oramain.cpp:14
When, I run my client with valgrind that the output is the following:
oracle@nemesis:~/app/10.2g/rdbms/demo/parc_example> valgrind ./oramain
==32212== Memcheck, a memory error detector.
==32212== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al.
==32212== Using LibVEX rev 1732, a library for dynamic binary translation.
==32212== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP.
==32212== Using valgrind-3.2.3, a dynamic binary instrumentation framework.
==32212== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al.
==32212== For more details, rerun with: -v
==32212==
=== Calling init()
*** Creating the environment...
- m_env = 0x5390318
done!
=== Calling connect()
*** Connecting using following setting:
- user : SCOTT
- passwd : TIGER
- connString :
==32213==
==32213== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 32 from 1)
==32213== malloc/free: in use at exit: 724,565 bytes in 377 blocks.
==32213== malloc/free: 611 allocs, 234 frees, 757,833 bytes allocated.
==32213== For counts of detected errors, rerun with: -v
==32213== searching for pointers to 377 not-freed blocks.
==32213== checked 1,912,228 bytes.
==32213==
==32213== LEAK SUMMARY:
==32213== definitely lost: 39 bytes in 1 blocks.
==32213== possibly lost: 3,030 bytes in 2 blocks.
==32213== still reachable: 721,496 bytes in 374 blocks.
==32213== suppressed: 0 bytes in 0 blocks.
==32213== Rerun with --leak-check=full to see details of leaked memory.
==32212== Invalid read of size 1
==32212== at 0x40CAF4E: parse_lsda_header(_Unwind_Context*, unsigned char const*, lsda_header_info*) (in /usr/lib/libstdc++.so.5.0.6)
==32212== by 0x40CB24B: __gxx_personality_v0 (in /usr/lib/libstdc++.so.5.0.6)
==32212== by 0x411A453: UnwindRaiseException (in /lib/libgcc_s.so.1)
==32212== by 0x411A5DB: UnwindResume_or_Rethrow (in /lib/libgcc_s.so.1)
==32212== by 0x40CB68E: __cxa_rethrow (in /usr/lib/libstdc++.so.5.0.6)
==32212== by 0x428CB89: oracle::occi::ConnectionImpl::openConnection(OCIEnv*, OCIError*, void*, unsigned, void*, unsigned, void*, unsigned, void*, unsigned, unsigned) (
in /home/oracle/app/10.2g/lib/libocci.so.10.1)
==32212== by 0x42899D9: ZN6oracle4occi14ConnectionImplC9EPNS015EnvironmentImplERKSsS5_S5_ (in /home/oracle/app/10.2g/lib/libocci.so.10.1)
==32212== by 0x428E06E: oracle::occi::ConnectionImpl::ConnectionImpl(oracle::occi::EnvironmentImpl*, std::string const&, std::string const&, std::string const&) (in /ho
me/oracle/app/10.2g/lib/libocci.so.10.1)
==32212== by 0x428874A: oracle::occi::EnvironmentImpl::createConnection(std::string const&, std::string const&, std::string const&) (in /home/oracle/app/10.2g/lib/liboc
ci.so.10.1)
==32212== by 0x4023A29: oralib::connect() (oraclelib.cpp:46)
==32212== by 0x8048A26: main (oramain.cpp:14)
==32212== Address 0x123 is not stack'd, malloc'd or (recently) free'd
==32212==
==32212== Process terminating with default action of signal 11 (SIGSEGV)
==32212== Access not within mapped region at address 0x123
==32212== at 0x40CAF4E: parse_lsda_header(_Unwind_Context*, unsigned char const*, lsda_header_info*) (in /usr/lib/libstdc++.so.5.0.6)
==32212== by 0x40CB24B: __gxx_personality_v0 (in /usr/lib/libstdc++.so.5.0.6)
==32212== by 0x411A453: UnwindRaiseException (in /lib/libgcc_s.so.1)
==32212== by 0x411A5DB: UnwindResume_or_Rethrow (in /lib/libgcc_s.so.1)
==32212== by 0x40CB68E: __cxa_rethrow (in /usr/lib/libstdc++.so.5.0.6)
==32212== by 0x428CB89: oracle::occi::ConnectionImpl::openConnection(OCIEnv*, OCIError*, void*, unsigned, void*, unsigned, void*, unsigned, void*, unsigned, unsigned) (
in /home/oracle/app/10.2g/lib/libocci.so.10.1)
==32212== by 0x42899D9: ZN6oracle4occi14ConnectionImplC9EPNS015EnvironmentImplERKSsS5_S5_ (in /home/oracle/app/10.2g/lib/libocci.so.10.1)
==32212== by 0x428E06E: oracle::occi::ConnectionImpl::ConnectionImpl(oracle::occi::EnvironmentImpl*, std::string const&, std::string const&, std::string const&) (in /ho
me/oracle/app/10.2g/lib/libocci.so.10.1)
==32212== by 0x428874A: oracle::occi::EnvironmentImpl::createConnection(std::string const&, std::string const&, std::string const&) (in /home/oracle/app/10.2g/lib/liboc
ci.so.10.1)
==32212== by 0x4023A29: oralib::connect() (oraclelib.cpp:46)
==32212== by 0x8048A26: main (oramain.cpp:14)
==32212==
==32212== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 32 from 1)
==32212== malloc/free: in use at exit: 680,744 bytes in 222 blocks.
==32212== malloc/free: 616 allocs, 394 frees, 760,162 bytes allocated.
==32212== For counts of detected errors, rerun with: -v
==32212== searching for pointers to 222 not-freed blocks.
==32212== checked 1,870,208 bytes.
==32212==
==32212== LEAK SUMMARY:
==32212== definitely lost: 132 bytes in 1 blocks.
==32212== possibly lost: 960 bytes in 1 blocks.
==32212== still reachable: 679,652 bytes in 220 blocks.
==32212== suppressed: 0 bytes in 0 blocks.
==32212== Rerun with --leak-check=full to see details of leaked memory.
Segmentation fault
Any Idea?
Thanks in advance and Regards

Dear All,
I found the solution.
It is enough to add the build flag: "-fPIC" to the g++

Similar Messages

  • I have been using Lightroom 4.4 successfully for over 2 years.  Just tried to import some new photos after a vacation and the application crashes when I click "import" every time.  Tried restarting computer.  Version says it is up to date.

    I have been using Lightroom 4.4 successfully for over 2 years.  Just tried to import some new photos after a vacation and the application crashes when I click "import" every time.  Tried restarting computer.  Version says it is up to date.
    How do I get formal support for this from Adobe?

    Thanks for the response.  The application was crashing.  A Windows message was displayed showing "Lightroom.exe has stopped working", "Windows can check online for a solution the problem.". Etc.
    I just launched Lightroom to check the exact message for this reply - and the Import worked.  It had failed dozens of times before. 

  • Every application crashes when i try to print from it!

    Hello everyone, i have an HP 1012 laserjet and it was working perfectly fine until i installed all the updates for the ILife and everything else that came out earlier this week. Anyone know what is going on??

    I had the same problem as well. All applications crashed when I tried to print.
    I found the solution at http://forums.macrumors.com/showthread.php?t=199701&highlight=printing+crash.
    What I ended up doing was to delete the system's printer drivers (located in Macintosh HD > Library > Printers), then re-installing them from install disk one (optional install). This was suggested by "mad jew" on macrumors, and worked for "EricNau" (using 10.4.6 on iMac G5 17") as well as myself (using 10.4.6 on MBP 17"). Hope it works for you as well.

  • Applications crash when attempting to use network printer

    I just upgraded to Tiger. Now, all applications crash when I attempt to select my network printer (HP laserjet 4600) from the 'File' ->'Print' menu. If the network printer is selected as my default printer, the program closes before the print menu even comes up. However, I can print to this printer if it is my default printer and I use the print icon instead of 'File'->'Print'. I also have a USB printer (Lexmark) which I can print to no problem. I can print to all printers with no problems from Classic applications, and I had no problems printing from either Classic or OS X before upgrading to Tiger. Anyone have any ideas?
    Faris

    Did you run Disk Utility> Repair Permissions after installing the HP driver software? While Repair Permissions may no longer be a useful as it was as a generic troubleshooting step under OS X 10.2.x, it's still essential if you have any third-party software that requires an administrative password to install, especially HP or Adobe software, which are known to trample around placing files with mis-set permissions all over the place.

  • OS 10.3.7 Applications Crash when I do a "save "

    Applications crash when I save documents, so I always save as, and make the file name alittle different. I have fixed and verified permissions, I have trashed preferences, anything else I can do?? this is really getting annoying!
    thanks,
    Tori

    I agree with Roam -- use the new one for a while. Run all your apps to make sure things are cool and work as you desire. In a few months, once you've grown accustomed to the new account, it will be safe to wipe out the old.
    It sounds like there was some corruption in the old account (caches? perms? who knows?) Often these problems can be solved at a more granular level, but if the big and easy answer works, hey, go with that.
    Thanks for the star, BTW.
    Best,
    ~FifthWheel

  • Since upgrading to mavericks my applications crash when i try to use the print dialogue

    since upgrading to mavericks my applications crash when i try to use the print dialogue

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports (not "Diagnostic and Usage Messages") for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post other kinds of diagnostic report — they're very long and not helpful.

  • I am trying to move my itunes library from my old pc to my new imac, home sharing is on and I can see the shared library.  My problem is that when I check the shared library to import it to my imac I cannot import it.  Can anyone help me?

    I am trying to move my itunes library from my old pc to my new imac, home sharing is on and I can see the shared library.  My problem is that when I check the shared library to import it to my imac I cannot import it.  Can anyone help me?

    You need to transfer the iTunes Library from the most recent backup you made before the hard drive was replaced.
    You can't transfer the full iTunes Library from the iPad back to iTunes.
    There are third-party Windows applications that will transfer data from an iOS device, but they don't re-create the iTunes Library exactly as it was before.

  • Application crashes when using JNI with Jdk 1,2, 1.3 and 1.4

    Hi!
    I have this application that has a GUI written in Java and a file parser written in C. JNI is used to connect these parts together. The problem is that the application only works when I am using jdk 1.1.8 but not when using jdk1.2, jdk1.3 or jdk1.4. I am running the application on a Solaris 8 machine.
    I have not written the application myself but I am going to be working with it from now on. But I have today little knowledge with JNI and I have tried different approaches to solve the problem. For example I have tried to used DDD together with GDB to find out what the problem is but with no luck. When I run the application using jdk1.4 I get the following error when the JVM crashes:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 10 occurred at PC=0xFA023164
    Function=Java_Bitmap_setDebug+0x1C
    Library=/usr/u/lal/micview/micview2_1_0_beta1/libBitmapImpl.so
    Current Java thread:
    at Bitmap.setDebug(Native Method)
    at DisplayPanel.loadFile(DisplayPanel.java:396)
    at MicPlot.loadFile(MicPlot.java:1452)
    at MicPlot.loadFile(MicPlot.java:1441)
    at MicPlot.miOpen_Action(MicPlot.java:1267)
    at MicPlot$SymAction.actionPerformed(MicPlot.java:1184)
    at java.awt.MenuItem.processActionEvent(MenuItem.java:588)
    at java.awt.MenuItem.processEvent(MenuItem.java:548)
    at java.awt.MenuComponent.dispatchEventImpl(MenuComponent.java:285)
    at java.awt.MenuComponent.dispatchEvent(MenuComponent.java:273)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:452)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    Dynamic libraries:
    0x10000 /opt/java/jdk1.4/bin/java
    0xff360000 /usr/lib/libthread.so.1
    0xff3a0000 /usr/lib/libdl.so.1
    0xff280000 /usr/lib/libc.so.1
    0xff270000 /usr/platform/SUNW,Ultra-4/lib/libc_psr.so.1
    0xfe000000 /opt/java/j2sdk1.4.1/jre/lib/sparc/client/libjvm.so
    0xff220000 /usr/lib/libCrun.so.1
    0xff200000 /usr/lib/libsocket.so.1
    0xff100000 /usr/lib/libnsl.so.1
    0xff1d0000 /usr/lib/libm.so.1
    0xff250000 /usr/lib/libw.so.1
    0xff0e0000 /usr/lib/libmp.so.2
    0xff0b0000 /opt/java/j2sdk1.4.1/jre/lib/sparc/native_threads/libhpi.so
    0xff080000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libverify.so
    0xff030000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libjava.so
    0xfe7e0000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libzip.so
    0xfe4e0000 /usr/lib/locale/en_US.ISO8859-1/en_US.ISO8859-1.so.2
    0xedd00000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libawt.so
    0xfc480000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libmlib_image.so
    0xfc410000 /opt/java/j2sdk1.4.1/jre/lib/sparc/motif21/libmawt.so
    0xeda80000 /usr/dt/lib/libXm.so.4
    0xfa090000 /usr/openwin/lib/libXt.so.4
    0xfa3d0000 /usr/openwin/lib/libXext.so.0
    0xfc7e0000 /usr/openwin/lib/libXtst.so.1
    0xed980000 /usr/openwin/lib/libX11.so.4
    0xfa2a0000 /usr/openwin/lib/libdps.so.5
    0xfa3b0000 /usr/openwin/lib/libSM.so.6
    0xfa1d0000 /usr/openwin/lib/libICE.so.6
    0xed880000 /opt/java/j2sdk1.4.1/jre/lib/sparc/libfontmanager.so
    0xfa390000 /usr/openwin/lib/locale/common/xlibi18n.so.2
    0xfa1b0000 /usr/openwin/lib/locale/iso8859-1/xomEuro.so.2
    0xfa190000 /usr/lib//liblayout.so
    0xfa050000 /usr/openwin/lib/locale/common/ximlocal.so.2
    0xfa010000 /usr/u/lal/micview/micview2_1_0_beta1/libBitmapImpl.so
    Local Time = Thu Oct 3 13:32:47 2002
    Elapsed Time = 35
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.1-beta-b14 mixed mode)
    # An error report file has been saved as hs_err_pid27692.log.
    # Please refer to the file for further information.
    Abort
    From this information I think that the problem should be in the native method setDebug. But I have tried to set a breakpoint at the beginning of that function in the C part but with no luck. The application crashes before it reaches that position in the C file.
    What could possibly go wrong between the setDebug function in the C part and the function call in the Java part?
    When using GDB, GDB cannot figure out what is wrong it just returns a hex address, no function name.
    I would really appreciate some help. I have tried everything that I can come up with!
    Best regards
    Lars

    I have figured out that the application fails on its first call to the native methods.
    So I have this Bitmap class that contains all the native calls and it is defined shortly as follow:
    public class Bitmap {
    static {
    System.loadLibrary("BitmapImpl");
    native void setDebug(int debuglevel, int statistics);
    There are many more native methods defined in Bitmap, but I only show the setDebug method because that is the first one that is executed and also the one that immediately fails.
    My setDebug C function is defined as follow in BitmapImpl.c
    #include <time.h>
    #include <stdio.h>
    #include <limits.h>
    #include <fcntl.h>
    #include <jni.h>
    #include <math.h>
    #include <errno.h>
    #include "Bitmap.h"
    #include "data.h"
    jint debug = 0;
    jint statistics = 1;
    JNIEXPORT void JNICALL Java_Bitmap_setDebug
    (JNIEnv *jenv, jobject jo, jint d, jint s)
    debug = d;
    statistics = s;
    My libBitmapImpl.so file is compiled using the following Makefile and using GNU gcc:
    JAVAPATH=$(JAVAINCLUDEPATH)
    LMACRO=-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSOLARIS
    CSOURCE=BitmapImpl.c
    all:
    gcc -O3 -G $(LMACRO) -I$(JAVAPATH) -I$(JAVAPATH)/solaris \
    $(CSOURCE) -o libBitmapImpl.so
    It is still a total mystory why the application fails. I have tried it on a RedHat Linux machine and there it works fine. But not on Solaris. Only if I use the jdk1.1.8 but not a later one.
    Would really appreiciate some help!
    Best regards
    Lars

  • Applications crashing when attempting to Open File?

    Hi
    I am having a problem that on a few (not all) of my applications running on Mountain Lion, when trying to open/import a file, when the finder window pops up the application crashes and closes itself, so far I've had this problem with Chrome and Logic Pro 9. It happens every time so it's hard to use these programs now.
    This is the error report from Logic.
    Thanks!
    Process:         Logic Pro [25045]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.1.8 (1700.67)
    Build Info:      Logic-17006700~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [141]
    User ID:         501
    Date/Time:       2012-12-07 17:16:24.568 -0500
    OS Version:      Mac OS X 10.8 (12A239)
    Report Version:  10
    Interval Since Last Report:          113197 sec
    Crashes Since Last Report:           -18
    Per-App Interval Since Last Report:  20343 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      3D16DDD3-E203-47CE-A5A4-EC56E5497006
    Crashed Thread:  20  Dispatch queue: quicklook.pluginload
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
        __TEXT                 0000000000001000-0000000000beb000 [ 11.9M] r-x/rwx SM=COW  /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Application Specific Information:
    abort() called
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x950067d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95005cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x914d9cc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x914df6af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x914ded6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x914debdb CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox                     0x952d9816 RunCurrentEventLoopInMode + 242
    7   com.apple.HIToolbox                     0x952e1281 ReceiveNextEventCommon + 374
    8   com.apple.HIToolbox                     0x952e10fc BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x96e0d25a _DPSNextEvent + 724
    10  com.apple.AppKit                        0x96e0ca8c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    11  com.apple.AppKit                        0x970b92e0 -[NSApplication _realDoModalLoop:peek:] + 667
    12  com.apple.AppKit                        0x970b9424 -[NSApplication _doModalLoop:peek:] + 67
    13  com.apple.AppKit                        0x970b95e5 -[NSApplication runModalForWindow:] + 198
    14  com.apple.AppKit                        0x973c861f -[NSSavePanel runModal] + 389
    15  com.apple.AppKit                        0x973c787f -[NSSavePanel runModalForDirectory:file:types:] + 281
    16  com.apple.logic.pro                     0x00138442 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1032386
    17  com.apple.music.apps.MAAudioEngine          0x02b37b8b MDPlug::SetControlValue(short, long) + 14827
    18  com.apple.music.apps.MADSP              0x01dfc6e6 CSamplerFilter::CSamplerFilter(long, double, bool&) + 498326
    19  com.apple.music.apps.MADSP              0x01dfeb34 CSamplerFilter::CSamplerFilter(long, double, bool&) + 507620
    20  com.apple.music.apps.MADSP              0x01c7f9e3 0x1b98000 + 948707
    21  com.apple.music.apps.MADSP              0x01bd60ce 0x1b98000 + 254158
    22  com.apple.music.apps.MAPlugInGUI          0x0163c956 GSender::Broadcast(GMessage const&) + 86
    23  com.apple.music.apps.MAPlugInGUI          0x014e31f6 GControl::BroadcastValue(bool, int) + 182
    24  com.apple.music.apps.MAPlugInGUI          0x014e2a88 GControl::SetControlPos(int, bool, bool, bool, int, int) + 328
    25  com.apple.music.apps.MAPlugInGUI          0x014dc008 GButton::OnBeginAction(GControl::GHotSpot const&) + 136
    26  com.apple.music.apps.MAPlugInGUI          0x014e434d GControl::HandleBeginAction(GControl::GHotSpot const&) + 61
    27  com.apple.music.apps.MAPlugInGUI          0x014e2ef4 GControl::OnMouseDown(GMouseDownEvent const&) + 644
    28  com.apple.music.apps.MAPlugInGUI          0x01654696 GView::HandleMouseDown(GMouseDownEvent const&) + 374
    29  com.apple.music.apps.MAPlugInGUI          0x01641f43 GBaseView::EventMouseDown(GMouseDownEvent const&) + 771
    30  com.apple.music.apps.MAPlugInGUI          0x0164163a GBaseView::HandleCbEventMouseDown(GMouseDownEvent const&) + 250
    31  com.apple.music.apps.MAPlugInGUI          0x017a72ae GViewConnector::GViewConnector(NSView*, GGeoRect<int> const&, GListener*) + 17838
    32  com.apple.music.apps.MAPlugInGUI          0x017a5b11 GViewConnector::GViewConnector(NSView*, GGeoRect<int> const&, GListener*) + 11793
    33  com.apple.music.apps.MAPlugInGUI          0x017a5a3c GViewConnector::GViewConnector(NSView*, GGeoRect<int> const&, GListener*) + 11580
    34  com.apple.AppKit                        0x96ed2051 -[NSWindow sendEvent:] + 6968
    35  com.apple.prokit                        0x00ff2a0c -[NSProPanel sendEvent:] + 257
    36  com.apple.logic.pro                     0x007c9f93 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 7920659
    37  com.apple.logic.pro                     0x0091a181 void UnitTest::CheckEqual<ScTypeSetter::tVerticalAlignment, ScTypeSetter::tVerticalAlignment>(UnitTest::TestResults&, ScTypeSetter::tVerticalAlignment, ScTypeSetter::tVerticalAlignment, UnitTest::TestDetails const&) + 24513
    38  com.apple.AppKit                        0x96e6dafc -[NSApplication sendEvent:] + 4278
    39  com.apple.prokit                        0x00fd0235 -[NSProApplication sendEvent:] + 2046
    40  com.apple.logic.pro                     0x0061503d std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6130877
    41  com.apple.logic.pro                     0x00619cd1 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6150481
    42  com.apple.logic.pro                     0x0061506f std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6130927
    43  com.apple.AppKit                        0x96e0894c -[NSApplication run] + 951
    44  com.apple.prokit                        0x00fd0b53 NSProApplicationMain + 424
    45  com.apple.logic.pro                     0x0002bad5 DummyConnection::DummyConnection() + 193
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x950099ae kevent + 10
    1   libdispatch.dylib                       0x9189f19a _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x9189edb9 _dispatch_mgr_thread + 53
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x950067d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95005cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x914d9cc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x914df6af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x914ded6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x914debdb CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x9064515a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x9051852a -[NSThread main] + 45
    8   com.apple.Foundation                    0x905184ad __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    10  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x95008be6 __select + 10
    1   com.apple.CoreFoundation                0x91523320 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    3   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAFiles            0x02a5b838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a5b901 ResolveFile + 55009
    5   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    6   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAFiles            0x02a5b838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a5b901 ResolveFile + 55009
    5   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    6   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 6:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x950067d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95005cb0 mach_msg + 68
    2   com.apple.audio.CoreAudio               0x900a7184 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio               0x900a71fc HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio               0x9009f6fb HALC_ProxyIOContext::IOWorkLoop() + 1389
    5   com.apple.audio.CoreAudio               0x9009f0e1 HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio               0x900aa51a ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio               0x9009efe3 HALB_IOThread::Entry(void*) + 69
    8   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    9   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b11f7c MD::CallProcessThread1(void*) + 108
    4   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    5   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b11cfc MD::CallProcessThread2(void*) + 124
    4   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    5   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b0fbac MD::CallProcessThread15(void*) + 124
    4   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    5   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b2f3a9 MDFileIOThread_IsBusy + 3593
    4   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    5   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x950067d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95005cb0 mach_msg + 68
    2   com.apple.audio.midi.CoreMIDI           0x0139e22d XServerMachPort::ReceiveMessage(int&, void*, int&) + 101
    3   com.apple.audio.midi.CoreMIDI           0x013bbae0 MIDIProcess::RunMIDIInThread() + 144
    4   com.apple.audio.midi.CoreMIDI           0x013c1c48 MIDIProcess::MIDIInPortThread::Run() + 24
    5   com.apple.audio.midi.CoreMIDI           0x0139f805 XThread::RunHelper(void*) + 17
    6   com.apple.audio.midi.CoreMIDI           0x0139f2ee CAPThread::Entry(CAPThread*) + 196
    7   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    8   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96070a09 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96070c92 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9390df47 TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x9390dc25 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x9390db10 TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9397b39c TimerThread + 324
    7   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    8   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x95008be6 __select + 10
    1   com.apple.logic.pro                     0x0096fc07 void UnitTest::CheckEqual<ScTypeSetter::tVerticalAlignment, ScTypeSetter::tVerticalAlignment>(UnitTest::TestResults&, ScTypeSetter::tVerticalAlignment, ScTypeSetter::tVerticalAlignment, UnitTest::TestDetails const&) + 375367
    2   com.apple.logic.pro                     0x005b1d84 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5724676
    3   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    4   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 15:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 17:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 19:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 20 Crashed:: Dispatch queue: quicklook.pluginload
    0   libsystem_kernel.dylib                  0x95008a6a __pthread_kill + 10
    1   libsystem_c.dylib                       0x9606d24f pthread_kill + 101
    2   libsystem_c.dylib                       0x960b1cc8 __abort + 199
    3   libsystem_c.dylib                       0x960b1c01 abort + 232
    4   com.apple.logic.pro                     0x003e6729 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3842985
    5   libsystem_c.dylib                       0x96057feb _sigtramp + 43
    6   com.apple.CoreFoundation                0x914afc61 CFStringGetLength + 17
    7   com.apple.CoreFoundation                0x9159c665 CFDateFormatterGetAbsoluteTimeFromString + 69
    8   com.apple.security                      0x9317b76d decodeTimeStampToken + 764
    9   com.apple.security                      0x93178478 SecCmsSignerInfoVerifyUnAuthAttrs + 97
    10  com.apple.security                      0x931783a7 SecCmsSignerInfoVerify + 581
    11  com.apple.security                      0x93177153 SecCmsSignedDataVerifySignerInfo + 111
    12  com.apple.security                      0x931c80cd CMSDecoderCopySignerStatus + 199
    13  com.apple.security                      0x931e1b4a Security::CodeSigning::SecStaticCode::verifySignature() + 436
    14  com.apple.security                      0x931e1816 Security::CodeSigning::SecStaticCode::validateDirectory() + 64
    15  com.apple.security                      0x931e1f9d Security::CodeSigning::SecStaticCode::validateNonResourceComponents() + 19
    16  com.apple.security                      0x931d52c5 validate(Security::CodeSigning::SecStaticCode*, Security::CodeSigning::SecRequirement const*, unsigned int) + 40
    17  com.apple.security                      0x931d510e SecStaticCodeCheckValidityWithErrors + 597
    18  com.apple.security                      0x931d4eb4 SecStaticCodeCheckValidity + 39
    19  com.apple.QuickLookFramework            0x90476723 QLCheckAppleSignature + 128
    20  com.apple.QuickLookFramework            0x90445ba1 _QLLoadPluginAtURL + 3264
    21  com.apple.QuickLookFramework            0x9044a304 ___QLLaunchUpdatingThread_block_invoke_0 + 2704
    22  libdispatch.dylib                       0x9189c579 _dispatch_call_block_and_release + 15
    23  libdispatch.dylib                       0x9189fc47 _dispatch_client_callout + 46
    24  libdispatch.dylib                       0x9189a435 _dispatch_queue_drain + 206
    25  libdispatch.dylib                       0x9189a2cf _dispatch_queue_invoke + 50
    26  libdispatch.dylib                       0x9189a1b6 _dispatch_worker_thread2 + 230
    27  libsystem_c.dylib                       0x9606e592 _pthread_wqthread + 441
    28  libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 21:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 22:: Dispatch queue: quicklook.client
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96070a09 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96070c92 pthread_cond_timedwait_relative_np + 47
    3   com.apple.QuickLookFramework            0x90444cfa _QLLockDatabaseWaitForUpdateToFinishIfPossible + 611
    4   com.apple.QuickLookFramework            0x904463f6 _QLGeneratorCopyGeneratorForContentType + 36
    5   com.apple.QuickLookFramework            0x9043dd40 ___QLThumbnailSendQuery_block_invoke_0 + 1077
    6   libdispatch.dylib                       0x9189fc47 _dispatch_client_callout + 46
    7   libdispatch.dylib                       0x9189bc9f _dispatch_barrier_sync_f_invoke + 39
    8   libdispatch.dylib                       0x9189bc76 dispatch_barrier_sync_f + 87
    9   libdispatch.dylib                       0x9189bbcb dispatch_sync + 45
    10  com.apple.QuickLookFramework            0x9043d17b _QLThumbnailSendQuery + 466
    11  com.apple.QuickLookFramework            0x9046bc4a QLThumbnailQueueRun + 2814
    12  com.apple.FinderKit                     0x92df7360 TQLThumbnailQueue::Run() + 36
    13  com.apple.FinderKit                     0x92e0188a TThumbnailExtractorThread::Main() + 1058
    14  com.apple.FinderKit                     0x92dd4b40 TThread::MainGlue(void*) + 62
    15  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    16  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 20 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x96057fce  ecx: 0xb09b496c  edx: 0x95008a6a
      edi: 0xb09b6000  esi: 0x00000006  ebp: 0xb09b4988  esp: 0xb09b496c
       ss: 0x00000023  efl: 0x00000206  eip: 0x95008a6a   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x12adb000
    Logical CPU: 0
    Binary Images:
        0x1000 -   0xbeafff  com.apple.logic.pro (9.1.8 - 1700.67) <94981650-518B-2288-F07D-F28F27103100> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe84000 -   0xea2fef  com.apple.XSKey (1.0.0 - 52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
      0xeb1000 -   0xee4fe7  com.apple.music.apps.MAAudioUnitSupport (9.1.8 - 233.53) <E8A99468-7726-CCFE-8D26-DDBC9D5E1AC3> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xef1000 -   0xf22ff3  com.apple.musicaudiodataservices (1.1 - 251.4) <0265F317-13AB-6CF1-A171-7D5853442E75> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf31000 -   0xf33fff  com.apple.ExceptionHandling (1.5 - 10) <0C469663-3F49-338F-80F7-546497B03110> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
      0xf39000 -   0xf97ff3  com.apple.music.apps.MALoopManagement (9.1.8 - 219.66) <0075F2D0-7A48-A362-2D49-4FECA5E9DF8E> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xfad000 -  0x11deff7  com.apple.prokit (7.3.0 - 1936) <904D55E7-F502-3D2F-AFB5-0808E9B6B89B> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12f6000 -  0x1370fff  com.apple.music.apps.MACore (9.1.8 - 477.58) <8025A098-49AF-AFF3-4B8E-4C30C06123FF> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1390000 -  0x13d8ffb  com.apple.audio.midi.CoreMIDI (1.9 - 78) <F918DFE7-E3B2-3413-9A2D-684BA278DA50> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13fd000 -  0x1453ff7  com.apple.music.apps.MAHarmony (9.1.8 - 199.72) <448DD823-9EF9-8F88-FFF1-2C7EBD9647B1> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x146a000 -  0x1884feb  com.apple.music.apps.MAPlugInGUI (9.1.8 - 424.79) <9EBA5689-ECE1-E66B-6A0D-DE3F9C7867E4> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1aa2000 -  0x1b84feb  com.apple.music.apps.OMF (9.1.8 - 109.7) <65E724BA-01DB-68E1-9661-E9B96DA76300> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b98000 -  0x21e9fe3  com.apple.music.apps.MADSP (9.1.8 - 588.98) <93C7306D-07A8-DED0-C59B-B333A475E6DB> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28ce000 -  0x28efff7  com.apple.music.apps.LogicFileBrowser (9.1.8 - 1700.67) <DB122163-0F15-2E23-16AE-3DCAE41D1870> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28f8000 -  0x2971ff7  com.apple.music.apps.LogicLoopBrowser (9.1.8 - 1700.67) <AFAED0FE-A81D-8204-3633-B6DEF6455B8A> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x2985000 -  0x29a6ff7  com.apple.music.apps.MAApogeeSupport (9.1.8 - 313.26) <B23133C5-90D1-4B22-7421-375F9374C9EA> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x29ab000 -  0x29b0ff7  com.apple.music.apps.MAResources (9.1.8 - 212.66) <EEB8FFEB-61A3-69E2-D6AC-AB5C7B8337E2> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29b4000 -  0x29e1ff3  com.apple.audio.CoreAudioKit (1.6.4 - 1.6.4) <27E4557D-4086-3F10-9E4B-B73CC913C01E> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29f4000 -  0x2a04ff7  com.apple.AERegistration (1.2 - 401) <09312188-9C9E-E1A8-0F53-B8F34AA7F76A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a18000 -  0x2a24ff3  com.apple.music.apps.MAUnitTest (9.1.8 - 97.27) <1B77FF0E-ABF2-ABC4-5D7E-638D56A24C69> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a2c000 -  0x2ae2fff  com.apple.music.apps.MAFiles (9.1.8 - 144.87) <23D65681-872A-1E6B-91E5-B93643CCB375> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2afb000 -  0x2b73fe3  com.apple.music.apps.MAAudioEngine (9.1.8 - 158.42) <6ADDBB03-0D41-4473-AFC3-385EFA574B87> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bda000 -  0x2be5ff7  com.apple.music.apps.MAToolKit (9.1.8 - 359.28) <FEEF1A62-CB87-8FD2-F724-0BB660D63146> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2be9000 -  0x2bfdff7  com.apple.music.apps.MAVideo (9.1.8 - 12.70) <FAFE71CD-0FC8-69F4-6FEE-9E873D9F5DD5> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2c10000 -  0x2d27ff3  com.apple.WebKit (8536 - 8536.15) <02090083-E136-3457-8778-E94B610E3410> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x2dd7000 -  0x2e82fff  libcrypto.0.9.7.dylib (106) <CFDDDC37-B8F5-3EFC-B4CC-C060FE5BA783> /usr/lib/libcrypto.0.9.7.dylib
    0x2ec6000 -  0x3012fff  com.apple.syncservices (7.0 - 713) <264D7631-9B42-35A3-9FD0-D07859D7F259> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x308e000 -  0x312affc  com.apple.MobileMe (9 - 1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x3187000 -  0x319dffc  libexpat.1.dylib (12) <2E483623-9A23-319F-807A-1FF4FC577EAA> /usr/lib/libexpat.1.dylib
    0x31a6000 -  0x3e2effb  com.apple.WebCore (8536 - 8536.15) <B2776B5D-47F3-3559-B280-29713C0A8D8C> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4761000 -  0x4785ff1  com.apple.prokit.LionPanels (7.3.0 - 1936) <7A25CFEB-FCC8-3875-B8CF-C608691FB04F> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
    0x47ab000 -  0x47b8ffb  com.apple.Librarian (1.1 - 1) <EA235A03-E6CC-36AB-AA32-04132A2E45D7> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x5600000 -  0x567fff7  com.apple.iLifeMediaBrowser (2.7.1 - 543) <56BBB0E0-7EA4-3C21-9928-A9FBFAF02AD5> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x574b000 -  0x574dff3 +com.novation.logic.automapmixer (1.0 - 1.0) <9AB52F4D-55BA-154C-487C-FEA362BBFDCB> /Library/Application Support/MIDI Device Plug-ins/Automap Mixer.bundle/Contents/MacOS/Automap Mixer
    0x57b5000 -  0x57bdff7  com.apple.proapps.mrcheckpro (1.4 - 397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x57f1000 -  0x57f9ff2  libcldcpuengine.dylib (2.1.16) <801DFAB2-A3F3-38AF-9E47-28CB2D336F49> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0xfa2e000 -  0xfaecff3  ColorSyncDeprecated.dylib (400) <BD76AB55-3107-3EE9-BFD4-6987C1CC6160> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x10f93000 - 0x10f9fffb  libGPUSupport.dylib (8.1.30) <F7236FD8-702B-3277-9327-8788F7ABAA03> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x10fa6000 - 0x10fd2ffa  GLRendererFloat (8.1.30) <3528AB61-685A-362A-AE9C-F911630FED58> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x10fdb000 - 0x10fe1fff  libCoreFSCache.dylib (24.3) <B5CE5EF5-1654-306B-9E99-06CFE93200E9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x11166000 - 0x11168ff3  com.apple.music.apps.anvil.resources (9.1.8 - 280.4) <AFA90574-C724-880F-9C99-52E064F5B3E8> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x1116c000 - 0x1116eff3  com.apple.music.apps.common.resources (9.1.8 - 280.4) <579C1A3C-3636-9A69-185E-819DC01E1083> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x11172000 - 0x11174ff3  com.apple.music.apps.ebp.resources (9.1.8 - 280.4) <95A85BC0-7D35-B965-2026-1A44E96DC653> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x11178000 - 0x1117aff3  com.apple.music.apps.efx.resources (9.1.8 - 280.4) <FB5BBFF8-DF5E-32BC-4F4C-C5A2DA3FB1A6> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x1117e000 - 0x11180ff3  com.apple.music.apps.egt.resources (9.1.8 - 280.4) <11B09E42-9FC4-A372-8738-057CAB888671> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x11184000 - 0x11186ff3  com.apple.music.apps.emx.resources (9.1.8 - 280.4) <A3C65CFE-2BBF-DB8C-D4C8-5950284E44CF> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x1118a000 - 0x1118cff3  com.apple.music.apps.es1.resources (9.1.8 - 280.4) <DB1CD8D6-2C8F-32EE-266B-A28C00B2DFB7> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x11190000 - 0x11192ff3  com.apple.music.apps.es2.resources (9.1.8 - 280.4) <7E91D13E-87CF-0B50-14A7-9B7A1E3D345C> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x11196000 - 0x11198ff3  com.apple.music.apps.esp.resources (9.1.8 - 280.4) <C5284B25-3250-2201-D4EE-523FE37B9E6B> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x111dc000 - 0x111deff3  com.apple.music.apps.evb3.resources (9.1.8 - 280.4) <068F656F-6CA6-37E9-96F5-1F8E10546A43> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x111e2000 - 0x111e4ff3  com.apple.music.apps.evd6.resources (9.1.8 - 280.4) <B15F044D-60BB-FD36-6A49-685C7DCA7FB4> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x111e8000 - 0x111eaff3  com.apple.music.apps.evoc.resources (9.1.8 - 280.4) <E361301A-56EF-FF6C-67E5-AC3D9F15E190> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x111ee000 - 0x111f0ff3  com.apple.music.apps.evp88.resources (9.1.8 - 280.4) <6E1152B4-E9F3-3F6E-7246-A10456888210> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x111f4000 - 0x111f6ff3  com.apple.music.apps.exs24.resources (9.1.8 - 280.4) <DC363BF8-D15A-6049-F148-7804EADF7539> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x111fa000 - 0x111fcff3  com.apple.music.apps.guitaramp.resources (9.1.8 - 280.4) <27F67C33-C9BA-D9CE-DC89-A33A7F674F2C> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x11aec000 - 0x11c78ff9  GLEngine (8.1.30) <D124E288-21BD-32F0-B585-2BB0E24B123C> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x11caf000 - 0x11e00ff7  libGLProgrammability.dylib (8.1.30) <A12A056B-8B05-30A5-BEC7-2E852751DD86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x11fd9000 - 0x11fdbff3  com.apple.music.apps.guitarcontrols.resources (9.1.8 - 280.4) <DAD1836E-F4DD-EB95-2F48-A8AF8552D087> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x11fdf000 - 0x11fe1ff3  com.apple.music.apps.mutapdel.resources (9.1.8 - 280.4) <555A65F0-E35D-0F5F-76EC-7C83D06C68AB> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x11fe5000 - 0x11fe7ff3  com.apple.music.apps.pedalboard.resources (9.1.8 - 280.4) <9923C7F7-E681-EE64-06CE-A0C8AABF7E65> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x11feb000 - 0x11fedff3  com.apple.music.apps.revolver.resources (9.1.8 - 280.4) <9AE36A7E-5D8F-681C-ABFD-4BCFE5048FF4> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x11ff1000 - 0x11ff3ff3  com.apple.music.apps.sphere.resources (9.1.8 - 280.4) <FF758F38-414E-5BFD-97CF-778DF8F52EAE> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x11ff7000 - 0x11ffaff3 +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x12a18000 - 0x12a19ff5 +cl_kernels (???) <1AEB5ABC-74FE-4F8E-BCBD-9102D6304AF2> cl_kernels
    0x12a3b000 - 0x12a3bffd +cl_kernels (???) <957FBC55-68F4-45DB-ACB9-2FE27D4879EF> cl_kernels
    0x12a42000 - 0x12a43ff1 +cl_kernels (???) <3790E5C8-A649-4AAD-8076-C26D17981CB5> cl_kernels
    0x12a5b000 - 0x12a7ffff  com.apple.security.csparser (3.0 - 55163.34) <ADF37333-C843-3FE9-AD6C-ED23DD186800> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
    0x13fed000 - 0x13ff8ff7  com.apple.DVCPROHDVideoOutput (1.3.2 - 1.3.2) <738D36A7-8DBD-3BD7-CD35-4B171397782C> /Library/QuickTime/DVCPROHDVideoOutput.component/Contents/MacOS/DVCPROHDVideoOu tput
    0x148b6000 - 0x148c4fff  com.apple.iokit.IOHIDLib (1.8.0 - 1.8.0) <FE7EEC6F-2F82-3C02-9B7A-117C923587E5> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x149fa000 - 0x149fbfff  com.apple.music.apps.midi.device.plugin.MCS3 (9.1.8 - 198.73) <FB25C00A-5481-F18F-21DB-53D28ADCC168> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/MCS3.bundle/Contents/MacOS/MCS3
    0x18b35000 - 0x18b8afdf +com.DivXInc.DivXDecoder (6.8.3.5 - 6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x18c53000 - 0x18cb8fe0  com.apple.DVCPROHDMuxer (1.3.2 - 1.3.2) <C1AA540F-CEAD-77BA-1CD6-0D467B4F76FF> /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x18cd2000 - 0x18d0affb  com.apple.audio.SoundManager.Components (4.0 - 4.0) <D969949E-621A-3D8C-AD83-A47F021C6571> /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x18d11000 - 0x18d4bfff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2597) <262282CA-1D13-3C09-AD53-76E432AE57AA> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x18d57000 - 0x18e14fe2  com.apple.DesktopVideoOut (1.2.7 - 1.2.7) <54E0C747-1169-FB4A-2CB4-9EA9BD5398F8> /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x18e33000 - 0x18e3cfff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <EB9D333F-0E1E-3407-8CAD-C81DACAFC99B> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x19e78000 - 0x19e8bff7 +com.novation.automapclientbundle (1.0 - 1.0) <9E2F2F50-CD13-D128-4ADC-C42789F64C6A> /Applications/AutomapServer.app/Contents/Resources/AutomapClient.bundle/Content s/MacOS/AutomapClient
    0x1db90000 - 0x1db90ff3  com.apple.music.apps.midi.device.plugin.Recording-Light (9.1.8 - 198.73) <62130915-EEC9-7EE1-AFB9-737A32AA09AC> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Recording Light.bundle/Contents/MacOS/Recording Light
    0x1db9c000 - 0x1db9efe3  com.apple.music.apps.midi.device.plugin.CS-32 (9.1.8 - 198.73) <EA9B28F8-4962-8224-D724-7ECA99692774> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
    0x1dbae000 - 0x1dbb1feb  com.apple.music.apps.midi.device.plugin.FW-1884 (9.1.8 - 198.73) <9A51CFA4-711B-1164-6874-80FBF4411A3B> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884
    0x1dbba000 - 0x1dbbcff3  com.apple.music.apps.midi.device.plugin.GiO (9.1.8 - 198.73) <E2634721-B8D4-03CE-43B5-7C64EED8BFD3> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/GiO.bundle/Contents/MacOS/GiO
    0x1dbc2000 - 0x1dbc6ffb  com.apple.music.apps.midi.device.plugin.HUI (9.1.8 - 198.73) <838E7E91-15F9-779A-9F34-18003221C5CE> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/HUI.bundle/Contents/MacOS/HUI
    0x1dbd7000 - 0x1dbd8fff  com.apple.music.apps.midi.device.plugin.iControl (9.1.8 - 198.73) <F67DC4BC-6556-6AB6-F5CA-C07F087EF639> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/iControl.bundle/Contents/MacOS/iControl
    0x1dbde000 - 0x1dbe0ff7  com.apple.music.apps.midi.device.plugin.microKONTROL (9.1.8 - 198.73) <48E33623-5220-448C-E0D5-6F53B79EC815> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
    0x1dbe7000 - 0x1dbeafff  com.apple.music.apps.midi.device.plugin.TouchOSC (9.1.8 - 198.73) <09337083-973D-480B-C17F-8F68AE3F2FA2> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TouchOSC.bundle/Contents/MacOS/TouchOSC
    0x1dbf3000 - 0x1dbf5ff3  com.apple.music.apps.midi.device.plugin.TranzPort (9.1.8 - 198.73) <26E0C91B-097C-E77A-5E34-6BD85A8BA365> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
    0x1dcb7000 - 0x1dcbeff3  com.apple.music.apps.midi.device.plugin.Logic-Control (9.1.8 - 198.73) <04DC4A0E-2FE2-BE3F-5F5C-686FB712D8F5> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
    0x1dcdb000 - 0x1dcddfe7  com.apple.music.apps.midi.device.plugin.US-2400 (9.1.8 - 198.73) <8D056088-15A4-9FE5-4DDD-14CA2AC746A4> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
    0x1dce6000 - 0x1dce7ffb  com.apple.music.apps.midi.device.plugin.US-428 (9.1.8 - 198.73) <A9C8442B-C474-977F-B61C-4C35DF494201> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-428.bundle/Contents/MacOS/US-428
    0x1dfdd000 - 0x1e06fff7  unorm8_argb.dylib (2.1.16) <7884B2ED-BBD2-378E-9624-572ECC2DADF1> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
    0x20432000 - 0x20637ff7  com.apple.audio.codecs.Components (3.0 - 3.0) <8BBCF7BF-37E3-3EBA-87A9-8AEFC60FDE0F> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x245d5000 - 0x245d6ffd +cl_kernels (???) <CE01CA58-D669-43CE-AF43-C4730BF7DCD8> cl_kernels
    0x245e3000 - 0x245e3ff7 +cl_kernels (???) <AE3EEAA0-D713-4D25-B651-0945042DC037> cl_kernels
    0x245e5000 - 0x24677ff7  unorm8_bgra.dylib (2.1.16) <D0A968DB-BF3F-320E-A726-5D9C00A3BC59> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x8ed4a000 - 0x8f58bfff  com.apple.GeForceGLDriver (8.0.39 - 8.0.0) <98312627-0C23-3D80-8DE3-AEC5BB23A025> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe0d000 - 0x8fe3fe57  dyld (210.2.3) <A166D107-C705-319A-80F6-CB36602E419F> /usr/lib/dyld
    0x90007000 - 0x9006bff3  libstdc++.6.dylib (56) <B66EA549-8153-306C-A751-61BCA8302AD2> /usr/lib/libstdc++.6.dylib
    0x9006c000 - 0x90090ff2  com.apple.framework.familycontrols (4.0 - 400) <99ACCF35-F414-335E-BA82-980E16001879> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90091000 - 0x900eeff3  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <4D5F8067-8F78-31C6-B862-00E20EA2F347> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9013b000 - 0x90184ff3  com.apple.framework.CoreWLAN (3.0 - 300.9) <70871D93-C92F-334A-BC73-CF2A7ECCE24C> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x90185000 - 0x90188ff3  com.apple.AppleSystemInfo (2.0 - 2) <6BF98E23-C81F-3F2F-8548-B49883CD34C9> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x901c6000 - 0x9031eff3  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <8EC6397E-5E76-33EA-B501-4926BB1137A3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90350000 - 0x90437ff7  libxml2.2.dylib (22.3) <CEC911DB-1BC2-36DE-B412-CCE1FB162729> /usr/lib/libxml2.2.dylib
    0x90438000 - 0x90439ffd  libunc.dylib (25) <F290FA28-1375-383D-BF18-C33CA7E9F950> /usr/lib/system/libunc.dylib
    0x9043a000 - 0x90493fff  com.apple.QuickLookFramework (4.0 - 554.0) <EFB43063-6901-35B2-BD76-36386452CAED> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90494000 - 0x904b1fff  com.apple.openscripting (1.3.5 - 148) <2F5759DC-DCB9-3B2B-BE5A-CE4A194434C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x904b2000 - 0x904b3fff  libremovefile.dylib (23.1) <4F8BC561-F83C-3949-B70F-6846E56CCAB8> /usr/lib/system/libremovefile.dylib
    0x904b4000 - 0x904bbffb  libunwind.dylib (35.1) <A86BD3B1-A2B2-314A-A2AB-AEFADDD44ECF> /usr/lib/system/libunwind.dylib
    0x904bc000 - 0x907d7ffb  com.apple.Foundation (6.8 - 940.1) <602C3005-78DE-384B-9AA8-BBF7E79263EE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x907d8000 - 0x90a51ff3  com.apple.RawCamera.bundle (4.0.0 - 635) <1A8E4A85-74C3-36DD-A154-EFE0AF86F1C1> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90a52000 - 0x90a7fffb  com.apple.CoreServicesInternal (152 - 152) <C05BD082-9820-32B7-A4DB-0F3ED58D5DC9> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x90a80000 - 0x90a84ffc  libGIF.dylib (840) <A5FC4761-D18D-38A3-9C92-9FD08BA8438F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90a85000 - 0x90ae9fff  com.apple.datadetectorscore (4.0 - 269.1) <D138A3E3-7D28-303D-B6EA-294A80375BFD> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90aea000 - 0x90af4ffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C3DF6572-AD17-3295-8D0A-CF0A2B3D04E5> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x90af5000 - 0x90b48ff3  com.apple.AE (639 - 639.2) <0FF64F8E-9848-3FB6-AC87-B3A832F511F2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90b49000 - 0x90b7efff  libTrueTypeScaler.dylib (84.2) <F020F158-E630-3922-89D6-8FEB9A24B908> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90b7f000 - 0x90e10ffb  com.apple.CoreImage (8.0.14 - 1.0.1) <A67100FD-9C6C-3663-B5AB-86603916EEA0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x90e11000 - 0x90e11ffd  libOpenScriptingUtil.dylib (148) <D07B022F-971E-3AFD-8836-6672C0187B1E> /usr/lib/libOpenScriptingUtil.dylib
    0x90e12000 - 0x90e34ff3  libc++abi.dylib (24.1) <E25B9D3D-DC8B-348F-9F23-6B64DDBF9D35> /usr/lib/libc++abi.dylib
    0x90e37000 - 0x90f4fff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <44CF050C-4BF2-3529-BEB9-FF713076C8C7> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x90f50000 - 0x90f5cffd  libkxld.dylib (2050.6.71) <C7CF5490-5F30-3306-9E41-697BD137125A> /usr/lib/system/libkxld.dylib
    0x90f5d000 - 0x90f65fff  libcopyfile.dylib (89) <89CE395C-6982-3BCA-B3FF-841D74A5BAC9> /usr/lib/system/libcopyfile.dylib
    0x90f66000 - 0x90f6dffe  com.apple.agl (3.2.1 - AGL-3.2.1) <8914BA79-40E8-37D8-87CA-87C4E1EFE2F7> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90f70000 - 0x90fb1ff7  com.apple.framework.CoreWiFi (1.0 - 100.8) <F18BE0B3-E8C0-39DA-9D86-AEDD5A040A9F> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x90fd8000 - 0x90fd8fff  com.apple.CoreServices (57 - 57) <BF6A7BC8-A8D1-3011-B933-B6C4A74A2FA1> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90fd9000 - 0x90fdcffc  libpam.2.dylib (20) <13A4F4C7-3236-3544-A6B4-566FABB79233> /usr/lib/libpam.2.dylib
    0x90fdd000 - 0x90fedff7  libsasl2.2.dylib (166) <17A162BB-93FB-3B30-8D3D-65891193ED55> /usr/lib/libsasl2.2.dylib
    0x90fee000 - 0x90feefff  com.apple.vecLib (3.8 - vecLib 3.8) <D016A3C2-559B-30E3-8704-DF297F63B144> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91087000 - 0x91127ff7  com.apple.QD (3.42 - 285) <C3724E56-B1C2-3F89-8AD5-8B025CD2E90D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91128000 - 0x91176ffb  libFontRegistry.dylib (98) <26D18259-1821-3EE6-A095-A767215A36CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91177000 - 0x91282ff7  libJP2.dylib (840) <433A18E2-081C-3917-8246-05BF0FC7DAB5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91288000 - 0x913d3ffb  com.apple.CFNetwork (595 - 595) <B03ADDAA-8E49-386E-B027-2415C6928AFA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x913d4000 - 0x91423ff7  libTIFF.dylib (840) <3F0B021A-3E74-3C4C-8EB7-6D033B2D8646> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91424000 - 0x91466fff  libcurl.4.dylib (69.2) <6326BB57-B02C-3612-AD27-8B762630BA1D> /usr/lib/libcurl.4.dylib
    0x91467000 - 0x91468ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <AB1BF364-87DA-3726-B8BE-3FFD1D0293ED> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91469000 - 0x914a7fff  libcorecrypto.dylib (96) <16D7F67F-31DD-34CA-9840-456CC66A77F8> /usr/lib/system/libcorecrypto.dylib
    0x914a8000 - 0x9168fffb  com.apple.CoreFoundation (6.8 - 740) <C53C86A9-9EA2-340F-BDF6-1B2D30B923EC> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91690000 - 0x91690fff  libkeymgr.dylib (25) <DF0F232C-A215-3858-B740-72E143E67360> /usr/lib/system/libkeymgr.dylib
    0x91695000 - 0x916daff5  com.apple.opencl (2.1.16 - 2.1.16) <BC428529-37F8-31DD-B931-16B1B521C46B> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x916db000 - 0x916dbfff  com.apple.ApplicationServices (45 - 45) <AD7EEC64-0834-37E7-83D2-B9A6ED1B3E47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x916dc000 - 0x916dcfff  libSystem.B.dylib (169.2) <7BB67FB3-9200-34B1-AD7A-20997BD4DAD0> /usr/lib/libSystem.B.dylib
    0x916ec000 - 0x916ecffe  com.apple.AOSMigrate (1.0 - 1) <4F91FDAE-2948-3EEB-9CAB-03DD36A8BBD0> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x916ed000 - 0x916fbff3  libsystem_network.dylib (77.10) <5E99FFBC-7FB6-32A4-BD21-90FB369B1568> /usr/lib/system/libsystem_network.dylib
    0x91700000 - 0x91768fe7  libvDSP.dylib (380.6) <1AE583D4-477A-3EB9-97FC-F5E397E37B19> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91769000 - 0x917a0ffa  com.apple.LDAPFramework (2.4.28 - 194.5) <0CDBC3F3-2BA7-3040-B242-19376965EA5E> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x917a1000 - 0x9185fff3  com.apple.ColorSync (4.8.0 - 4.8.0) <CC96079B-E287-3B1C-8B8A-69AC58D4A100> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91860000 - 0x9186afff  com.apple.speech.recognition.framework (4.1.4 - 4.1.4) <BB29E582-3DBF-3C16-8196-32B8016C16BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9186b000 - 0x91876fff  libcommonCrypto.dylib (60026) <10BDCB92-EA59-3DE3-884A-06B37FEA06C0> /usr/lib/system/libcommonCrypto.dylib
    0x91881000 - 0x91898fff  com.apple.GenerationalStorage (1.0 - 132) <7BCDE2D7-BD67-3974-BE66-51DA19135122> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x91899000 - 0x918abff7  libdispatch.dylib (228.18) <AF2E0571-7CC1-3490-A45B-988E248874B5> /usr/lib/system/libdispatch.dylib
    0x918ac000 - 0x919b915f  libobjc.A.dylib (531.1) <2CB1EE50-8342-31F7-8E85-0A4248948EBE> /usr/lib/libobjc.A.dylib
    0x919ba000 - 0x92046feb  com.apple.CoreAUC (6.16.00 - 6.16.00) <012ADC6B-CFA7-3D72-AFF4-56671F2C1E30> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x92047000 - 0x920ccff7  com.apple.SearchKit (1.4.0 - 1.4.0) <162F8626-65A4-302C-9FAE-AA3D371AB4F0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x920cd000 - 0x92179fff  com.apple.CoreText (260.0 - 275.10) <A198E4C5-84E6-3AB7-8325-54D86DE26013> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x9217a000 - 0x92182fff  com.apple.CommerceCore (1.0 - 26) <134B5E4F-A7EA-3694-976C-DCAA337097F8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x92183000 - 0x92183fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <D70C7891-7BB8-3B58-BF40-5928C4C2F2B1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92184000 - 0x921c9ff7  com.apple.NavigationServices (3.7 - 200) <E62DB41C-34EB-3C33-A0E0-B43F75CE5720> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x921ca000 - 0x921cafff  libsystem_blocks.dylib (59) <5D7CC346-CC68-3B2A-BAC7-5DC8CE9F84FD> /usr/lib/system/libsystem_blocks.dylib
    0x921cb000 - 0x922dbffb  com.apple.QuickTimeImporters.component (7.7.1 - 2597) <387D785B-478B-386F-98D1-067B4008FBEE> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x922dc000 - 0x92386fff  com.apple.LaunchServices (532 - 532) <E33EEAD7-3F8C-3E89-AE7C-FA1B933CAB22> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92387000 - 0x92397ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <47E77009-1F74-3C93-B0AD-CAE7BFEED2DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92398000 - 0x9239cffe  libcache.dylib (57) <C0C37ABC-AFF0-3816-9390-F91FC97A370C> /usr/lib/system/libcache.dylib
    0x9239d000 - 0x923caffe  libsystem_m.dylib (3022.6) <9B0D303D-15B0-334C-87B3-9B056F2B3112> /usr/lib/system/libsystem_m.dylib
    0x923cb000 - 0x92444ff0  com.apple.CorePDF (2.0 - 2) <5A29931D-6028-32C9-A9B7-2BF64E5EC37B> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x92445000 - 0x92887ff3  com.apple.CoreGraphics (1.600.0 - 310) <20F32433-FF13-3E06-B158-A4C3B4A0A4A5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92888000 - 0x9289afff  libbsm.0.dylib (32) <A9EF7DF3-5F0F-379B-9842-2D80E3F37CD3> /usr/lib/libbsm.0.dylib
    0x9289b000 - 0x929a8ff3  com.apple.ImageIO.framework (3.2.0 - 840) <5143E273-F7D2-3FDC-BACB-22A374762BCC> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x929ec000 - 0x92a3cff7  com.apple.CoreMediaIO (301.0 - 4145) <9F34D513-8C99-3DE4-AE37-EAC93B577500> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x92a3d000 - 0x92a98ff3  com.apple.CoreMedia (1.0 - 926.31) <DEE17EFC-9F55-39B6-A6B2-33702D0B8A98> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x92aca000 - 0x92acefff  com.apple.IOSurface (85.0 - 85.0) <BFFE2512-430A-377D-8E3D-FA8FBCDCC0F7> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x92acf000 - 0x92b35ffc  com.apple.ISSupport (1.9.8 - 56) <2091FD90-E441-3011-84F7-2940CC0367BB> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92b36000 - 0x92b6cffb  com.apple.DebugSymbols (98 - 98) <7E52FCCA-AE81-38CC-9AF0-D98DEED8122A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x92b6d000 - 0x92b77fff  libCSync.A.dylib (310) <F6D627F3-4964-3F0C-9AB3-4834F1683B91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92b78000 -

    Have updated Automap and completely removed DivX, still having the same problem. Here is the error report from Chrome.
    Process:         Google Chrome [219]
    Path:            /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
    Identifier:      com.google.Chrome
    Version:         23.0.1271.95 (1271.95)
    Code Type:       X86 (Native)
    Parent Process:  launchd [140]
    User ID:         501
    Date/Time:       2012-12-10 20:27:22.214 -0500
    OS Version:      Mac OS X 10.8 (12A239)
    Report Version:  10
    Interval Since Last Report:          214191 sec
    Crashes Since Last Report:           -11
    Per-App Interval Since Last Report:  236298 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      3D16DDD3-E203-47CE-A5A4-EC56E5497006
    Crashed Thread:  33  Dispatch queue: quicklook.pluginload
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
        VM_ALLOCATE            0000000000001000-0000000000018000 [   92K] ---/--- SM=NUL 
    Thread 0:: CrBrowserMain  Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x950067d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95005cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x914d9cc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x914df6af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x914ded6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x914debdb CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox                     0x952d9816 RunCurrentEventLoopInMode + 242
    7   com.apple.HIToolbox                     0x952e1281 ReceiveNextEventCommon + 374
    8   com.apple.HIToolbox                     0x952e10fc BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x96e0d25a _DPSNextEvent + 724
    10  com.apple.AppKit                        0x96e0ca8c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    11  com.apple.AppKit                        0x96e088ec -[NSApplication run] + 855
    12  com.google.Chrome.framework             0x00a861c1 ChromeMain + 10898353
    13  com.google.Chrome.framework             0x00a85cfc ChromeMain + 10897132
    14  com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    15  com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    16  com.google.Chrome.framework             0x00355e33 ChromeMain + 3360803
    17  com.google.Chrome.framework             0x02809c50 ChromeMain + 41846336
    18  com.google.Chrome.framework             0x0280a373 ChromeMain + 41848163
    19  com.google.Chrome.framework             0x02808cc1 ChromeMain + 41842353
    20  com.google.Chrome.framework             0x00a1af9b ChromeMain + 10459531
    21  com.google.Chrome.framework             0x00a1a2b0 ChromeMain + 10456224
    22  com.google.Chrome.framework             0x00021639 ChromeMain + 41
    23  com.google.Chrome                       0x00018f78 main + 24
    24  com.google.Chrome                       0x00018f55 0x18000 + 3925
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x950099ae kevent + 10
    1   libdispatch.dylib                       0x9189f19a _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x9189edb9 _dispatch_mgr_thread + 53
    Thread 2:: NetworkConfigWatcher
    0   libsystem_kernel.dylib                  0x950067d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95005cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x914d9cc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x914df6af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x914ded6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x914debdb CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x904c8076 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework             0x00a8602f ChromeMain + 10897951
    8   com.google.Chrome.framework             0x00a85cfc ChromeMain + 10897132
    9   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    10  com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    11  com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    12  com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    13  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    14  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    15  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    16  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 3:: DnsConfigService
    0   libsystem_kernel.dylib                  0x950099ae kevent + 10
    1   com.google.Chrome.framework             0x00ae894c ChromeMain + 11301692
    2   com.google.Chrome.framework             0x00ae6669 ChromeMain + 11292761
    3   com.google.Chrome.framework             0x00a852cc ChromeMain + 10894524
    4   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    5   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    6   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    7   com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    8   com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    9   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    10  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    11  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 4:: WorkerPool/-1323118592
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f8104 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x00ace087 ChromeMain + 11192951
    4   com.google.Chrome.framework             0x00ad9f1f ChromeMain + 11241743
    5   com.google.Chrome.framework             0x00ada3b1 ChromeMain + 11242913
    6   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    7   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    8   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 5:: AudioThread
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x00acdfa8 ChromeMain + 11192728
    4   com.google.Chrome.framework             0x00ace45b ChromeMain + 11193931
    5   com.google.Chrome.framework             0x00ace356 ChromeMain + 11193670
    6   com.google.Chrome.framework             0x00ab46d6 ChromeMain + 11088070
    7   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    8   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    9   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    10  com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    11  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    12  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    13  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    14  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 6:: CrShutdownDetector
    0   libsystem_kernel.dylib                  0x95009dba __read + 10
    1   com.google.Chrome.framework             0x0035cc46 ChromeMain + 3388982
    2   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    3   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    4   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 7:: Chrome_DBThread
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x00acdfa8 ChromeMain + 11192728
    4   com.google.Chrome.framework             0x00ace45b ChromeMain + 11193931
    5   com.google.Chrome.framework             0x00ace356 ChromeMain + 11193670
    6   com.google.Chrome.framework             0x00ab46d6 ChromeMain + 11088070
    7   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    8   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    9   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    10  com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    11  com.google.Chrome.framework             0x0280c33f ChromeMain + 41856303
    12  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    13  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    14  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    15  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 8:: Chrome_WebKitThread
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x00acdfa8 ChromeMain + 11192728
    4   com.google.Chrome.framework             0x00ace45b ChromeMain + 11193931
    5   com.google.Chrome.framework             0x00ace356 ChromeMain + 11193670
    6   com.google.Chrome.framework             0x00ab46d6 ChromeMain + 11088070
    7   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    8   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    9   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    10  com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    11  com.google.Chrome.framework             0x0280c36f ChromeMain + 41856351
    12  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    13  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    14  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    15  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 9:: Chrome_FileThread
    0   libsystem_kernel.dylib                  0x950099ae kevent + 10
    1   com.google.Chrome.framework             0x00ae894c ChromeMain + 11301692
    2   com.google.Chrome.framework             0x00ae6669 ChromeMain + 11292761
    3   com.google.Chrome.framework             0x00a85390 ChromeMain + 10894720
    4   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    5   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    6   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    7   com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    8   com.google.Chrome.framework             0x0280c39f ChromeMain + 41856399
    9   com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    10  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    11  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    12  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 10:: Chrome_FileUserBlockingThread
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x00acdfa8 ChromeMain + 11192728
    4   com.google.Chrome.framework             0x00ace45b ChromeMain + 11193931
    5   com.google.Chrome.framework             0x00ace356 ChromeMain + 11193670
    6   com.google.Chrome.framework             0x00ab46d6 ChromeMain + 11088070
    7   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    8   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    9   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    10  com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    11  com.google.Chrome.framework             0x0280c3cf ChromeMain + 41856447
    12  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    13  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    14  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    15  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 11:: Chrome_ProcessLauncherThread
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x00acdfa8 ChromeMain + 11192728
    4   com.google.Chrome.framework             0x00ace45b ChromeMain + 11193931
    5   com.google.Chrome.framework             0x00ace356 ChromeMain + 11193670
    6   com.google.Chrome.framework             0x00ab46d6 ChromeMain + 11088070
    7   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    8   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    9   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    10  com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    11  com.google.Chrome.framework             0x0280c3ff ChromeMain + 41856495
    12  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    13  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    14  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    15  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 12:: Chrome_CacheThread
    0   libsystem_kernel.dylib                  0x950099ae kevent + 10
    1   com.google.Chrome.framework             0x00ae894c ChromeMain + 11301692
    2   com.google.Chrome.framework             0x00ae6669 ChromeMain + 11292761
    3   com.google.Chrome.framework             0x00a85390 ChromeMain + 10894720
    4   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    5   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    6   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    7   com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    8   com.google.Chrome.framework             0x0280c42f ChromeMain + 41856543
    9   com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    10  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    11  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    12  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 13:: Chrome_IOThread
    0   libsystem_kernel.dylib                  0x950099ae kevent + 10
    1   com.google.Chrome.framework             0x00ae894c ChromeMain + 11301692
    2   com.google.Chrome.framework             0x00ae6669 ChromeMain + 11292761
    3   com.google.Chrome.framework             0x00a85390 ChromeMain + 10894720
    4   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    5   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    6   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    7   com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    8   com.google.Chrome.framework             0x0280c45f ChromeMain + 41856591
    9   com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    10  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    11  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    12  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 14:: NetworkConfigWatcher
    0   libsystem_kernel.dylib                  0x950067d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95005cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x914d9cc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x914df6af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x914ded6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x914debdb CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x904c8076 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework             0x00a8602f ChromeMain + 10897951
    8   com.google.Chrome.framework             0x00a85cfc ChromeMain + 10897132
    9   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    10  com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    11  com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    12  com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    13  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    14  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    15  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    16  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 15:: BrowserWatchdog
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f8104 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x00ace087 ChromeMain + 11192951
    4   com.google.Chrome.framework             0x00ace490 ChromeMain + 11193984
    5   com.google.Chrome.framework             0x00ab4710 ChromeMain + 11088128
    6   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    7   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    8   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    9   com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    10  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    11  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    12  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    13  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 16:: WorkerPool/-1238855680
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f8104 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x00ace087 ChromeMain + 11192951
    4   com.google.Chrome.framework             0x00ad9f1f ChromeMain + 11241743
    5   com.google.Chrome.framework             0x00ada3b1 ChromeMain + 11242913
    6   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    7   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    8   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 17:: NetworkConfigWatcher
    0   libsystem_kernel.dylib                  0x950067d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95005cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x914d9cc9 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x914df6af __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x914ded6a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x914debdb CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x904c8076 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework             0x00a8602f ChromeMain + 10897951
    8   com.google.Chrome.framework             0x00a85cfc ChromeMain + 10897132
    9   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    10  com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    11  com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    12  com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    13  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    14  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    15  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    16  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 18:: Chrome_SafeBrowsingThread
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x00acdfa8 ChromeMain + 11192728
    4   com.google.Chrome.framework             0x00ace45b ChromeMain + 11193931
    5   com.google.Chrome.framework             0x00ace356 ChromeMain + 11193670
    6   com.google.Chrome.framework             0x00ab46d6 ChromeMain + 11088070
    7   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    8   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    9   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    10  com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    11  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    12  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    13  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    14  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 19:: BrowserBlockingWorker1/-1213665280
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x00acdfa8 ChromeMain + 11192728
    4   com.google.Chrome.framework             0x00ad6767 ChromeMain + 11227479
    5   com.google.Chrome.framework             0x00ad5e3d ChromeMain + 11225133
    6   com.google.Chrome.framework             0x00ad869a ChromeMain + 11235466
    7   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    8   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    9   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x950067d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95005cb0 mach_msg + 68
    2   com.google.Chrome.framework             0x00aaf81f ChromeMain + 11067919
    3   com.google.Chrome.framework             0x02892b2c ChromeMain + 42407196
    4   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    5   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    6   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 21:: Chrome_HistoryThread
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f8104 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x00ace087 ChromeMain + 11192951
    4   com.google.Chrome.framework             0x00ace490 ChromeMain + 11193984
    5   com.google.Chrome.framework             0x00ab4710 ChromeMain + 11088128
    6   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    7   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    8   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    9   com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    10  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    11  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    12  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    13  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 22:: WorkerPool/-1322979328
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f8104 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x00ace087 ChromeMain + 11192951
    4   com.google.Chrome.framework             0x00ad9f1f ChromeMain + 11241743
    5   com.google.Chrome.framework             0x00ada3b1 ChromeMain + 11242913
    6   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    7   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    8   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 23:: WorkerPool/-1195667456
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f8104 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x00ace087 ChromeMain + 11192951
    4   com.google.Chrome.framework             0x00ad9f1f ChromeMain + 11241743
    5   com.google.Chrome.framework             0x00ada3b1 ChromeMain + 11242913
    6   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    7   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    8   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 24:: WorkerPool/-1195528192
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f8104 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x00ace087 ChromeMain + 11192951
    4   com.google.Chrome.framework             0x00ad9f1f ChromeMain + 11241743
    5   com.google.Chrome.framework             0x00ada3b1 ChromeMain + 11242913
    6   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    7   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    8   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 25:: WorkerPool/-1195388928
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f8104 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x00ace087 ChromeMain + 11192951
    4   com.google.Chrome.framework             0x00ad9f1f ChromeMain + 11241743
    5   com.google.Chrome.framework             0x00ada3b1 ChromeMain + 11242913
    6   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    7   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    8   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 26:: WorkerPool/-1195249664
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f8104 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x00ace087 ChromeMain + 11192951
    4   com.google.Chrome.framework             0x00ad9f1f ChromeMain + 11241743
    5   com.google.Chrome.framework             0x00ada3b1 ChromeMain + 11242913
    6   com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    7   libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    8   libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 27:: PowerSaveBlocker
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x960709a0 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x960f80b9 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x00acdfa8 ChromeMain + 11192728
    4   com.google.Chrome.framework             0x00ace45b ChromeMain + 11193931
    5   com.google.Chrome.framework             0x00ace356 ChromeMain + 11193670
    6   com.google.Chrome.framework             0x00ab46d6 ChromeMain + 11088070
    7   com.google.Chrome.framework             0x00ab1600 ChromeMain + 11075568
    8   com.google.Chrome.framework             0x00ac33e1 ChromeMain + 11148753
    9   com.google.Chrome.framework             0x00ab137a ChromeMain + 11074922
    10  com.google.Chrome.framework             0x00ad8e11 ChromeMain + 11237377
    11  com.google.Chrome.framework             0x00ad8e9b ChromeMain + 11237515
    12  com.google.Chrome.framework             0x00ad58e9 ChromeMain + 11223769
    13  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    14  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 29:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 30:: Dispatch queue: TFolderSizingThread::GetFolderSizingQueue
    0   libsystem_kernel.dylib                  0x950081ae __getattrlist + 10
    1   com.apple.CoreServices.CarbonCore          0x9394cf95 GetPathVolFSAttributes(char const*, unsigned long, FSAttributeInfo*, unsigned long, unsigned char*) + 233
    2   com.apple.CoreServices.CarbonCore          0x9393eda8 PathGetObjectInfo(char const*, unsigned long, unsigned long, short*, unsigned long*, unsigned long*, char*, unsigned long*, unsigned char*) + 218
    3   com.apple.CoreServices.CarbonCore          0x939519e8 FSPathMakeRefInternal(unsigned char const*, unsigned long, unsigned long, FSRef*, unsigned char*) + 120
    4   com.apple.CoreServices.CarbonCore          0x938d31af FSPathMakeRef + 47
    5   com.apple.CoreServices.CarbonCore          0x93928568 AL_findByHomeDirRelative + 189
    6   com.apple.CoreServices.CarbonCore          0x93900095 FSMatchAliasInternal + 1567
    7   com.apple.CoreServices.CarbonCore          0x93924ace FSMatchAliasBulk + 74
    8   com.apple.LaunchServices                0x92317dd6 LSSharedFileListItemGetFSRef + 722
    9   com.apple.LaunchServices                0x923177a2 LSSharedFileListItemResolve + 491
    10  com.apple.desktopservices               0x97dbaac8 TFileListItem::ResolveSharedFileListItem(unsigned long, TAutoRef<__CFURL const*, TRetainReleasePolicy<__CFURL const*> >&) const + 74
    11  com.apple.desktopservices               0x97dbaa01 TFSInfo::ResolveSharedFileListItem(unsigned long, TCountedPtr<TFSInfo>&) const + 149
    12  com.apple.desktopservices               0x97d20ec5 TNode::ResolveSharedFileListAliasIfNeeded() + 327
    13  com.apple.desktopservices               0x97d558e1 __block_global_4 + 56
    14  com.apple.desktopservices               0x97d9ceee ExceptionSafeBlock(void ()() block_pointer) + 55
    15  com.apple.desktopservices               0x97d558a4 __SynchronizeChildren_block_invoke_0 + 79
    16  libdispatch.dylib                       0x9189c579 _dispatch_call_block_and_release + 15
    17  libdispatch.dylib                       0x9189fc47 _dispatch_client_callout + 46
    18  libdispatch.dylib                       0x9189a435 _dispatch_queue_drain + 206
    19  libdispatch.dylib                       0x9189a2cf _dispatch_queue_invoke + 50
    20  libdispatch.dylib                       0x9189a1b6 _dispatch_worker_thread2 + 230
    21  libsystem_c.dylib                       0x9606e592 _pthread_wqthread + 441
    22  libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 31:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 32:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 33 Crashed:: Dispatch queue: quicklook.pluginload
    0   com.apple.CoreFoundation                0x914afc61 CFStringGetLength + 17
    1   com.apple.CoreFoundation                0x9159c665 CFDateFormatterGetAbsoluteTimeFromString + 69
    2   com.apple.security                      0x9317b76d decodeTimeStampToken + 764
    3   com.apple.security                      0x93178478 SecCmsSignerInfoVerifyUnAuthAttrs + 97
    4   com.apple.security                      0x931783a7 SecCmsSignerInfoVerify + 581
    5   com.apple.security                      0x93177153 SecCmsSignedDataVerifySignerInfo + 111
    6   com.apple.security                      0x931c80cd CMSDecoderCopySignerStatus + 199
    7   com.apple.security                      0x931e1b4a Security::CodeSigning::SecStaticCode::verifySignature() + 436
    8   com.apple.security                      0x931e1816 Security::CodeSigning::SecStaticCode::validateDirectory() + 64
    9   com.apple.security                      0x931e1f9d Security::CodeSigning::SecStaticCode::validateNonResourceComponents() + 19
    10  com.apple.security                      0x931d52c5 validate(Security::CodeSigning::SecStaticCode*, Security::CodeSigning::SecRequirement const*, unsigned int) + 40
    11  com.apple.security                      0x931d510e SecStaticCodeCheckValidityWithErrors + 597
    12  com.apple.security                      0x931d4eb4 SecStaticCodeCheckValidity + 39
    13  com.apple.QuickLookFramework            0x90476723 QLCheckAppleSignature + 128
    14  com.apple.QuickLookFramework            0x90445ba1 _QLLoadPluginAtURL + 3264
    15  com.apple.QuickLookFramework            0x9044a304 ___QLLaunchUpdatingThread_block_invoke_0 + 2704
    16  libdispatch.dylib                       0x9189c579 _dispatch_call_block_and_release + 15
    17  libdispatch.dylib                       0x9189fc47 _dispatch_client_callout + 46
    18  libdispatch.dylib                       0x9189a435 _dispatch_queue_drain + 206
    19  libdispatch.dylib                       0x9189a2cf _dispatch_queue_invoke + 50
    20  libdispatch.dylib                       0x9189a1b6 _dispatch_worker_thread2 + 230
    21  libsystem_c.dylib                       0x9606e592 _pthread_wqthread + 441
    22  libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 34:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 35:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x950067d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95005cb0 mach_msg + 68
    2   com.apple.CoreGraphics                  0x92490d30 _CGSSynchronizeWindowBackingStore + 131
    3   com.apple.CoreGraphics                  0x9245d053 _CGSLockWindow + 3428
    4   com.apple.CoreGraphics                  0x9245c10e CGSDeviceLock + 313
    5   libRIP.A.dylib                          0x92bab63d ripd_Lock + 62
    6   libRIP.A.dylib                          0x92baf8da ripl_BltImage + 408
    7   libRIP.A.dylib                          0x92baf4df ripc_RenderImage + 259
    8   libRIP.A.dylib                          0x92bb647a ripc_DrawImage + 1078
    9   com.apple.CoreGraphics                  0x924a13ed CGContextDrawImage + 427
    10  com.apple.AppKit                        0x972aa519 __74-[NSImageRep drawInRect:fromRect:operation:fraction:respectFlipped:hints:]_block_invoke_0 + 1250
    11  com.apple.AppKit                        0x96e5e310 NSUsingGraphicsStateForHints_drawWithBlock_ + 67
    12  com.apple.AppKit                        0x96e5e1e2 -[NSImageRep drawInRect:fromRect:operation:fraction:respectFlipped:hints:] + 893
    13  com.apple.AppKit                        0x97127f83 -[NSButtonCell(NSDefaultButtonIndicatorPrivate) heartBeat:] + 2391
    14  com.apple.AppKit                        0x97193e23 -[NSControl heartBeat:] + 43
    15  com.apple.AppKit                        0x97578a0e -[NSWindow(NSWindow_Theme) heartBeat:] + 159
    16  com.apple.AppKit                        0x97038f7d -[NSUIHeartBeat _heartBeatThread:] + 1295
    17  com.apple.Foundation                    0x9051852a -[NSThread main] + 45
    18  com.apple.Foundation                    0x905184ad __NSThread__main__ + 1396
    19  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    20  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 36:
    0   libsystem_kernel.dylib                  0x950090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9606e7cc _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9606e599 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9605644a start_wqthread + 30
    Thread 37:: Dispatch queue: quicklook.client
    0   libsystem_kernel.dylib                  0x950088e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96070a09 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96070c92 pthread_cond_timedwait_relative_np + 47
    3   com.apple.QuickLookFramework            0x90444cfa _QLLockDatabaseWaitForUpdateToFinishIfPossible + 611
    4   com.apple.QuickLookFramework            0x904463f6 _QLGeneratorCopyGeneratorForContentType + 36
    5   com.apple.QuickLookFramework            0x9043dd40 ___QLThumbnailSendQuery_block_invoke_0 + 1077
    6   libdispatch.dylib                       0x9189fc47 _dispatch_client_callout + 46
    7   libdispatch.dylib                       0x9189bc9f _dispatch_barrier_sync_f_invoke + 39
    8   libdispatch.dylib                       0x9189bc76 dispatch_barrier_sync_f + 87
    9   libdispatch.dylib                       0x9189bbcb dispatch_sync + 45
    10  com.apple.QuickLookFramework            0x9043d17b _QLThumbnailSendQuery + 466
    11  com.apple.QuickLookFramework            0x9046bc4a QLThumbnailQueueRun + 2814
    12  com.apple.FinderKit                     0x92df7360 TQLThumbnailQueue::Run() + 36
    13  com.apple.FinderKit                     0x92e0188a TThumbnailExtractorThread::Main() + 1058
    14  com.apple.FinderKit                     0x92dd4b40 TThread::MainGlue(void*) + 62
    15  libsystem_c.dylib                       0x9606bcd7 _pthread_start + 344
    16  libsystem_c.dylib                       0x9605646e thread_start + 34
    Thread 33 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x79c95730  ecx: 0x914afc5d  edx: 0xac163120
      edi: 0x7a94fa40  esi: 0x00000000  ebp: 0xb94a1f28  esp: 0xb94a1f10
       ss: 0x00000023  efl: 0x00010282  eip: 0x914afc61   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 0
    Binary Images:
       0x18000 -    0x18ff7 +com.google.Chrome (23.0.1271.95 - 1271.95) <084AF7DF-F972-A51B-5C58-E88633D40F12> /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
       0x1f000 -  0x3a94f37 +com.google.Chrome.framework (23.0.1271.95 - 1271.95) <C02A7A6A-A9DD-8AEA-01B7-7417C64B725C> /Applications/Google Chrome.app/Contents/Versions/23.0.1271.95/Google Chrome Framework.framework/Google Chrome Framework
    0x51c3000 -  0x51d0ffb  com.apple.Librarian (1.1 - 1) <EA235A03-E6CC-36AB-AA32-04132A2E45D7> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x5264000 -  0x526cff2  libcldcpuengine.dylib (2.1.16) <801DFAB2-A3F3-38AF-9E47-28CB2D336F49> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x5273000 -  0x5279fff  libCoreFSCache.dylib (24.3) <B5CE5EF5-1654-306B-9E99-06CFE93200E9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x5302000 -  0x5303ffd +cl_kernels (???) <C2531EE3-8D1D-4027-B4FF-9D3734AABFBE> cl_kernels
    0x5310000 -  0x5310ff7 +cl_kernels (???) <3B24D992-31CE-458B-99D6-B4E28E21801E> cl_kernels
    0x5f06000 -  0x5f15ff7 +com.google.Keystone.Registration (1.1.0 - 1.1.0.3659) <2379CBDF-65AB-246D-D5F4-3A450D457F42> /Applications/Google Chrome.app/Contents/Versions/23.0.1271.95/Google Chrome Framework.framework/Frameworks/KeystoneRegistration.framework/KeystoneRegistrat ion
    0x7b2b000 -  0x7bbdff7  unorm8_bgra.dylib (2.1.16) <D0A968DB-BF3F-320E-A726-5D9C00A3BC59> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0x7e87000 -  0x7e88ff5 +cl_kernels (???) <D162A108-DE80-45C0-8262-3C5A09AD225C> cl_kernels
    0x7e99000 -  0x7e9aff1 +cl_kernels (???) <B96036E9-3C0B-46B9-84EC-FE178F2FE8BA> cl_kernels
    0x7ea2000 -  0x7eaeffb  libGPUSupport.dylib (8.1.30) <F7236FD8-702B-3277-9327-8788F7ABAA03> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0xae35000 -  0xae5eff7  com.apple.datadetectors (4.0 - 199.0) <AF3557BE-32A7-39F0-A01A-8E51EECB9598> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0xae75000 -  0xaf8cff3  com.apple.WebKit (8536 - 8536.15) <02090083-E136-3457-8778-E94B610E3410> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0xb43a000 -  0xb466ffa  GLRendererFloat (8.1.30) <3528AB61-685A-362A-AE9C-F911630FED58> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0xb493000 -  0xb525ff7  unorm8_argb.dylib (2.1.16) <7884B2ED-BBD2-378E-9624-572ECC2DADF1> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
    0xbd1f000 -  0xbd43fff  com.apple.security.csparser (3.0 - 55163.34) <ADF37333-C843-3FE9-AD6C-ED23DD186800> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
    0xbde3000 -  0xbf6fff9  GLEngine (8.1.30) <D124E288-21BD-32F0-B585-2BB0E24B123C> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xbfa6000 -  0xc0f7ff7  libGLProgrammability.dylib (8.1.30) <A12A056B-8B05-30A5-BEC7-2E852751DD86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xc82d000 -  0xd4b5ffb  com.apple.WebCore (8536 - 8536.15) <B2776B5D-47F3-3559-B280-29713C0A8D8C> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x8ed4a000 - 0x8f58bfff  com.apple.GeForceGLDriver (8.0.39 - 8.0.0) <98312627-0C23-3D80-8DE3-AEC5BB23A025> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe17000 - 0x8fe49e57  dyld (210.2.3) <A166D107-C705-319A-80F6-CB36602E419F> /usr/lib/dyld
    0x90007000 - 0x9006bff3  libstdc++.6.dylib (56) <B66EA549-8153-306C-A751-61BCA8302AD2> /usr/lib/libstdc++.6.dylib
    0x9006c000 - 0x90090ff2  com.apple.framework.familycontrols (4.0 - 400) <99ACCF35-F414-335E-BA82-980E16001879> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90091000 - 0x900eeff3  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <4D5F8067-8F78-31C6-B862-00E20EA2F347> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9013b000 - 0x90184ff3  com.apple.framework.CoreWLAN (3.0 - 300.9) <70871D93-C92F-334A-BC73-CF2A7ECCE24C> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x90185000 - 0x90188ff3  com.apple.AppleSystemInfo (2.0 - 2) <6BF98E23-C81F-3F2F-8548-B49883CD34C9> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x901c6000 - 0x9031eff3  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <8EC6397E-5E76-33EA-B501-4926BB1137A3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9031f000 - 0x9034fff3  libtidy.A.dylib (15.10) <4B972A5B-B8C3-39B4-BF84-DB73620F1BE3> /usr/lib/libtidy.A.dylib
    0x90350000 - 0x90437ff7  libxml2.2.dylib (22.3) <CEC911DB-1BC2-36DE-B412-CCE1FB162729> /usr/lib/libxml2.2.dylib
    0x90438000 - 0x90439ffd  libunc.dylib (25) <F290FA28-1375-383D-BF18-C33CA7E9F950> /usr/lib/system/libunc.dylib
    0x9043a000 - 0x90493fff  com.apple.QuickLookFramework (4.0 - 554.0) <EFB43063-6901-35B2-BD76-36386452CAED> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90494000 - 0x904b1fff  com.apple.openscripting (1.3.5 - 148) <2F5759DC-DCB9-3B2B-BE5A-CE4A194434C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x904b2000 - 0x904b3fff  libremovefile.dylib (23.1) <4F8BC561-F83C-3949-B70F-6846E56CCAB8> /usr/lib/system/libremovefile.dylib
    0x904b4000 - 0x904bbffb  libunwind.dylib (35.1) <A86BD3B1-A2B2-314A-A2AB-AEFADDD44ECF> /usr/lib/system/libunwind.dylib
    0x904bc000 - 0x907d7ffb  com.apple.Foundation (6.8 - 940.1) <602C3005-78DE-384B-9AA8-BBF7E79263EE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x907d8000 - 0x90a51ff3  com.apple.RawCamera.bundle (4.0.0 - 635) <1A8E4A85-74C3-36DD-A154-EFE0AF86F1C1> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90a52000 - 0x90a7fffb  com.apple.CoreServicesInternal (152 - 152) <C05BD082-9820-32B7-A4DB-0F3ED58D5DC9> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x90a80000 - 0x90a84ffc  libGIF.dylib (840) <A5FC4761-D18D-38A3-9C92-9FD08BA8438F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90a85000 - 0x90ae9fff  com.apple.datadetectorscore (4.0 - 269.1) <D138A3E3-7D28-303D-B6EA-294A80375BFD> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90aea000 - 0x90af4ffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C3DF6572-AD17-3295-8D0A-CF0A2B3D04E5> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x90af5000 - 0x90b48ff3  com.apple.AE (639 - 639.2) <0FF64F8E-9848-3FB6-AC87-B3A832F511F2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90b7f000 - 0x90e10ffb  com.apple.CoreImage (8.0.14 - 1.0.1) <A67100FD-9C6C-3663-B5AB-86603916EEA0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x90e11

  • All Applications crash when I try to print (2)

    I have and epson EPL-6200L b/w laser printer and an epson 1270. the 1270 s fine. the 6200 crashes EVERY application, from text edit to adobe inDesign. In text edit, I can open the 'page setup' dialog box and edit, but clicking the 'print' button causes a crash (if I change the default printer to the 1270, it will open the dialogue box, but crash when I select the 6200L). The message I get is "the problem may have been caused by the EPSONPagePDE plug-in" (verbatim). In console, it shows a bus error.
    18/11/2008 17:19:47 com.apple.launchd122 (0x0-0x39039.com.apple.TextEdit402) Exited abnormally: Bus error
    I have deleted the epson folder; reinstalled the driver from a fresh download;
    reset the printing system in the print & fax preferences.
    I have also typed the following in the terminal window (based on another post):
    rm -rf ~/.lpoptions ~/.cups
    …and this:
    1. Go to Terminal
    2. Test the permissions on your temp folder by typing:
    touch $TMPDIR/foo
    3. It will say 'permission denied'. (it didn't say this for me)
    4. Change the permissions on your temp folder by typing:
    sudo chmod 775 $TMPDIR
    You will need to enter your password.
    None of this has made a difference. Anyone have a suggestion?

    You could try removing the EpsonPagePDE plugin from /Library/Printers/EPSON/LaserPrinter/GD2/PDE/ or renaming it. You may lose some functionality, but it shouldn't crash.
    This crash could be because of missing string or something similar, so reinstalling the driver wouldn't help unless there is an update that contains a fix.
    If after trying this you are still crashing, please post the entire crash log.

  • All video applications crash when loading a video. Including web browsers, vlc and quick time

    Last night chrome started crashing when trying to load a youtube video. I tried on safari and then downloaded firefox but they crashed too blaming flash player. Then when i tried to play a video using vlc that crashed too and so did quick time. Nothing will play in any application.   
    I've tried reinstalling the browsers, uninstalling and reinstalling flash player, repairing disk permissions, starting in safe mode and installing avast to scan for malware but none of these have made any difference. I haven't installed any updates since the last time it was working
    When verifying the disk permissions i get the following and no matter how many times i repair them it says the same thing
    OS 10.6.8
      Model Name: Mac Pro
      Model Identifier: MacPro1,1
      Processor Name: Dual-Core Intel Xeon
      Processor Speed: 2.66 GHz
      Number Of Processors: 2
      Total Number Of Cores: 4
      L2 Cache (per processor): 4 MB
      Memory: 4 GB
      Bus Speed: 1.33 GHz
      Boot ROM Version: MP11.005C.B08
      SMC Version (system): 1.7f10
      Serial Number (system): CK******Z6M
      Hardware UUID: *****
    <Edited By Host>

    Verify permissions for “HD”
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Group differs on "Library/Internet Plug-Ins/flashplayer.xpt", should be 80, group is 0.
    Permissions differ on "Library/Internet Plug-Ins/flashplayer.xpt", should be -rw-rw-r-- , they are -rw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions verification complete

  • Application crashes when making Comments in Acrobat Pro XI

    I'm using Acrobat Pro XI on an iMAC... I'm trying to make 'comments' to a pdf file I have created, but every time I type in the 'comment box' the application crashes. Is anyone else having the same problem, if so, have you been able to find a work around?
    Any advice would be greatly appreciated.

    What you may remember, and what is still in Acrobat Pro XI, is the ability to align form fields when in form editing mode.
    However, the new text editing features allow some degree of alignment. There is no align tool, nor an align command.
    If you're trying to align the baselines of text, I'd first show the rulers (View > Show/Hide > Rules & Grids > Rulers) and draw a guide from the ruler to the baseline of the first text frame. Then as you're moving a frame (and it can be tricky when the frames are small), you want the Move cursor (looks like the Move tool in Photoshop). If you do that you should see green alignment "smart guides" appear as you drag. Finally, while still in that mode, you can tweak the position of a text frame by using the arrow keys on your keyboard to move in approximately 1 point increments.
    I would also appreciate the ability to align like in a layout program like InDesign, but they haven't yet included it.

  • Application crashes when calling DLL built with LabVIEW 2011

    Hello everybody,
    Our application calls DLLs built with LabVIEW 2010 SP1. We installed LabVIEW 2011 and built some DLLs. So far so good. If we start our application and run 2010 DLLs it still works fine. If we run a 2011 DLL just once no error happens, but if we try to run the same 2011 DLL our application crashes reporting the error below. I saved the code for 2010 version and built a DLL and it works fine. Does anyone know why?
    Thank you in advance.
    #Date: Fr, 16. Sep 2011 16:25:25
    #OSName: Microsoft Windows XP Service Pack 3
    #OSVers: 5.1
    #OSBuild: 2600
    #AppName: PasTA
    #Version: 11.0f2 32-bit
    #AppKind: AppLib
    #LabVIEW Base Address: 0x30000000
    16.09.2011 16:25:26.181
    Crash 0x0: Crash caught by NIER
    File Unknown(0) : Crash: Crash caught by NIER
    minidump id: 8a779b3f-51d7-4864-8e4d-6ab0195cd158
    ExceptionCode: 0xC0000005
    N
    0x3072C804 - lvrt <unknown> + 0
    0x3072CBB8 - lvrt <unknown> + 0
    0x7C864191 - KERNEL32 <unknown> + 0
    0x7C83AB50 - KERNEL32 <unknown> + 0
    0x00000000 - PasTA <unknown> + 0
    Attachments:
    error.PNG ‏11 KB

    On that note, you should be able to create DLLs in 2010 and run them with 2011, correct??  In my case, I have a 2010 built DLL (talking to sbRIO), most of the functions work when run in 2011, but a couple of them lock up LabVIEW on the desktop (but not the sbRIO), no lock ups happen with 2010 on the desktop.

  • Application crashes when camera mode 7 is set

    Hi, I have written a small application that grabs images from the camera. The application also allows user to change the video modes and the ROI But I have a problem. Whenever I try to set mode 7 the application crashes. I am also handling the exception but it doesn;t go there. It simply crash. So can anybody help! I
    Thanks Farhat
    Attachments:
    Camera ROI Config.zip ‏5 KB

    Hi Farhat,
      ok - I've sorted what was going on now with the crashing.
    you need to set the format, the mode and the framerate when you change the setup each time.
    I've put the ROI stuff back in - you might want to parse the setup to make sure that when you set the ROI it's not larger than you would normally expect (so a 320x200  max if that's the format you've chosen.
    Thanks
    Sacha Emery
    National Instruments (UK)
    // it takes almost no time to rate an answer
    Attachments:
    Camera ROI Config.zip ‏16 KB

  • Application crashes when printing

    hi, whenever i try to print, the application crashes. this is the same regardless of which application im using,(opera, acrobat reader, neo office, etc.)
    im using a lexmark z1380 printer and an iMac with 10.5.6.
    any help greatly appreciated!
    dan

    I bumped into at least a partial answer trying to figure this out. It seems like the System/Library/Frameworks directories may have been corrupted. I recently installed the 2009-001 Security update (too soon to tell if that was the culprit). What I did to fix the printing problem was to Archive a copy of the System/Library/Frameworks/Carbon.framework directory from my wife's MAC. I made an acrhive of the same directory from my Powerbook. I then deleted that directory. I copied the archive of my wife's MAC to my Deskptop and unzipped it. Then I MOVED - not Copied (Copy will not work) that entire directory from the Deskptop to the System/Library/Frameworks directory. This not only solved my problem with the Printing Crashing - it also solved the problem of my MAC not responding to either the Shutdown or Restart Options. Something definitely corrupted this directory structure. Note: You will need to supply the Authentication Password when you Move the Directory. Hope this helps.

Maybe you are looking for

  • "songs..can't be updated b/c all the playlists for updating no longer exist

    My Ipod was "off power" for so long that it "forgot" all its music. Now when I plug it in to my base computer, rather then synching it says "songs on the ipod "name" cannot be updated because all the playlists for updating no longer exist"

  • Two phones with the same icloud how to use storage only one the one

    My daughter has a Iphone 4, I have a Iphone 5. Because she is to young to have a credit card that allows her to shop online, she uses mine to buy apps. The phone stands in my name and we share the same Iclud. She needs more storage on her phone, so I

  • How do I set upePrint on a HP Officejet 6500 wireless all in one E709n?

    I can not find the Eprint code to print from my tablet. Where do I find the code for this printer? Thanks!

  • Search Button not working in Solman 7.1

    Hi, We are using Solman 7.1. However, in Solar02,  when I search for anything from the left tree structure using the search button ( The binocular button ) , it says text not found. We generally get a list of folders in that left tree. Any text that

  • Bex report query

    Hi Experts, I have my Source Data like this Mat.Model......Status Mat1..............WIP Mat2..............WIP Mat3..............Completed Mat4..............Completed Mat1..............Received Mat2..............WIP Mat3..............WIP Mat4.........