Application crashes nearing 28 concurrent transactions

Its been a while folks.... I used to post and answer allot
here back in the day when i was coding in CF daily.
Here is the problem... more details will follow when I get
them. I was tasked by my director to look into a problem for an
application on the network. NOTE: I know longer work in CF I
haven't used it since I got certified on version 5.0 ( I knew I
should have pulled my CF experience off my resume
Anyway this is what I have so far, its not much but I was
hoping someone out there has seen this and it a known
infrastructure problem.
This is what I got:
"the issue is when they get up to 28 concurrent transactions,
the application crashes"
They are using ColdFusion Ver 7 Enterprise Edition
(7.0.2.142559).
Webservers ( 3 of them )
HP Proliant BL25 G1
4GB Ram 67GB Disk (via 2 disks mirrored) 2 dual-core 2.20GHz
AMD processors
Windows 2000 SP4
IIS 5
ColdFusion Ver 7 Enterprise Edition ( 7.0.2.142559 )
Sun Java 1.4.2_13
Course Content Server
2GB Ram 4 x 3.2GHz Intel CPU
Windows 2000 SP4
IIS 5
Apache Tomcat 4.1
DB Server ( active/passive cluster)
HP Proliant BL45P G1
8GB Ram 67GB Disk (via 2 disks mirrored) 4 dual-core 2.2GHz
AMD processors
Windows 2003 SP1 Enterprise Edition
Microsoft SQL 2000 Server Enterprise Edition SP4

Thanks for your reply I am working on getting the log once I
get access to the server Admin. They set the system to monitor
everything and they are trying to replicate the problem to generate
some type of useful log.
I did have a call with the Client and they indicated that
under large volumes.. 1/3 web servers hangs and does not take
requests. The other 2 work fine and and CF runs as designed. All
run IIS 5

Similar Messages

  • Concurrent transactions

    Hi, please consider a plain old Java (not EJBs) application for a book store.
    The application offer 3 operations:
    1. Add new book (Store the book info in the DB).
    2. Remove book (remove the book info from the DB).
    3. Modify book (update the book info in the DB).
    The system must support multiple users doing requests at the same time, thus the application must support concurrent transactions.
    The ANSI/ISO SQL standard defines the four isolation levels: READ UNCOMMITTED, READ COMMITTED, REPEATABLE READS, SERIALIZABLE. Each level provides certain degree of isolation, the greatest isolation level is SERIALIZABLE but I've readed from several sources that it's not convenient to use this level because it causes a heavy impact in the performance and thus suggests to use READ COMMITTED.
    As far I know, the first three isolation levels don't provide perfect isolation: they allow ugly problems to appear like dirty reads, unrepeatable reads and phantom reads.
    What should I do to provide isolation to my system while using READ COMMITTED?
    I think that lots of people have faced this problem over years, and the question is: Are there some "common" or "standard" techniques to solve this?
    In other words, what is the correct approach to solve this?
    Thank you very much for the help.

    I have written two programs to test the situation.
    The first program uses JDBC.
    The second program uses hibernate.
    Both programs show the same result: The final copies count is wrong. The "lost updates" problem is occurring in both.
    Preconditions:
    Create a database.
    Create the table BOOK: create table BOOK (BOOK_ID INTEGER, TITLE VARCHAR(30), COPIES INTEGER, PRIMARY KEY(BOOK_ID))
    Insert in the table the row with BOOK_ID = 1, Title = "The Java Patterns", COPIES = 7:
    Below is the code for the JDBC test.
    public class LostUpdatesTest3 {
         private static CyclicBarrier barrier = null;
         public static void main(String[] args) throws Exception {
              Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
              int numOfThreads = 5;
              Thread[] threads = new Thread[numOfThreads];          
              barrier = new CyclicBarrier(numOfThreads);
              for (int i = 0; i < numOfThreads; i++) {
                   threads[i] = new MyTransaction();
                   threads.setName("thread " + i);
                   threads[i].start();
              for (Thread thread : threads) {
                   thread.join();
         private static class MyTransaction extends Thread {
              public void run() {
                   Connection con = null;
                   try {
                        con = DriverManager.getConnection(
                                  "jdbc:derby:d:/pruebas/jdbc1db;create=true", "root", "root");
                        con.setAutoCommit(false);
                        Statement statement = con.createStatement();
                        ResultSet resultSet = statement.executeQuery("SELECT * FROM BOOK");
                        resultSet.next();
              int id = resultSet.getInt("BOOK_ID");
              int copies = resultSet.getInt("COPIES");
                        barrier.await();
                        PreparedStatement preparedStatement = con.prepareStatement(
                        "UPDATE BOOK SET COPIES = ? WHERE BOOK_ID = ?");
                        preparedStatement.setInt(1, copies - 1);
                        preparedStatement.setInt(2, id);
                        preparedStatement.executeUpdate();
                        con.commit();
                        statement.close();
                        preparedStatement.close();
                        con.close();
                   } catch (Exception e) {
                        e.printStackTrace();
    This test creates 5 threads and starts them. Each thread runs a transaction to reduce 1 to the copies count.
    At the end of the test, the book have COPIES = 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • 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

  • Concurrent transactions problem- Can anybody help?- very urgent

    I have tested our application for multiple transactions i.e. concurrent transactions between two servers with IIS and Tomcat environment. We found some unexpected result and which is irrespective of the data (size ranging from 10 bytes to 10 kb, 50kb 70kb etc) sending across the servers on
    I was testing with 5 transactions (with data size of 13 bytes) from one machine (server1) i.e 5 windows of internet explorer. When I clicked on all the five, one after another quickly, I found that 4 transactions got success and one browser went to hang mode.
    Second time when I clicked on it, I found that 3 transactions got success, 1 in hang mode and 1 failed.
    We traced the exception at the point where it fails. Everytime it fails while reading the response back from the other end through InputStreamBuffer. The block in which it fails is
    Please follow the piece of code which i have written
    //reading response from the destination decrypt url,
    //which is also encrypted and signed
    //sending the same to caller of encrypt
    String data="";
    int end=0;
    char c[]=new char[4*1024];
    BufferedReader buf=null;
    //reading data in a chunks of data
    try
    inr=new InputStreamReader(connection.getInputStream());
    buf=new BufferedReader(inr,12*1024);
    while ((end=buf.read(c))!=-1)
    data=new StringBuffer(data).append(c,0,end).toString();
    catch(OutOfMemoryError e)
    System.out.println("Out of memory errror"+e.getMessage());
    try
    response.sendError(HttpServletResponse.SC_NOT_FOUND);
    return;
    catch(Exception e1)
    return;
    catch(Exception e1)
    System.out.println("Failure in reading response"+e1.getMessage());
    try
    response.sendError(HttpServletResponse.SC_NOT_FOUND);
    return;
    catch(Exception e2)
    return;
    finally
    try
    if(inr!=null)
    inr.close();
    if(buf!=null)
    buf.close();
    if (connection != null)
    connection.disconnect();
    catch(Exception e)
    System.out.println("Error in closing connection"+e.getMessage());
    Here the connection get disconnected and throws the following exceptions at difterent time of testing in failure case.
    1. Failure in reading response JVM_recv in socket input stream read (code=10004)
    Error in closing connection Socket closed
    2. Null pointer exception.
    Could you please tell us what would be the reasons for the above exceptions or failure and how to rectify or handle it.
    Thanks & Regards
    Gabriel

    - First, do not use BufferedReader.
    Use InputStream.read(byte[]) and make them to an String.
    If does not help use another stable version of TOMCAT
    on the same way.
    Also it is better to read the data over the Servlet API
    methods not over the IO streams.
    e.g. request.getParameter("XXX")
    - Do not close the socket connection in TOMCAT.
    TOMCAT themselves close the connection for you.
    Use the flush() method for getting the data faster.

  • ADF Faces & business components application crash

    My application crashes with the following stack. Any idea what's causing this?
    06/05/15 17:38:09 Exception in thread "Reference Handler" java.lang.NullPointerException
    06/05/15 17:38:09      at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:123)
    06/05/15 17:38:09 <3>[2785] (0) DCBindingContainer.internalRefreshControl(2311) **** refreshControl() for BindingContainer :effectenPageDef
    Fatal error: Cannot find class java/lang/NullPointerException
    Fatal error: Cannot find class java/lang/NullPointerException
    Fatal error: Cannot find class java/lang/NullPointerException
    Fatal error: Cannot find class java/lang/NullPointerException
    Process exited with exit code 128.
    Thanks,
    Andrej

    May be this additional info helps pinpointing:
    I work with JHeadstart (10.1.3.0.59) and JDeveloper 10.1.3 SU3 and generated default pages on top of two ADF Business Components. No customization done yet. One jspx page works nicely, wheras the other also gives me:
    Fatal error: Cannot find class java/lang/StackOverflowError
    Fatal error: Cannot find class java/lang/NullPointerException
    In the Embedded OC4J server log.
    The only difference between the two Entity Objects and View Objects is the size of them:
    - the working EO/VO page contains 38 attributes (yet, still have to tune and remove unnecessary attributes)
    - the other, error-giving EO/VO page contains nearly 60 attributes (same comment here on the tuning part).
    So, is it possible that the number of attributes and therefor the size of jspx pages can cause these Fatal errors? The JRE seems fine, since some pages work, others do not.
    Toine

  • Add new mandatory column without killing concurrent transactions

    I know of several approaches to this problem, but as the table in question is key to my organisation, I'd quite like to get this right first time!
    I need to add a 1 character column to a large (approx 1 million rows, approx 100 cols) table which also happens to be central to our database (contains client details). The table is involved in the majority of transactions on our database, 24/7 so I need to find the method with the least impact on concurrent transactions.
    We use mod_plsql for our applications, and a previous attempt (by another developer) caused all web pages to become unresponsive, followed by a database shutdown.
    Any advice?

    Just a note that I ended up writing a pl/sql script which used a select for update cursor to update the non-locked rows, and stored any locked rowids in an associative array. It then looped round the array trying to update these rows until they were all done. Did the trick. DBA wasn't keen or the redefinition package when he saw what it did!
    thanks,
    M

  • Frequent Application Crashes

    More than usual, I've been getting a lot of application crashes on my 1.67ghz Powerbook.
    The logs always show an exception near or at the beginning of the memory space.
    Firefox:
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    VLC:
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xa87c0403
    iDVD:
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x193cd8eb
    Disk Warrior:
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x3a0b050b
    I've checked the memory and the system using the hardware test and other test apps. The system appears to be ok.
    My PB is in serial range for the memory slot failure, but the slot is still operational. However I am concerned these crashes are hardware based. Could I have the beginnings of slot failure or some sort of memory problem?
    I know VLC crashes a lot but the iApps having been more troublesome than they ever were.
    Anyone with similar experience who might know something I don't?
    Thanks
    Peter

    Dashboard just went down:
    Date/Time: 2007-03-29 03:23:11.694 +0100
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: DashboardClient
    Path: /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
    Parent: Dock [177]
    Version: 1.0.5 (1.0.5)
    Build Version: 2
    Project Name: Dock
    Source Version: 4510300
    PID: 351
    Thread: 0
    Application Specific Information:
    /Users/peterknapp/Library/Widgets/iStat nano.wdgt/
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x48000144
    Thread 0 Crashed:
    0 <<00000000>> 0xfffeff18 objcmsgSendrtp + 24
    1 com.apple.Foundation 0x92bdf6c0 -[NSInvocation setReturnValue:] + 548
    2 com.apple.Foundation 0x92bdef34 -[NSInvocation invoke] + 1616
    3 com.apple.JavaScriptCore 0x95862924 KJS::Bindings::ObjcInstance::invokeMethod(KJS::ExecState*, KJS::Bindings::MethodList const&, KJS::List const&) + 772
    4 com.apple.JavaScriptCore 0x9585e6a8 KJS::RuntimeMethodImp::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 312
    5 com.apple.JavaScriptCore 0x95824988 KJS::Object::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 136
    6 com.apple.JavaScriptCore 0x958232a8 KJS::FunctionCallNode::evaluate(KJS::ExecState*) + 1040
    7 com.apple.JavaScriptCore 0x95828070 KJS::AssignNode::evaluate(KJS::ExecState*) + 260
    8 com.apple.JavaScriptCore 0x95827eac KJS::ExprStatementNode::execute(KJS::ExecState*) + 120
    9 com.apple.JavaScriptCore 0x9582285c KJS::SourceElementsNode::execute(KJS::ExecState*) + 208
    10 com.apple.JavaScriptCore 0x9582271c KJS::BlockNode::execute(KJS::ExecState*) + 140
    11 com.apple.JavaScriptCore 0x9582dbf4 KJS::IfNode::execute(KJS::ExecState*) + 440
    12 com.apple.JavaScriptCore 0x958229ac KJS::SourceElementsNode::execute(KJS::ExecState*) + 544
    13 com.apple.JavaScriptCore 0x9582271c KJS::BlockNode::execute(KJS::ExecState*) + 140
    14 com.apple.JavaScriptCore 0x95832214 KJS::ForNode::execute(KJS::ExecState*) + 592
    15 com.apple.JavaScriptCore 0x958229ac KJS::SourceElementsNode::execute(KJS::ExecState*) + 544
    16 com.apple.JavaScriptCore 0x9582271c KJS::BlockNode::execute(KJS::ExecState*) + 140
    17 com.apple.JavaScriptCore 0x9582f60c KJS::DeclaredFunctionImp::execute(KJS::ExecState*) + 44
    18 com.apple.JavaScriptCore 0x9582ee88 KJS::FunctionImp::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 408
    19 com.apple.JavaScriptCore 0x95824988 KJS::Object::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 136
    20 com.apple.JavaScriptCore 0x9583f2d8 KJS::FunctionProtoFuncImp::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 2556
    21 com.apple.JavaScriptCore 0x95824988 KJS::Object::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 136
    22 com.apple.JavaScriptCore 0x95866d2c -[WebScriptObject callWebScriptMethod:withArguments:] + 504
    23 com.apple.dashboard.client 0x0000f574 0x1000 + 58740
    24 com.apple.Foundation 0x92be2ae4 nsnotecallback + 180
    25 com.apple.CoreFoundation 0x90806078 __CFXNotificationPost + 368
    26 com.apple.CoreFoundation 0x907fe114 _CFXNotificationPostNotification + 684
    27 com.apple.Foundation 0x92bcceec -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    28 com.apple.Foundation 0x92be45e0 _performTaskSource + 120
    29 com.apple.CoreFoundation 0x907df5b4 __CFRunLoopDoSources0 + 568
    30 com.apple.CoreFoundation 0x907dea2c __CFRunLoopRun + 452
    31 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    32 com.apple.HIToolbox 0x9329bb20 RunCurrentEventLoopInMode + 264
    33 com.apple.HIToolbox 0x9329b1b4 ReceiveNextEventCommon + 380
    34 com.apple.HIToolbox 0x9329b020 BlockUntilNextEventMatchingListInMode + 96
    35 com.apple.AppKit 0x93780ae4 _DPSNextEvent + 384
    36 com.apple.AppKit 0x937807a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    37 com.apple.AppKit 0x9377ccec -[NSApplication run] + 472
    38 com.apple.dashboard.client 0x000101e8 0x1000 + 61928
    39 com.apple.dashboard.client 0x00002528 0x1000 + 5416
    40 com.apple.dashboard.client 0x000023d0 0x1000 + 5072
    Thread 1:
    0 libSystem.B.dylib 0x9001c700 connect + 12
    1 com.apple.CoreFoundation 0x9082c208 CFSocketConnectToAddress + 256
    2 com.apple.CFNetwork 0x90f99078 SocketStreamConnectNoLock + 124
    3 com.apple.CFNetwork 0x90f9898c SocketStreamAttemptNextConnectionNoLock + 424
    4 com.apple.CFNetwork 0x90f98160 _HostCallBack + 232
    5 com.apple.CFNetwork 0x90f9805c _AddressLookupPerform + 148
    6 com.apple.CoreFoundation 0x907df5b4 __CFRunLoopDoSources0 + 568
    7 com.apple.CoreFoundation 0x907dea2c __CFRunLoopRun + 452
    8 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    9 com.apple.Foundation 0x92c0a6a8 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    10 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    11 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0b7e8 +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001fa0c select + 12
    1 com.apple.CoreFoundation 0x907f1434 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000fffeff18 srr1: 0x000000000200d030 vrsave: 0x0000000000000000
    cr: 0x44002488 xer: 0x0000000000000004 lr: 0x0000000092bdf6c0 ctr: 0x0000000092bdf684
    r0: 0x0000000010000000 r1: 0x00000000bfffc8f0 r2: 0x0000000010000000 r3: 0x0000000092bdf6c0
    r4: 0x0000000090aacaa0 r5: 0x0000000000000008 r6: 0x000000000000002c r7: 0x0000000000000f03
    r8: 0x0000000000000000 r9: 0x0000000000000058 r10: 0x0000000092bdf84c r11: 0x000000006f54caa0
    r12: 0x0000000048000124 r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000329ae0 r19: 0x00000000003ea140
    r20: 0x00000000a2bc490c r21: 0x00000000a07b5f18 r22: 0x00000000bfffdf60 r23: 0x00000000bfffde90
    r24: 0x00000000a5827f80 r25: 0x00000000bfffd880 r26: 0x0000000003e72a70 r27: 0x0000000003e72acc
    r28: 0x00000000bfffccf8 r29: 0x0000000090ab42e0 r30: 0x0000000003e72ba0 r31: 0x0000000092bdf49c
    Binary Images Description:
    0x1000 - 0x14fff com.apple.dashboard.client 1.0.5 /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
    0xf6000 - 0xf6fff com.aladdinsys.mmenabler 7.1.0 (8.0.2) /Library/InputManagers/MagicMenuEnabler/MagicMenuEnabler.bundle/Contents/MacOS/ MagicMenuEnabler
    0x205000 - 0x20cfff eu.willmore.CaminoSession CaminoSession v0.86 (0.86) /Users/peterknapp/Library/InputManagers/CaminoSession/CaminoSession.bundle/Cont ents/MacOS/CaminoSession
    0x46d000 - 0x47cfff com.iStatNano.widgetplugin ??? (1.0) /Users/peterknapp/Library/Widgets/iStat nano.wdgt/SysStatPlugin.bundle/Contents/MacOS/SysStatPlugin
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bdfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90215000 - 0x9021afff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021c000 - 0x90269fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90294000 - 0x90345fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90374000 - 0x9072ffff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bc000 - 0x90895fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.9 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd1fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe6000 - 0x90ffefff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100e000 - 0x9108ffff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d5000 - 0x910fffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91110000 - 0x9111efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91121000 - 0x912dcfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913db000 - 0x913e4fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913eb000 - 0x91413fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91426000 - 0x91431fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91436000 - 0x9143efff libbsm.dylib /usr/lib/libbsm.dylib
    0x91442000 - 0x914bdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fa000 - 0x914fafff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fc000 - 0x91534fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154f000 - 0x91621fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91674000 - 0x91705fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174c000 - 0x91803fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91840000 - 0x9189efff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cd000 - 0x918f1fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91905000 - 0x9192afff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193d000 - 0x9197ffff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199b000 - 0x919affff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bd000 - 0x91a03fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1a000 - 0x91ae1fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2f000 - 0x91b44fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b49000 - 0x91b67fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6d000 - 0x91c24fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c73000 - 0x91c77fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c79000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d43fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d48000 - 0x91d4bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4d000 - 0x91e2bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4b000 - 0x91e4bfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4d000 - 0x91f32fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3a000 - 0x91f59fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc5000 - 0x92033fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203e000 - 0x920d3fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ed000 - 0x92675fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a8000 - 0x929d3fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a03000 - 0x92af1fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af4000 - 0x92b7cfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbd000 - 0x92de8fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f15000 - 0x92f33fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3e000 - 0x92f98fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb6000 - 0x92fb6fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb8000 - 0x92fccfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe4000 - 0x92ff4fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93000000 - 0x93015fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93027000 - 0x930aefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c2000 - 0x930cdfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d7000 - 0x93104fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311e000 - 0x9312efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93776000 - 0x93776fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93778000 - 0x93dabfff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94138000 - 0x941aafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e3000 - 0x942a7fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f9000 - 0x942f9fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942fb000 - 0x944bbfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94505000 - 0x94542fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9454a000 - 0x9459afff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a3000 - 0x945b7fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94777000 - 0x94783fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94c65000 - 0x94c85fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94cb6000 - 0x94cc2fff com.apple.framework.Apple80211 4.2.9 (429.6) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x95723000 - 0x957b1fff com.apple.WebKit 419 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9580d000 - 0x958a3fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x958e0000 - 0x95becfff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95d75000 - 0x95d9efff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    When you said input managers, I can see something called 'Camino Session' - I had the Camino Browser once but trashed it. If that's the source I really want to delete this thing. The question is how to do it....

  • Concurrent transactions in servlets using HttpConnectionURL class

    I have tested our application for multiple transactions i.e. concurrent transactions between two servers with IIS and Tomcat environment. We found some unexpected result and which is irrespective of the data (size ranging from 10 bytes to 10 kb, 50kb 70kb etc) sending across the servers on
    I was testing with 5 transactions (with data size of 13 bytes) from one machine (server1) i.e 5 windows of internet explorer. When I clicked on all the five, one after another quickly, I found that 4 transactions got success and one browser went to hang mode.
    Second time when I clicked on it, I found that 3 transactions got success, 1 in hang mode and 1 failed.
    We traced the exception at the point where it fails. Everytime it fails while reading the response back from the other end through InputStreamBuffer. The block in which it fails is
    Please follow the piece of code which i have written
    //reading response from the destination decrypt url,
    //which is also encrypted and signed
    //sending the same to caller of encrypt
    String data="";
    int end=0;
    char c[]=new char[4*1024];
    BufferedReader buf=null;
    //reading data in a chunks of data     
    try
         inr=new InputStreamReader(connection.getInputStream());
         buf=new BufferedReader(inr,12*1024);          
         while ((end=buf.read(c))!=-1)
              data=new StringBuffer(data).append(c,0,end).toString();
    catch(OutOfMemoryError e)
         System.out.println("Out of memory errror"+e.getMessage());
         try
              response.sendError(HttpServletResponse.SC_NOT_FOUND);
              return;
         catch(Exception e1)
              return;
    catch(Exception e1)
         System.out.println("Failure in reading response"+e1.getMessage());
         try
              response.sendError(HttpServletResponse.SC_NOT_FOUND);
              return;
         catch(Exception e2)
              return;
    finally
         try
              if(inr!=null)
                   inr.close();
              if(buf!=null)
                   buf.close();
              if (connection != null)
                   connection.disconnect();     
         catch(Exception e)
              System.out.println("Error in closing connection"+e.getMessage());
    Here the connection get disconnected and throws the following exceptions at difterent time of testing in failure case.
    1. Failure in reading response JVM_recv in socket input stream read (code=10004)
    Error in closing connection Socket closed
    2. Null pointer exception.
    Could you please tell us what would be the reasons for the above exceptions or failure and how to rectify or handle it.
    Thanks & Regards
    Gabriel

    Can anybody look into it , this very urgent
    thanks
    Gabriel

  • Concurrent Transactions,Disaster Recovery

    Hello friends,
    I have an application on sql server which is used for online reservation.Could you tell me roadmap in order to handle  concurrent transaction and disaster recovery plan? I am using sql server 2008 R2.
    Thanks in advance.

    Hi,
    I suggest you read this article:
    High Availability and Disaster Recovery (OLTP)---a Technical Reference Guide for Designing Mission-Critical OLTP Solutions
    http://msdn.microsoft.com/en-us/library/ms190202.aspx
    If one high-availability option cannot meet the requirement, you
    may consider combining some of the high-availability options.
    The white paper Proven SQL Server Architectures for High Availability and Disaster Recovery2 shows the details of five commonly used architectures:
    ◦ Failover clustering for HA and database mirroring for DR.
    ◦ Synchronous database mirroring for HA/DR and log shipping for additional DR.
    ◦ Geo-cluster for HA/DR and log shipping for additional DR.
    ◦ Failover clustering for HA and storage area network (SAN)-based replication for DR.
    ◦ Peer-to-peer replication for HA and DR (and reporting).
    The whitepaper also describes the architectures and also presents case studies that illustrate how real-life customers have deployed these architectures to meet their business requirements. You can download it here:
    Proven SQL Server Architectures for High Availability and Disaster Recovery
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Applications crash when dictation running continuously

    Does anyone else find that applications crash quite often if you leave dictation always running?
    I use dictation on Yosemite (with the Australian Language Dictionary in enhanced mode) for switching between apps, highlighting stuff in PDFs (via preview), cutting and pasting and a whole heap of other handy voice commands that I've added. It's great for my productivity... until it crashes an application.
    I think it might have something to do with shared memory and perhaps dictations getting confused which shared memory belongs to which application when you switch apps... perhaps it expects to dictate while only in the one application and switch it off and on again when you switch apps?
    I couldn't find anyone else on the web with this issue so I am thinking it might just be me
    Anyway, below is a typical crash log excerpt (for OS X Preview in this case) - if anyone has any ideas how to stop apps crashing while OS X dictation is running please let me know !
    Thanks,
    Phil
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0xfffffffffffffff0
    VM Regions Near 0xfffffffffffffff0:
    --> shared memory          00007ffffff35000-00007ffffff36000 [    4K] r-x/r-x SM=SHM
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CorePDF             0x00007fff8fccc82b -[CPReadingModel stringRangeForTextRange:onPageNumber:] + 307
    1   com.apple.PDFKit               0x00007fff92b0dfc7 -[PDFAccessibilityStaticTextModel accessibilitySelectedTextRangeAttribute] + 229
    2   com.apple.PDFKit               0x00007fff92b0de28 -[PDFAccessibilityStaticTextModel accessibilityAttributeValue:] + 1307
    3   com.apple.AppKit               0x00007fff87e08f63 NSAccessibilityGetObjectForAttributeUsingLegacyAPI + 392
    4   com.apple.AppKit               0x00007fff87e09678 _NSAccessibilityEntryPointValueForAttribute + 1742
    5   com.apple.AppKit               0x00007fff87c365ec -[NSObject(NSAccessibilityInternal) _accessibilityValueForAttribute:clientError:] + 266
    6   com.apple.AppKit               0x00007fff87c3bf79 CopyAppKitUIElementAttributeValueNoCatch + 50
    7   com.apple.AppKit               0x00007fff87c39586 CopyAttributeValue + 351
    8   com.apple.HIServices           0x00007fff8df669b2 _AXXMIGCopyAttributeValue + 290
    9   com.apple.HIServices           0x00007fff8df708a9 _XCopyAttributeValue + 481
    10  com.apple.HIServices           0x00007fff8df4da13 mshMIGPerform + 199
    11  com.apple.CoreFoundation       0x00007fff870c48f9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    12  com.apple.CoreFoundation       0x00007fff870c486b __CFRunLoopDoSource1 + 475
    13  com.apple.CoreFoundation       0x00007fff870b63e7 __CFRunLoopRun + 2375
    14  com.apple.CoreFoundation       0x00007fff870b5858 CFRunLoopRunSpecific + 296
    15  com.apple.HIToolbox           0x00007fff906bdaef RunCurrentEventLoopInMode + 235
    16  com.apple.HIToolbox           0x00007fff906bd86a ReceiveNextEventCommon + 431
    17  com.apple.HIToolbox           0x00007fff906bd6ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
    18  com.apple.AppKit               0x00007fff87910f81 _DPSNextEvent + 964
    19  com.apple.AppKit               0x00007fff87910730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    20  com.apple.AppKit               0x00007fff87904593 -[NSApplication run] + 594
    21  com.apple.AppKit               0x00007fff878efa14 NSApplicationMain + 1832
    22  libdyld.dylib                 0x00007fff8b9415c9 start + 1

    sure - here is a freshly minted one (I removed the user id and anon UUID). Thanks for having a look.
    Process:               Preview [701]
    Path:                  /Applications/Preview.app/Contents/MacOS/Preview
    Identifier:            com.apple.Preview
    Version:               8.0 (859.7)
    Build Info:            Preview-859007000000000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Preview [701]
    User ID:               
    Date/Time:             2015-03-31 08:18:12.082 +1000
    OS Version:            Mac OS X 10.10.2 (14C1514)
    Report Version:        11
    Anonymous UUID:        
    Time Awake Since Boot: 740 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0xfffffffffffffff0
    VM Regions Near 0xfffffffffffffff0:
    --> shared memory          00007ffffffd6000-00007ffffffd7000 [    4K] r-x/r-x SM=SHM 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CorePDF             0x00007fff940da82b -[CPReadingModel stringRangeForTextRange:onPageNumber:] + 307
    1   com.apple.PDFKit               0x00007fff96f1bfc7 -[PDFAccessibilityStaticTextModel accessibilitySelectedTextRangeAttribute] + 229
    2   com.apple.PDFKit               0x00007fff96f1be28 -[PDFAccessibilityStaticTextModel accessibilityAttributeValue:] + 1307
    3   com.apple.AppKit               0x00007fff8c216f63 NSAccessibilityGetObjectForAttributeUsingLegacyAPI + 392
    4   com.apple.AppKit               0x00007fff8c217678 _NSAccessibilityEntryPointValueForAttribute + 1742
    5   com.apple.AppKit               0x00007fff8c0445ec -[NSObject(NSAccessibilityInternal) _accessibilityValueForAttribute:clientError:] + 266
    6   com.apple.AppKit               0x00007fff8c049f79 CopyAppKitUIElementAttributeValueNoCatch + 50
    7   com.apple.AppKit               0x00007fff8c047586 CopyAttributeValue + 351
    8   com.apple.HIServices           0x00007fff923749b2 _AXXMIGCopyAttributeValue + 290
    9   com.apple.HIServices           0x00007fff9237e8a9 _XCopyAttributeValue + 481
    10  com.apple.HIServices           0x00007fff9235ba13 mshMIGPerform + 199
    11  com.apple.CoreFoundation       0x00007fff8b4d28f9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    12  com.apple.CoreFoundation       0x00007fff8b4d286b __CFRunLoopDoSource1 + 475
    13  com.apple.CoreFoundation       0x00007fff8b4c43e7 __CFRunLoopRun + 2375
    14  com.apple.CoreFoundation       0x00007fff8b4c3858 CFRunLoopRunSpecific + 296
    15  com.apple.HIToolbox           0x00007fff94acbaef RunCurrentEventLoopInMode + 235
    16  com.apple.HIToolbox           0x00007fff94acb86a ReceiveNextEventCommon + 431
    17  com.apple.HIToolbox           0x00007fff94acb6ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
    18  com.apple.AppKit               0x00007fff8bd1ef81 _DPSNextEvent + 964
    19  com.apple.AppKit               0x00007fff8bd1e730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    20  com.apple.AppKit               0x00007fff8bd12593 -[NSApplication run] + 594
    21  com.apple.AppKit               0x00007fff8bcfda14 NSApplicationMain + 1832
    22  libdyld.dylib                 0x00007fff8fd4f5c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff98f0a232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8b24da6a _dispatch_mgr_thread + 52
    Thread 2:: CVDisplayLink
    0   libsystem_kernel.dylib         0x00007fff98f09136 __psynch_cvwait + 10
    1   com.apple.CoreVideo           0x00007fff919d2558 CVDisplayLink::runIOThread() + 676
    2   com.apple.CoreVideo           0x00007fff919d229b startIOThread(void*) + 147
    3   libsystem_pthread.dylib       0x00007fff99128268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff991281e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff9912641d thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff98f044de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff98f0364f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8b4c4b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8b4c3ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8b4c3858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff8be8233b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff99128268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff991281e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff9912641d thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff98f0994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9912640d start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff98f0994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9912640d start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff98f0994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9912640d start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff98f0994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9912640d start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x7fffffffffffffff  rbx: 0x0000000000000f91  rcx: 0x0000000000000010  rdx: 0x0000000000000000
      rdi: 0x00006080001915e0  rsi: 0xfffffffffffffff0  rbp: 0x00007fff5ca4fdf0  rsp: 0x00007fff5ca4fdb0
       r8: 0x000000000000000e   r9: 0x0000000000000000  r10: 0x00007fc4d351e350  r11: 0x00007fff7b852848
      r12: 0x0000000000000066  r13: 0x7fffffffffffffff  r14: 0x0000000000000ff7  r15: 0x00006080001915e0
      rip: 0x00007fff940da82b  rfl: 0x0000000000010a87  cr2: 0xfffffffffffffff0
    Logical CPU:     4
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x1031ac000 -        0x10336efef  com.apple.Preview (8.0 - 859.7) <487D571B-251B-39C4-8437-6313EB83D12C> /Applications/Preview.app/Contents/MacOS/Preview
           0x10341d000 -        0x103506fff  com.apple.AnnotationKit (1.0 - 51.11) <9A9791EE-69B9-37B6-A34A-018CE49B248B> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/Annotation Kit
           0x10359d000 -        0x1039e1ff7  com.apple.SceneKit (5.0 - 260.7.1) <61A4433D-A28A-37FF-BF20-1D69EDE78AF8> /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit
           0x103c87000 -        0x103d07ff3  com.apple.CoreHandwriting (96 - 1.2) <C016F95E-B454-39D0-A6D5-A99F46D908C0> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHand writing
           0x108660000 -        0x108660fef +cl_kernels (???) <F6C9AE02-D6C0-444D-9EC9-51A861F3CB55> cl_kernels
           0x10866e000 -        0x10866eff5 +cl_kernels (???) <A188209C-C243-48E7-AAD9-15D3AB0E2F24> cl_kernels
           0x108670000 -        0x108756fef  unorm8_bgra.dylib (2.4.5) <9423FFD4-6EF3-31BF-9DE9-6D55BA76D59E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x109d56000 -        0x109d5cff7  com.apple.BookKit (1.1 - 255) <501D110F-42F7-390F-A070-54F557F3C006> /System/Library/PrivateFrameworks/BookKit.framework/BookKit
           0x10c60a000 -        0x10c60aff3 +cl_kernels (???) <B09E9701-F4E1-4AC2-9E63-796BC34AAB0C> cl_kernels
           0x10ccbe000 -        0x10ccbeffe +cl_kernels (???) <BA05B843-89A2-4928-B971-B3E62FB32F5C> cl_kernels
           0x10ce61000 -        0x10cf41ff7  unorm8_rgba.dylib (2.4.5) <2720A91C-F32D-378D-9154-E12A5E214341> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x10d481000 -        0x10d481ffe +cl_kernels (???) <BA05B843-89A2-4928-B971-B3E62FB32F5C> cl_kernels
           0x10d485000 -        0x10d485fef +cl_kernels (???) <F6C9AE02-D6C0-444D-9EC9-51A861F3CB55> cl_kernels
           0x10f7ea000 -        0x10f80aff7  libPDFRIP.A.dylib (775.16) <22FE118B-404B-3835-B3EC-75C3D97CE612> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libPDFRI P.A.dylib
           0x112da1000 -        0x112f54ff3  libCMaps.A.dylib (775.16) <DEE8961E-EB3F-365A-922A-BF80AF1F3818> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCMaps .A.dylib
        0x123400000000 -     0x1234004f7fff  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.2.46 - 10.0.2) <35154588-E0D4-3FB3-8C0E-C7D1FA6C646E> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD5000GraphicsGLDriver
        0x123440000000 -     0x123440864fff  com.apple.GeForceGLDriver (10.2.1 - 10.0.2) <9E2BE857-9242-330A-AA6F-102FB3214F34> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff63402000 -     0x7fff63438837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
        0x7fff8a067000 -     0x7fff8a06ffff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8a070000 -     0x7fff8a075ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8a076000 -     0x7fff8a18effb  com.apple.CoreText (352.0 - 454.3) <B3B8C775-14FA-38F3-9CD5-830422AE9C49> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8a192000 -     0x7fff8a1fefff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8a218000 -     0x7fff8a225fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8a2ce000 -     0x7fff8a2d0ff7  libsystem_sandbox.dylib (358.1.1) <95312E09-DA28-324A-A084-F3E574D0210E> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8a2d1000 -     0x7fff8a330ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8a331000 -     0x7fff8a342ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8a355000 -     0x7fff8a3c7ff7  com.apple.framework.IOKit (2.0.2 - 1050.10.8) <FDFB1FBE-6A0E-3D63-828C-CD53500FCB0F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8a3c8000 -     0x7fff8a674fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8a675000 -     0x7fff8a679ff7  libGIF.dylib (1232) <3C70FBBC-FBA5-3013-A440-05D68B63885F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8a6b6000 -     0x7fff8a91eff3  com.apple.security (7.0 - 57031.10.10) <79C37E73-271B-3BEF-A96E-CDB83FF12CF0> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8a946000 -     0x7fff8b1ceff7  libclh.dylib (4.0.3 - 4.0.3) <5041EEED-0356-3302-861F-526709ACA871> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
        0x7fff8b1cf000 -     0x7fff8b1d8ff3  com.apple.CommonAuth (4.0 - 2.0) <BA9F5A09-D200-3D18-9F4A-20C789291A30> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8b1d9000 -     0x7fff8b1edff7  com.apple.MultitouchSupport.framework (262.33.1 - 262.33.1) <62DF9340-01A1-3E12-A604-C90F6361FD9E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8b1ee000 -     0x7fff8b248ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8b249000 -     0x7fff8b273ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8b347000 -     0x7fff8b380fff  com.apple.AirPlaySupport (2.0 - 215.15) <C36CC8AF-27CC-3B18-9C3C-3F845B35FDEC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8b381000 -     0x7fff8b3aefff  com.apple.Accounts (113 - 113) <990F0F61-6AC5-3076-932E-02A9A7F75AC4> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8b3af000 -     0x7fff8b451ff7  com.apple.Bluetooth (4.3.2 - 4.3.2f6) <95676652-21AB-3FFA-B53D-EBC8BF4E913E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8b452000 -     0x7fff8b7e8fff  com.apple.CoreFoundation (6.9 - 1152) <CBD1591C-405E-376E-87E9-B264610EBF49> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8b7e9000 -     0x7fff8b7edfff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8b7ee000 -     0x7fff8b800fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
        0x7fff8b8aa000 -     0x7fff8ba08ffb  com.apple.avfoundation (2.0 - 889.102) <7D2E62AF-CDEA-394C-84B2-656629F00197> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8bb26000 -     0x7fff8bb2afff  com.apple.IOAccelerator (156.6.1 - 156.6.1) <E32D8658-9C8A-338F-93F0-A03DE48295B8> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
        0x7fff8bb2d000 -     0x7fff8bb2efff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff8bb2f000 -     0x7fff8bcdfff7  com.apple.QuartzCore (1.10 - 361.15) <72A78C43-30DF-3748-9015-4B28119DB27B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8bce0000 -     0x7fff8bcfafff  com.apple.AppleVPAFramework (1.2.10 - 1.2.10) <DC3D5A44-AB1E-32A9-9D22-FC922B52346A> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8bcfb000 -     0x7fff8c845ff7  com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8c846000 -     0x7fff8c86efff  libxpc.dylib (559.10.3) <876216DC-D5D3-381E-8AF9-49AE464E5107> /usr/lib/system/libxpc.dylib
        0x7fff8c8a5000 -     0x7fff8c8ddfff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8d220000 -     0x7fff8d222ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff8d223000 -     0x7fff8d24efff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8d24f000 -     0x7fff8d56afcf  com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8d56b000 -     0x7fff8d573fe7  libcldcpuengine.dylib (2.4.5) <F9EF8060-5E40-3E88-BC38-7452649672B2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8d574000 -     0x7fff8d5c2fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff8d5c3000 -     0x7fff8d603ff7  libGLImage.dylib (11.1.1) <3986BFA3-4F55-380F-B01D-91BA9785D70C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8d630000 -     0x7fff8d639fff  libGFXShared.dylib (11.1.1) <7AE7D152-597E-3B27-A52C-8DA76760B61C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8d63a000 -     0x7fff8d63ffff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d640000 -     0x7fff8d64aff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8d64b000 -     0x7fff8d686fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8d687000 -     0x7fff8d689fff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8d6b1000 -     0x7fff8d6b1ff7  liblaunch.dylib (559.10.3) <DFCDEBDF-8247-3DC7-9879-E7E497DDA4B4> /usr/lib/system/liblaunch.dylib
        0x7fff8d6b2000 -     0x7fff8d6e2ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8d6e8000 -     0x7fff8d822ff7  com.apple.ImageIO.framework (3.3.0 - 1232) <A9682E9F-4917-3926-A035-7FEE7FF9D2AB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8e7db000 -     0x7fff8e836fef  libTIFF.dylib (1232) <56D444B7-A37A-30BC-80B5-5E702FFAAAAB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8e837000 -     0x7fff8eaa1fff  com.apple.imageKit (2.6.1 - 840) <8C974E7D-2258-3FBC-948C-D93226F42DCA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8eaa2000 -     0x7fff8eb36fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8eb37000 -     0x7fff8eb9eff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8eb9f000 -     0x7fff8ebc6ff7  com.apple.shortcut (2.13 - 2.13) <0BA7C57A-C2FC-3DFC-83B2-CE6C33770B52> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff8ebc7000 -     0x7fff8ebf2ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff8ebf3000 -     0x7fff8f000ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8f031000 -     0x7fff8f031fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8f032000 -     0x7fff8f176ff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8f177000 -     0x7fff8f17ffff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8f180000 -     0x7fff8f4b3fff  libmecabra.dylib (666.2) <F757CABA-3EDB-3ABA-A378-A7C574EA233B> /usr/lib/libmecabra.dylib
        0x7fff8f4b4000 -     0x7fff8f4b8fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff8f4bb000 -     0x7fff8f649fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8f64a000 -     0x7fff8f685fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8f69b000 -     0x7fff8f6eaff7  com.apple.opencl (2.4.2 - 2.4.2) <D16CFDE6-B5F7-301A-995E-8B583D8C675A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8f6eb000 -     0x7fff8f6f4fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8f742000 -     0x7fff8f75bff7  com.apple.CFOpenDirectory (10.10 - 187) <0F9747EF-12A3-3694-984D-0B8352CA6C0F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8f839000 -     0x7fff8f839fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8f83f000 -     0x7fff8f8dedf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff8f8df000 -     0x7fff8fa8efff  GLEngine (11.1.1) <72892F1E-5ED5-3733-BE77-FC37CF69D801> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff8fab8000 -     0x7fff8fad5ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8fb06000 -     0x7fff8fb20ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8fb21000 -     0x7fff8fc05fff  libcrypto.0.9.8.dylib (52.10.1) <2A2924DE-63FB-37F6-B102-84D69240675B> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8fc1c000 -     0x7fff8fd3eff7  com.apple.LaunchServices (644.12.4 - 644.12.4) <59E909E8-ED4A-33EA-B85D-D409BADDF854> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8fd3f000 -     0x7fff8fd4bff7  libGPUSupportMercury.dylib (11.1.1) <D5AE513E-99FB-3D22-8FFC-9DAA26407DA3> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
        0x7fff8fd4c000 -     0x7fff8fd4fff7  libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
        0x7fff8fd50000 -     0x7fff8fd54fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8fd55000 -     0x7fff8fd55ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8fd6f000 -     0x7fff8fd9bfff  libsandbox.1.dylib (358.1.1) <BA84BDAF-2C59-3CED-8970-9FB029BD7442> /usr/lib/libsandbox.1.dylib
        0x7fff8fd9c000 -     0x7fff8fd9ffff  com.apple.xpc.ServiceManagement (1.0 - 1) <5EFD45BF-B0CD-39F2-8232-6BA33E63E5D4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8fda0000 -     0x7fff8fda7ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8fda8000 -     0x7fff8fdb3fff  com.apple.AppSandbox (4.0 - 238.10.1) <4C171026-DC9A-3CEE-AB42-110859674F61> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8fdb4000 -     0x7fff8fe00ff7  com.apple.corelocation (1486.17 - 1615.21.1) <B81BC475-E215-3491-A750-8B23F05ABF5B> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8fe01000 -     0x7fff8ff0ffff  com.apple.desktopservices (1.9.2 - 1.9.2) <8670FD3B-8A5B-3D84-B21E-DF21140545A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8ff10000 -     0x7fff8ff91ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8ffbf000 -     0x7fff8ffc7ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff90001000 -     0x7fff90008fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff900e7000 -     0x7fff900feff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff900ff000 -     0x7fff902f946f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
        0x7fff902fa000 -     0x7fff902fcff3  com.apple.SafariServices.framework (10600 - 10600.4.10.7) <5EEAF0C0-077D-3377-89F6-C0F33938F1E0> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff902fd000 -     0x7fff90305fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff90c4c000 -     0x7fff90c5aff7  com.apple.opengl (11.1.1 - 11.1.1) <F79F5FFF-372E-329E-81FB-EE9BD6A2A7A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff90c5c000 -     0x7fff90c6eff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff90c6f000 -     0x7fff90c72ff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff90d0c000 -     0x7fff90d1dff3  libsystem_coretls.dylib (35.10.1) <3EAED90A-7AA0-323C-A52B-E16477981D59> /usr/lib/system/libsystem_coretls.dylib
        0x7fff90d1e000 -     0x7fff90d25fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff90d26000 -     0x7fff90d28ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff90d86000 -     0x7fff90dccff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff90dcd000 -     0x7fff90dd6ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff90dd7000 -     0x7fff90e01fff  GLRendererFloat (11.1.1) <53C3F7C6-CC53-3287-9853-DA46FA7587E7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
        0x7fff90e02000 -     0x7fff90e76ff3  com.apple.securityfoundation (6.0 - 55126) <DEC91795-7754-334A-8CDA-B429F41B922D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff90e77000 -     0x7fff90f9fff7  com.apple.coreui (2.1 - 305.6.1) <B56EC212-73C1-326F-B78C-EB856386296E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff91347000 -     0x7fff9141dff3  com.apple.DiskImagesFramework (10.10.1 - 396) <E7478685-E829-372A-A945-A512730D3312> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff9141e000 -     0x7fff91439ff7  com.apple.aps.framework (4.0 - 4.0) <F3C3C246-101E-3E81-9608-D2D6E9352532> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff91496000 -     0x7fff914b2ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff914e6000 -     0x7fff9157bff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff91585000 -     0x7fff91599ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff916fc000 -     0x7fff9176affb  com.apple.Heimdal (4.0 - 2.0) <3E5DA653-A343-3257-ADE1-BA879BAE280F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9176b000 -     0x7fff918b1fef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
        0x7fff919b3000 -     0x7fff919befff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff919bf000 -     0x7fff919ccfff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff919cd000 -     0x7fff919cffff  libCVMSPluginSupport.dylib (11.1.1) <DA0706C5-F02A-3F3D-8EBA-18C04313CA2C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff919d0000 -     0x7fff919fdfff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff919fe000 -     0x7fff91a3eff7  com.apple.CloudDocs (1.0 - 280.6) <C1179CEF-E058-3E16-BF90-C059FE7CDE77> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff91a3f000 -     0x7fff91f2bff7  com.apple.MediaToolbox (1.0 - 1562.107) <F0888EAC-FB6D-35C5-B2FB-AC9A72FE4650> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff91f2c000 -     0x7fff9205eff7  com.apple.MediaControlSender (2.0 - 215.15) <454420EB-E6FE-3074-8D58-67471E1D61E5> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff920a1000 -     0x7fff92150fe7  libvMisc.dylib (516) <A82F9FE8-70ED-3BC9-9184-1A2B9EE3C010> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff9225a000 -     0x7fff922f8fff  com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff9232c000 -     0x7fff92354fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff92355000 -     0x7fff9239eff3  com.apple.HIServices (1.22 - 520.12) <8EAC82AB-6A7D-3606-AF6F-60A9410D1278> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff9239f000 -     0x7fff923cffff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff923d0000 -     0x7fff923ecff7  com.apple.pluginkit.framework (1.0 - 1) <FEB6FF0B-A688-37C9-93CF-E886E7ED3141> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff923ed000 -     0x7fff923effff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff923f0000 -     0x7fff92406ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <3EAFC9D1-8D7C-30CF-92C7-903A5C241763> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff92407000 -     0x7fff92476fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff92477000 -     0x7fff92503ff7  libsystem_c.dylib (1044.10.1) <199ED5EB-77A1-3D43-AA51-81779CE0A742> /usr/lib/system/libsystem_c.dylib
        0x7fff92545000 -     0x7fff9257fffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff92580000 -     0x7fff92aa9ff7  com.apple.QuartzComposer (5.1 - 325.1) <ABCC8B0F-9961-37D3-B231-9F2B9E027411> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff92aaa000 -     0x7fff92e81fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff92e82000 -     0x7fff92ecffff  com.apple.ImageCaptureCore (6.0 - 6.0) <C2DED299-7E2B-3501-9FD6-74892A7484B3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff92ee8000 -     0x7fff92f13fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff92f14000 -     0x7fff92f16ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff92f17000 -     0x7fff92f19fff  com.apple.SecCodeWrapper (4.0 - 238.10.1) <8DAF71DB-C99A-3B72-A639-2C8CBEA84B93> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff92f1e000 -     0x7fff92f1efff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff92f53000 -     0x7fff93281fff  com.apple.Foundation (6.9 - 1152.14) <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff93282000 -     0x7fff93362fff  com.apple.QuickLookUIFramework (5.0 - 675.13) <A4B5E57E-F363-3C63-8861-4DCEAC3FB23B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff935dc000 -     0x7fff935e4ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff935e5000 -     0x7fff93608fff  com.apple.Sharing (328.3.2 - 328.3.2) <F555679F-1CD1-3EB2-8E01-FCB80EF07330> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff93609000 -     0x7fff9361fff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff93620000 -     0x7fff93671ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff93672000 -     0x7fff93675ff7  com.apple.AppleSystemInfo (3.1 - 3.1) <B40B3737-42A5-3D57-9E87-D3905EE5BADB> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff93676000 -     0x7fff93690ff7  libextension.dylib (55.1) <6D0CF094-85E8-3F5B-A3F1-25ECF60F80D9> /usr/lib/libextension.dylib
        0x7fff93691000 -     0x7fff93727ffb  com.apple.CoreMedia (1.0 - 1562.107) <FE18102D-8D7A-3500-A400-747AA8C0B3D0> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff93728000 -     0x7fff9381cfff  libFontParser.dylib (134.1) <EA8452DB-9221-3608-95BF-496F58106313> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9381d000 -     0x7fff9381ffff  libRadiance.dylib (1232) <9C2DBBDF-0F0B-36BF-84D0-13E0086F793A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff93820000 -     0x7fff93887ffb  com.apple.datadetectorscore (6.0 - 396.1.1) <80379385-A4EC-3F9B-AFED-9B1DF781943D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff93888000 -     0x7fff939b8fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff939b9000 -     0x7fff939ecff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff93a0c000 -     0x7fff93a0efff  com.apple.loginsupport (1.0 - 1) <21DBC18C-F260-39FC-B52F-04A5AA84523A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff93a0f000 -     0x7fff93d7afff  com.apple.VideoToolbox (1.0 - 1562.107) <2EAFB008-7F19-34C2-A5A6-43B4CD35FEF3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff940ca000 -     0x7fff94158ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff94159000 -     0x7fff941eaff7  com.apple.cloudkit.CloudKit (259.2.5 - 259.2.5) <241EB647-C917-32F7-956A-6E505827048C> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff94482000 -     0x7fff9448eff7  com.apple.OpenDirectory (10.10 - 187) <8B98ECCB-7EFA-3A58-BD2B-A0835D869B1A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff9448f000 -     0x7fff948bffff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff949a0000 -     0x7fff949d2ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff949d3000 -     0x7fff949d8ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff949d9000 -     0x7fff949f9fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff949fa000 -     0x7fff949fafff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff949fb000 -     0x7fff94a03ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff94a9d000 -     0x7fff94da1ffb  com.apple.HIToolbox (2.1.1 - 757.3) <D827FC03-5668-3AA4-AF0E-46EEF7358EEA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff94e19000 -     0x7fff94e2bff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff94e2c000 -     0x7fff94e41ff7  com.apple.AppContainer (4.0 - 238.10.1) <24A43E31-BCD3-32DB-8023-DE7EEA912E89> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff94e42000 -     0x7fff94eb6fff  com.apple.ApplicationServices.ATS (360 - 375) <2824D38D-460D-353C-9D18-499B4BEEABB7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff94eb7000 -     0x7fff94ec2fff  libGL.dylib (11.1.1) <1F0EB9FB-4B0F-349B-80DD-93FD3F45B9C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff94ece000 -     0x7fff94ed3ff7  libsystem_stats.dylib (163.10.18) <9B8CCF24-DDDB-399A-9237-4BEC225D2E8C> /usr/lib/system/libsystem_stats.dylib
        0x7fff94ed4000 -     0x7fff94ed9ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff94eda000 -     0x7fff94f5cfff  com.apple.PerformanceAnalysis (1.0 - 1) <94F08B1A-F6AF-38D5-BE92-4FED34742966> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff94f5d000 -     0x7fff94fb9fff  com.apple.QuickLookFramework (5.0 - 675.13) <70196DC4-E71B-37E8-AA15-B7FD21EC1012> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff94fff000 -     0x7fff95002fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff95003000 -     0x7fff95003fff  com.apple.Carbon (154 - 157) <0DF27AD6-ED64-34D7-825D-65297D276652> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff95004000 -     0x7fff9501eff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff9501f000 -     0x7fff9503efff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff9503f000 -     0x7fff95046fff  libCGCMS.A.dylib (775.16) <8A173E74-7123-35F1-B160-853528C144ED> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff9504b000 -     0x7fff9504dffb  libCGXType.A.dylib (775.16) <B2DC78CA-179F-39A7-8D0B-873DC0ACFE96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff95109000 -     0x7fff9561cff3  com.apple.JavaScriptCore (10600 - 10600.3.13) <C0C3246C-D26F-3440-AC75-81CFFA4F9C91> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff95646000 -     0x7fff95650ff7  com.apple.CrashReporterSupport (10.10 - 629) <4BCAA6B5-EC7F-365F-9D3F-BC483B7E956C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff95979000 -     0x7fff95993ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff95994000 -     0x7fff959bcffb  libRIP.A.dylib (775.16) <7711F7A7-1813-3024-AE42-75CA7C5422B7> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff959bd000 -     0x7fff95a78ff7  com.apple.DiscRecording (9.0 - 9000.4.2) <9BB46993-311A-3F2E-BD77-3CBEFB71C1F0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff95a79000 -     0x7fff95a9efff  libPng.dylib (1232) <10DC46CC-A4FD-3B1A-AA23-E4F12938BC13> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff95d1b000 -     0x7fff95dacff7  libCoreStorage.dylib (471.10.6) <892DEEE7-C8C7-35EA-931D-FF9862BDEB2B> /usr/lib/libCoreStorage.dylib
        0x7fff95db9000 -     0x7fff95deafff  libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
        0x7fff95e64000 -     0x7fff95eaaffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff95fe9000 -     0x7fff95febfff  com.apple.EFILogin (2.0 - 2) <39895ACB-E756-342C-ABE5-DB7100EF0A69> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff96026000 -     0x7fff9685ffe3  com.apple.CoreGraphics (1.600.0 - 775.16) <A7BA30E6-A15F-3E48-9718-3837949A0E2E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff9686a000 -     0x7fff969f9fff  libGLProgrammability.dylib (11.1.1) <90DE65E5-77DF-3646-B8E8-0462E240800A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff969fa000 -     0x7fff96a1efef  libJPEG.dylib (1232) <638302B6-369F-3C50-BF63-F8D19C393F47> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff96a1f000 -     0x7fff96aa8fff  com.apple.CoreSymbolication (3.1 - 57020) <FDF8F348-164D-38F9-90EB-F42585DD2C77> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff96aa9000 -     0x7fff96aa9fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <2C8AF258-4F11-3BEC-A826-22D7199B3975> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff96b00000 -     0x7fff96de7ffb  com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) <FD87F83F-301A-3BD6-8262-5692FC1B4457> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff96e1e000 -     0x7fff96e39ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff96e3a000 -     0x7fff96e4dff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff96e73000 -     0x7fff96ee0fff  libType1Scaler.dylib (114.1.9) <3DDDD046-720D-33CA-A006-141298B0F8A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
        0x7fff96ee1000 -     0x7fff96ee2fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff96ee3000 -     0x7fff96ee4fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff96ee7000 -     0x7fff96eedfff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff96eee000 -     0x7fff96f94ff7  com.apple.PDFKit (3.1 - 3.1) <D2D019DD-5DCA-3C0D-B9B7-0F919A6CD1DD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff96f95000 -     0x7fff970a7ff7  libvDSP.dylib (516) <151B3CCB-77D3-3715-A3D0-7C74CD5C7FFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff97152000 -     0x7fff97163fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff97164000 -     0x7fff97254fef  libJP2.dylib (1232) <13BFC6A7-E24E-3F29-AD3C-E2D382A1223A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff97255000 -     0x7fff974d0ff7  com.apple.CoreData (111 - 526.1) <DC4F037B-B7F4-381A-B939-4414489D76BF> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff975f1000 -     0x7fff9761ffff  com.apple.CoreServicesInternal (221.2.2 - 221.2.2) <16F7A7F1-CF1D-35AD-A91F-690A814048DF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff97620000 -     0x7fff97621fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff97622000 -     0x7fff97622fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <9D749502-A228-3BF1-B52F-A182DEEB2C4D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff97626000 -     0x7fff97642fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff97739000 -     0x7fff97739fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff9773a000 -     0x7fff97747ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff97748000 -     0x7fff97a17ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff97a83000 -     0x7fff97a85ff7  com.apple.securityhi (9.0 - 55006) <1F40ECF1-6AEF-3E64-9DAD-ADC646CCEA98> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff980f6000 -     0x7fff980fbffb  libheimdal-asn1.dylib (398.10.1) <A7B6447A-6680-3625-83C3-993B58D5C43F> /usr/lib/libheimdal-asn1.dylib
        0x7fff980fc000 -     0x7fff9814fffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff9819d000 -     0x7fff981c6ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff98204000 -     0x7fff9827afe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff9827b000 -     0x7fff9827cfff  libSystem.B.dylib (1213) <90B107BC-FF74-32CC-B1CF-4E02F544D957> /usr/lib/libSystem.B.dylib
        0x7fff98544000 -     0x7fff9854fff7  libcsfde.dylib (471.10.6) <E1BF5816-3CE6-30CE-B3EE-F68CB6BA1378> /usr/lib/libcsfde.dylib
        0x7fff98550000 -     0x7fff98587ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <D22234AA-8B30-3010-8CF0-67516D52CC33> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff985ad000 -     0x7fff985bcfff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff985ca000 -     0x7fff986bcff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff986bd000 -     0x7fff986c3ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff9880d000 -     0x7fff9882efff  com.apple.framework.Apple80211 (10.1 - 1010.64) <A7378C4B-FFD3-35B9-93E8-0534A2A7B51F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff9882f000 -     0x7fff98833fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff98834000 -     0x7fff98926fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff9897f000 -     0x7fff98a03fff  com.apple.ViewBridge (103.1 - 103.1) <BABD572C-58AA-362C-B246-D45DCD990D16> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff98a04000 -     0x7fff98a50ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff98a94000 -     0x7fff98a98fff  libspindump.dylib (182) <085978DC-A34D-3B72-BC7B-025C35A0A373> /usr/lib/libspindump.dylib
        0x7fff98b61000 -     0x7fff98b91fff  com.apple.GSS (4.0 - 2.0) <FD154E62-F4CF-339D-B66C-AF4AED6A94A6> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff98b92000 -     0x7fff98c52fff  com.apple.backup.framework (1.6.2 - 1.6.2) <63E8CA47-B7B8-3A63-B505-D1622CE52527> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff98c53000 -     0x7fff98ca0ff3  com.apple.CoreMediaIO (601.0 - 4749) <ED45B200-08A1-3E72-8DE9-9901C94A7BCA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff98ca1000 -     0x7fff98d19ff7  com.apple.SystemConfiguration (1.14 - 1.14) <E0495F7D-5624-3EF7-B7E5-DA0EE708B6E4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff98d1a000 -     0x7fff98d6efff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff98d6f000 -     0x7fff98d72fff  libCGXCoreImage.A.dylib (775.16) <EF68A9B3-6A4E-3923-BEEA-29AA98D8023F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
        0x7fff98d73000 -     0x7fff98d79ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff98d7a000 -     0x7fff98dcbff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <56AA4060-63DF-3DF0-AB8A-880D0DD6F075> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff98e1c000 -     0x7fff98e28ff7  com.apple.HelpData (2.1.4 - 90) <471200E4-1D51-3D8C-A956-A52F8EB7B552> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff98e29000 -     0x7fff98e2bfff  libsystem_configuration.dylib (699.1.5) <5E14864E-089A-3D84-85A4-980B776427A8> /usr/lib/system/libsystem_configuration.dylib
        0x7fff98e2c000 -     0x7fff98e30fff  com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff98ef3000 -     0x7fff98f10fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73> /usr/lib/system/libsystem_kernel.dylib
        0x7fff98f29000 -     0x7fff98f2cfff  com.apple.IOSurface (97.0.1 - 97.0.1) <0C9ED49D-AADB-3CB9-9A11-F5D765253548> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff98f2d000 -     0x7fff98f2dfff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff98f2e000 -     0x7fff99113ff3  libicucore.A.dylib (531.31) <B08E00D5-13C6-3391-AB3A-8DE693D3B42E> /usr/lib/libicucore.A.dylib
        0x7fff99114000 -     0x7fff99124ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff99125000 -     0x7fff9912efff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
        0x7fff9912f000 -     0x7fff991acfff  com.apple.CoreServices.OSServices (640.3 - 640.3) <84A91B00-0ED4-350C-B30A-AEAE437AE02A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff991af000 -     0x7fff993b2ff3  com.apple.CFNetwork (720.2.4 - 720.2.4) <E550C671-930F-3B12-8798-23898473E179> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff993b3000 -     0x7fff993c0ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff993c1000 -     0x7fff993e7ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff993e8000 -     0x7fff99553ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff99582000 -     0x7fff9958dff7  libkxld.dylib (2782.10.72) <68E07A32-28F5-3FBB-9D74-00B4F53C2FD4> /usr/lib/system/libkxld.dylib
        0x7fff9958e000 -     0x7fff995b2ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff995b3000 -     0x7fff995bbffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff995bc000 -     0x7fff99864ff7  com.apple.RawCamera.bundle (6.03 - 777) <127AB12C-190F-31BC-A0D9-A127004F7017> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff99865000 -     0x7fff9987efff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff9987f000 -     0x7fff99880ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff99881000 -     0x7fff99882ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff99883000 -     0x7fff998d0ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff99900000 -     0x7fff99906fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff99907000 -     0x7fff99948fff  libGLU.dylib (11.1.1) <E9ADAD30-0133-320D-A60E-D1A7F91A7795> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff99949000 -     0x7fff99981ffb  libsystem_network.dylib (411.1) <2EC3A005-473F-3C36-A665-F88B5BACC7F0> /usr/lib/system/libsystem_network.dylib
        0x7fff99982000 -     0x7fff99983ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff99984000 -     0x7fff99984ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff99985000 -     0x7fff99990ff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <7DF3C68C-B219-3E13-AE72-24B8606A1560> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framewo

  • UI application crash in Traditional Chinese locale

    Hi Forum
    I am requested an assistance on this behavior; our Java based UI applications crash on some Solaris release
    REPRODUCIBILITY:
    I have observed the crash on the following machines; always reproducible :
    SunOS 5.10 Generic_138888-01 sun4v sparc SUNW,SPARC-Enterprise-T5120
    SunOS 5.10 Generic_127127-11 sun4v sparc SUNW,SPARC-Enterprise-T2000
    However thigs work good on the following release; never reproducible:
    SunOS 5.10 Generic_144488-04 sun4u sparc SUNW,Sun-Fire-V440 Solaris
    QUERY:
    The errors point to libX11.so.....Is anybody aware of known i18n issue with SunOS/machines?
    CRASH LOGS (AdminTool is a priopriatery application):
    /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC> ./Application
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xe6caf598, pid=25955, tid=32
    # JRE version: 6.0_24-b07
    # Java VM: Java HotSpot(TM) Server VM (19.1-b02 mixed mode solaris-sparc )
    # Problematic frame:
    # C 0xe6caf598
    # An error report file with more information is saved as:
    # /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/dmp/bin/hs_err_pid25955.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Abort (core dumped)
    /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC> cat /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/dmp/bin/hs_err_pid25955.log
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xe6caf598, pid=25955, tid=32
    # JRE version: 6.0_24-b07
    # Java VM: Java HotSpot(TM) Server VM (19.1-b02 mixed mode solaris-sparc )
    # Problematic frame:
    # C 0xe6caf598
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    T H R E A D
    Current thread (0x00601000): JavaThread "AWT-XAWT" daemon [_thread_in_native, id=32, stack(0xe5880000,0xe5900000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0xe6caf598
    Registers:
    O0=0x005558f0 O1=0xe58fefb0 O2=0xe5ce0bc8 O3=0x00000ef4
    O4=0x00000c00 O5=0x00000000 O6=0xe58fef50 O7=0xe5bc0a04
    G1=0x00000000 G2=0x00601000 G3=0x00000004 G4=0xfee3cf70
    G5=0x00040f6c G6=0x00000000 G7=0xfee9f200 Y=0x00000000
    PC=0xe6caf598 nPC=0xe6caf59c
    Register to memory mapping:
    O0=0x005558f0
    0x005558f0 is pointing to unknown location
    O1=0xe58fefb0
    0xe58fefb0 is pointing into the stack for thread: 0x00601000
    "AWT-XAWT" daemon prio=3 tid=0x00601000 nid=0x20 runnable [0xe58ff000]
    java.lang.Thread.State: RUNNABLE
    O2=0xe5ce0bc8
    0xe5ce0bc8: _XErrorFunction+0 in /usr/openwin/lib/libX11.so.4 at 0xe5b80000
    O3=0x00000ef4
    0x00000ef4 is pointing to unknown location
    O4=0x00000c00
    0x00000c00 is pointing to unknown location
    O5=0x00000000
    0x00000000 is pointing to unknown location
    O6=0xe58fef50
    0xe58fef50 is pointing into the stack for thread: 0x00601000
    "AWT-XAWT" daemon prio=3 tid=0x00601000 nid=0x20 runnable [0xe58ff000]
    java.lang.Thread.State: RUNNABLE
    O7=0xe5bc0a04
    0xe5bc0a04: _XError+0x140 in /usr/openwin/lib/libX11.so.4 at 0xe5b80000
    G1=0x00000000
    0x00000000 is pointing to unknown location
    G2=0x00601000
    "AWT-XAWT" daemon prio=3 tid=0x00601000 nid=0x20 runnable [0xe58ff000]
    java.lang.Thread.State: RUNNABLE
    G3=0x00000004
    0x00000004 is pointing to unknown location
    G4=0xfee3cf70
    0xfee3cf70: __1cHnmethodG__vtbl_+0xcc8 in /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/server/libjvm.so at 0xfe400000
    G5=0x00040f6c
    0x00040f6c is pointing to unknown location
    G6=0x00000000
    0x00000000 is pointing to unknown location
    G7=0xfee9f200
    0xfee9f200 is pointing to unknown location
    Top of Stack: (sp=0xe58fef50)
    0xe58fef50: 00000000 00000000 00000020 e6caf598
    0xe58fef60: 00000ef4 00000c00 00000014 e5cd4000
    0xe58fef70: 005558f0 e58ff0d8 00555fb4 04400017
    0xe58fef80: 00000003 e5ce0bc8 e58ff010 e5ba0144
    0xe58fef90: 00000000 00000034 00000000 00000000
    0xe58fefa0: 00000000 00000000 00000000 00000000
    0xe58fefb0: 00000000 005558f0 04400017 00000654
    0xe58fefc0: 03140028 00000000 00000004 00000020
    Instructions: (pc=0xe6caf598)
    0xe6caf588:
    [error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xb]
    Stack: [0xe5880000,0xe5900000], sp=0xe58fef50, free space=507k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0xe6caf598
    C [libX11.so.4+0x2014c] _XReply+0x42c
    C [libX11.so.4+0x2aef8] XGetWindowProperty+0xa8
    C [libmawt.so+0xa90c] Java_sun_awt_X11_XlibWrapper_XGetWindowProperty+0x50
    j sun.awt.X11.XlibWrapper.XGetWindowProperty(JJJJJJJJJJJJ)I+280241
    j sun.awt.X11.XlibWrapper.XGetWindowProperty(JJJJJJJJJJJJ)I+0
    j sun.awt.X11.WindowPropertyGetter.execute(Lsun/awt/X11/XErrorHandler;)I+150
    j sun.awt.X11.XDnDDropTargetProtocol.isProtocolSupported(J)Z+40
    j sun.awt.X11.XDropTargetRegistry.updateEmbedderDropSite(J)V+69
    j sun.awt.X11.XDropTargetEventProcessor.doProcessEvent(Lsun/awt/X11/XEvent;)Z+83
    j sun.awt.X11.XDropTargetEventProcessor.processEvent(Lsun/awt/X11/XEvent;)Z+10
    j sun.awt.X11.XToolkit.run(Z)V+120
    j sun.awt.X11.XToolkit.run()V+5
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [libjvm.so+0x16b1a4]
    V [libjvm.so+0x52e888]
    V [libjvm.so+0x1ff2cc]
    V [libjvm.so+0x212228]
    V [libjvm.so+0x858bf8]
    V [libjvm.so+0x77d894]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.awt.X11.XlibWrapper.XGetWindowProperty(JJJJJJJJJJJJ)I+0
    j sun.awt.X11.WindowPropertyGetter.execute(Lsun/awt/X11/XErrorHandler;)I+150
    j sun.awt.X11.XDnDDropTargetProtocol.isProtocolSupported(J)Z+40
    j sun.awt.X11.XDropTargetRegistry.updateEmbedderDropSite(J)V+69
    j sun.awt.X11.XDropTargetEventProcessor.doProcessEvent(Lsun/awt/X11/XEvent;)Z+83
    j sun.awt.X11.XDropTargetEventProcessor.processEvent(Lsun/awt/X11/XEvent;)Z+10
    j sun.awt.X11.XToolkit.run(Z)V+120
    j sun.awt.X11.XToolkit.run()V+5
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    P R O C E S S
    Java Threads: ( => current thread )
    0x00385c00 JavaThread "MIM Listener" [_thread_in_native, id=52, stack(0xe4b80000,0xe4c00000)]
    0x01887400 JavaThread "MIMServer" [_thread_in_native, id=51, stack(0xe4c80000,0xe4d00000)]
    0x01564800 JavaThread "TimerQueue" daemon [_thread_blocked, id=50, stack(0xe4d80000,0xe4e00000)]
    0x0078a800 JavaThread "p: default-threadpool; w: 5" daemon [_thread_blocked, id=49, stack(0xe4e80000,0xe4f00000)]
    0x00716c00 JavaThread "p: default-threadpool; w: 4" daemon [_thread_blocked, id=48, stack(0xe4f80000,0xe5000000)]
    0x0103a800 JavaThread "p: default-threadpool; w: 3" daemon [_thread_in_native, id=47, stack(0xe5080000,0xe5100000)]
    0x01642000 JavaThread "p: default-threadpool; w: 2" daemon [_thread_in_native, id=46, stack(0xe5180000,0xe5200000)]
    0x002bc400 JavaThread "p: default-threadpool; w: 1" daemon [_thread_in_native, id=45, stack(0xe5280000,0xe5300000)]
    0x00709400 JavaThread "SelectorThread" daemon [_thread_in_native, id=44, stack(0xe5380000,0xe5400000)]
    0x00729000 JavaThread "KeywordModel Background Merge" daemon [_thread_blocked, id=42, stack(0xe5680000,0xe5700000)]
    0x00da8000 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=41, stack(0xe5480000,0xe5500000)]
    0x00da7800 JavaThread "AWT-Shutdown" [_thread_blocked, id=40, stack(0xe5580000,0xe5600000)]
    0x00635800 JavaThread "Timer-0" daemon [_thread_blocked, id=33, stack(0xe5780000,0xe5800000)]
    =>0x00601000 JavaThread "AWT-XAWT" daemon [_thread_in_native, id=32, stack(0xe5880000,0xe5900000)]
    0x005a3c00 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=31, stack(0xe5980000,0xe5a00000)]
    0x00239800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=29, stack(0xe6000000,0xe6080000)]
    0x00237400 JavaThread "CompilerThread1" daemon [_thread_blocked, id=28, stack(0xe6100000,0xe6180000)]
    0x00234c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=27, stack(0xe6200000,0xe6280000)]
    0x00233400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=26, stack(0xe6300000,0xe6380000)]
    0x00223800 JavaThread "Finalizer" daemon [_thread_blocked, id=25, stack(0xe6680000,0xe6700000)]
    0x0021e800 JavaThread "Reference Handler" daemon [_thread_blocked, id=24, stack(0xe6780000,0xe6800000)]
    0x00033800 JavaThread "main" [_thread_blocked, id=2, stack(0xfe300000,0xfe380000)]
    Other Threads:
    0x0021ac00 VMThread [stack: 0xe6880000,0xe6900000] [id=23]
    0x0024bc00 WatcherThread [stack: 0xe5f00000,0xe5f80000] [id=30]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 28544K, used 9120K [0xf66b0000, 0xf95a0000, 0xfbc00000)
    eden space 22656K, 33% used [0xf66b0000,0xf6e27958,0xf7cd0000)
    from space 5888K, 25% used [0xf7cd0000,0xf7e406f0,0xf8290000)
    to space 5888K, 0% used [0xf8fe0000,0xf8fe0000,0xf95a0000)
    PSOldGen total 21888K, used 13252K [0xebc00000, 0xed160000, 0xf66b0000)
    object space 21888K, 60% used [0xebc00000,0xec8f1288,0xed160000)
    PSPermGen total 23808K, used 23787K [0xe7c00000, 0xe9340000, 0xebc00000)
    object space 23808K, 99% used [0xe7c00000,0xe933af00,0xe9340000)
    Dynamic libraries:
    0x00010000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/bin/java
    0xff3a0000 /usr/lib/lwp/libthread.so.1
    0xff370000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/bin/../lib/sparc/jli/libjli.so
    0xff350000 /usr/lib/libdl.so.1
    0xff200000 /usr/lib/libc.so.1
    0xff390000 /platform/SUNW,SPARC-Enterprise-T5120/lib/libc_psr.so.1
    0xfe400000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/server/libjvm.so
    0xff1d0000 /usr/lib/libsocket.so.1
    0xff1f0000 /usr/lib/libsched.so.1
    0xff1b0000 /usr/lib/libm.so.1
    0xff180000 /usr/lib/libCrun.so.1
    0xff160000 /usr/lib/libdoor.so.1
    0xff080000 /usr/lib/libnsl.so.1
    0xfef80000 /usr/lib/libm.so.2
    0xff050000 /usr/lib/libscf.so.1
    0xff140000 /usr/lib/libuutil.so.1
    0xfef60000 /usr/lib/libgen.so.1
    0xfef30000 /usr/lib/libmd.so.1
    0xfef10000 /platform/SUNW,SPARC-Enterprise-T5120/lib/libmd_psr.so.1
    0xfeef0000 /usr/lib/libmp.so.2
    0xfe3d0000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/libverify.so
    0xfe390000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/libjava.so
    0xfe2e0000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/native_threads/libhpi.so
    0xfe290000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/libzip.so
    0xe6400000 /usr/lib/locale/zh_TW.UTF-8/zh_TW.UTF-8.so.3
    0xfe1d0000 /usr/lib/locale/zh_TW.UTF-8/methods_zh_TW.UTF-8.so.3
    0xe5d00000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/libawt.so
    0xfbda0000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/xawt/libmawt.so
    0xfbcc0000 /usr/lib/libXext.so.0
    0xe5b80000 /usr/lib/libX11.so.4
    0xfbc90000 /usr/lib/libXtst.so.1
    0xfbc60000 /usr/lib/libXi.so.5
    0xe5a80000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/libfontmanager.so
    0xe7ba0000 /usr/openwin/lib/locale/common/xlcUTF-8.so.2
    0xe78b0000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/libjpeg.so
    0xe77d0000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/libnet.so
    0xe77a0000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/libj2pkcs11.so
    0xe76d0000 /usr/lib/libpkcs11.so
    0xe7a90000 /usr/lib/libcryptoutil.so.1
    0xe76a0000 /usr/lib/security/pkcs11_kernel.so
    0xe75a0000 /usr/lib/security/pkcs11_softtoken_extra.so
    0xe7890000 /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/libnio.so
    0xe74e0000 /usr/lib/librt.so.1
    0xe74c0000 /usr/lib/libaio.so.1
    0xe74a0000 /usr/lib/libsendfile.so.1
    0xe73a0000 /usr/lib/iconv/UTF-8%UTF-32.so
    0xe72a0000 /usr/lib/iconv/UTF-32%UTF-8.so
    0xe6db0000 /usr/openwin/lib/locale/common/ximp40.so.2
    VM Arguments:
    jvm_args: -Xmx268435456 -Xms33554432
    java_command: com.zerog.lax.LAX /net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/dmp/bin/AdminTool.lax /tmp/env.properties.25955
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/dmp/jre
    PATH=/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/Update:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/options:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/dmp/bin:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/NCC/bin:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/pa/bin:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/bin:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/p2p/bin:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/va/gms/bin:/net/bhadra/bhadra3/OraHm11gr2clnt32/product/11.2.0/db/bin:/usr/openwin/bin:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/ThirdParty/perl/bin:/usr/local/bin:/usr/bin:/bin:/usr/ucb:.
    LD_LIBRARY_PATH=/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc/server:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/lib/sparc:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/jre/../lib/sparc:/usr/lib/lwp:/usr/lib:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/Lib:/usr/openwin/lib:/net/bhadra/bhadra3/OraHm11gr2clnt32/product/11.2.0/db/lib32:/net/bhadra/bhadra3/OraHm11gr2clnt32/product/11.2.0/db/lib:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/va/gms/lib:/net/tcsnas01/vol/nxdev/osihomes/neonnxa2TC/p2p/lib
    SHELL=/bin/csh
    DISPLAY=himalya:20
    HOSTTYPE=sun4
    OSTYPE=solaris
    MACHTYPE=sparc
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x8b1aa0], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGBUS: [libjvm.so+0x8b1aa0], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGFPE: [libjvm.so+0x1d21a4], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x1d21a4], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGXFSZ: [libjvm.so+0x1d21a4], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x1d21a4], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x78003c], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGHUP: [libjvm.so+0x78003c], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGINT: [libjvm.so+0x78003c], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x78003c], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIG39: [libjvm.so+0x783744], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIG40: [libjvm.so+0x1d21a4], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    S Y S T E M
    OS: Solaris 10 8/07 s10s_u4wos_12b SPARC
    Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 16 August 2007
    uname:SunOS 5.10 Generic_138888-01 sun4v (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 65536, AS infinity
    load average:1.62 1.14 1.06
    CPU:total 64 has_v8, has_v9, has_vis1, has_vis2, is_ultra3, is_sun4v, is_niagara1, is_niagara1_plus
    Memory: 8k page, physical 16646144k(445776k free)
    vm_info: Java HotSpot(TM) Server VM (19.1-b02) for solaris-sparc JRE (1.6.0_24-b07), built on Feb 2 2011 17:17:59 by "" with Workshop 5.8
    time: Mon Mar 5 12:54:14 2012
    elapsed time: 45 seconds

    Is it happening in zh_TW.UTF-8 only or is it reproducible in other (UTF-8 or legacy) locales too?

  • Applications crashes several times during startup.

    Nearly Everytime I opens an application the application crashes several times.
    Then I relaunces the application. Sometimes the program starts, other times I have to do the relaunch several time before the Application starts.
    This behavier has all Applications.
    The OS is just restored and it after the restore theese problems have started.
    Does anybody have had the same experience?
    Thanks in advance
    Peter

    First of all, make a complete backup of your system. Ideally, use Carbon Copy Cloner or SuperDuper to create a bootable HD. Check it works by booting from it, then remove this from your Mac and put it somewhere safe. If you are runnign Time Machine, then this will do at a pinch. But if you have an additional spare HD, use that instead.
    Then you need to check your HD. Boot from your Leopard DVD and use Disk Utility to check and repair your HD.
    If that doesn't fix it then there are 2 possibilities; it's account related, or it's system related.
    To test for account problems, create a brand new user account. Log in to it and see if the problem persists.
    If it does then it sounds like you have a bad install. I recommend an Archive and Install and then reinstalling your apps from DVD / fresh download.

  • Application Crashes Every time I Click the Path dropdown in the save....

    Here we go.....
    Every time I want to save in ANY appllication to a mounted server and click the path drop down in the save dialouge box my application crashes. I can save my files fine in column view but if I'm in list view my save dialouge box doesn't even show me the heirarchy of files either. So here is the error that I keep geting, maybe someone can make sense of it.
    Thanks
    Date/Time: 2007-10-31 16:43:26.933 -0500
    OS Version: 10.4.10 (Build 8R218)
    Report Version: 4
    Command: Illustrator CS
    Path: /Applications/Adobe Illustrator CS/Illustrator CS.app/Contents/MacOSClassic/Illustrator CS
    Parent: WindowServer [58]
    Version: 11.0 (11.0)
    PID: 208
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xfffffff0
    Thread 0 Crashed:
    0 com.apple.NavigationServices 0x931dc278 TNavNode::TNavNode[unified](TNavNode const&) + 0
    1 com.apple.NavigationServices 0x93216f60 std::vector<TNavNode, std::allocator<TNavNode> >::M_insert_aux(__gnu_cxx::__normaliterator<TNavNode*, std::vector<TNavNode, std::allocator<TNavNode> > >, TNavNode const&) + 240
    2 com.apple.NavigationServices 0x932062a4 TPathPopup::FillPopup() + 288
    3 com.apple.NavigationServices 0x93206b58 TPathPopup::Validate() + 36
    4 com.apple.NavigationServices 0x93206ec0 TPathPopup::MenuHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 92
    5 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    6 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    7 com.apple.HIToolbox 0x93295f08 SendEventToEventTargetWithOptions + 40
    8 com.apple.HIToolbox 0x9332e194 SendTrackingStatus(unsigned long, MenuData*, unsigned long, unsigned long, unsigned long, unsigned long, unsigned char) + 376
    9 com.apple.HIToolbox 0x934c28f8 SendBeginTracking(MenuData*, unsigned long, unsigned long, MenuSelectData*) + 64
    10 com.apple.HIToolbox 0x9332d1a0 SetupMenuTracking(MenuSelectData&, unsigned char, Point, double, MenuData*, unsigned long, Rect const*, Rect const*, GDevice**, Rect const*, __CFString const*) + 1280
    11 com.apple.HIToolbox 0x933670b8 PopUpMenuSelectCore(MenuData*, Point, double, Point, GDevice**, Rect const*, unsigned short, unsigned long, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 128
    12 com.apple.HIToolbox 0x93366fec _HandlePopUpMenuSelection5 + 364
    13 com.apple.HIToolbox 0x93452f60 HIPopupButton::TrackMenu() + 776
    14 com.apple.HIToolbox 0x93452c18 HIPopupButton::TrackSelfCommon(short, short*) + 60
    15 com.apple.HIToolbox 0x93452b94 HIPopupButton::TrackSelf(OpaqueEventRef*, short*) + 128
    16 com.apple.HIToolbox 0x932b96a0 HIView::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2196
    17 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    18 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    19 com.apple.HIToolbox 0x93295f08 SendEventToEventTargetWithOptions + 40
    20 com.apple.HIToolbox 0x9334e590 SendControlDefTrack(HIView*, CGPoint const&, unsigned long*, void ()(OpaqueControlRef, short), OpaqueEventRef*, short*) + 276
    21 com.apple.HIToolbox 0x9334e3e8 HIView::ClickInternal(CGPoint const&, unsigned long, void ()(OpaqueControlRef, short), OpaqueEventRef*, bool) + 156
    22 com.apple.HIToolbox 0x9332b248 HIView::ClickSelf(OpaqueEventRef*) + 296
    23 com.apple.HIToolbox 0x932ba810 HIView::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 6660
    24 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    25 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    26 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    27 com.apple.HIToolbox 0x9332afd8 HIView::Click(OpaqueEventRef*) + 280
    28 com.apple.HIToolbox 0x9332aea4 HIViewClick + 56
    29 com.apple.HIToolbox 0x9332ae50 HandleClickAsHIView + 156
    30 com.apple.HIToolbox 0x9332a7c4 HandleWindowClick + 516
    31 com.apple.HIToolbox 0x9332a254 HandleMouseEvent + 456
    32 com.apple.HIToolbox 0x932d92e4 StandardWindowEventHandler + 148
    33 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    34 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    35 com.apple.HIToolbox 0x932d5d5c CallNextEventHandler + 60
    36 com.apple.NavigationServices 0x931e2068 TBrowseDialog::EventWindowHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 1192
    37 com.apple.NavigationServices 0x931e1b90 TBrowseDialog::EventWindowHandlerDispatch(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 80
    38 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    39 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    40 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    41 com.apple.HIToolbox 0x93329224 HandleMouseEventForWindow(OpaqueWindowPtr*, OpaqueEventRef*, unsigned short) + 236
    42 com.apple.HIToolbox 0x9348c3dc HandleMouseEvent(OpaqueEventRef*) + 368
    43 com.apple.HIToolbox 0x9329d1fc ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 496
    44 com.apple.HIToolbox 0x93296b84 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    45 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    46 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    47 com.apple.HIToolbox 0x932ddc04 ToolboxEventDispatcher + 92
    48 com.apple.HIToolbox 0x9337ca04 TryEventDispatcher + 108
    49 com.apple.HIToolbox 0x9337c65c GetOrPeekEvent + 304
    50 com.apple.HIToolbox 0x9337c4b4 GetNextEventMatchingMask + 440
    51 com.apple.HIToolbox 0x9337c238 WNEInternal + 152
    52 com.apple.HIToolbox 0x9337c18c WaitNextEvent + 76
    53 com.apple.NavigationServices 0x931ecb3c TBrowseDialog::EventLoop() + 76
    54 com.apple.NavigationServices 0x931e3af4 TBrowseDialog::StartDialog() + 388
    55 com.apple.NavigationServices 0x931d1a14 _NavDialog::Run() + 132
    56 com.apple.NavigationServices 0x931d1948 NavDialogRun + 64
    57 Illustrator 0x028bcaec Modal__Q26cainav11PutMacUtilsFv + 476
    58 Illustrator 0x028bc690 Modal__Q26cainav9PutDialogFv + 144
    59 Illustrator 0x028bbd84 FileFormatPutFileMac_FPP7ArtworklP6FSSpecPPvPUcPCUcP13AIPutFileInfo + 276
    60 Illustrator 0x028bbc00 FileFormatPutFile__FPP7ArtworklP6FSSpecPPvPUcPCUcP13AIPutFileInfo + 16
    61 Illustrator 0x028bb834 FileFormatSaveAs__FPP7ArtworkP15CAIDocumentViewUcUcP16ActionParamValuePc + 1700
    62 Illustrator 0x02a4a0e4 CommandSaveAsEx__FP17CAIDocumentWindowUcP16ActionParamValuePc + 68
    63 Illustrator 0x02ab65cc CommandSaveAs__FP17CAIDocumentWindowP11CAIADMEvent + 28
    64 Illustrator 0x028f2688 DispatchCommand__15CAICommandClassCFP17CAIDocumentWindowP11CAIADMEvent + 56
    65 Illustrator 0x02168a00 CommandDo__FP11CAIADMEventUlss + 368
    66 Illustrator 0x02aad514 MenuEventHandler + 1828
    67 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    68 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    69 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    70 com.apple.HIToolbox 0x933157e8 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 380
    71 com.apple.HIToolbox 0x93345694 SendMenuItemSelectedEvent + 136
    72 com.apple.HIToolbox 0x9334559c FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long, unsigned long, unsigned char) + 144
    73 com.apple.HIToolbox 0x9332ca48 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 404
    74 com.apple.HIToolbox 0x9332c530 MenuSelect + 100
    75 com.apple.HIToolbox 0x933287a4 HandleMouseEvent(OpaqueEventRef*) + 84
    76 com.apple.HIToolbox 0x9332c4b8 StandardMenuBarEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 56
    77 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    78 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    79 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    80 com.apple.HIToolbox 0x9348c3f0 HandleMouseEvent(OpaqueEventRef*) + 388
    81 com.apple.HIToolbox 0x9329d1fc ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 496
    82 com.apple.HIToolbox 0x93296b84 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    83 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    84 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    85 Illustrator 0x028d3d40 EventLoopEventHandler + 224
    86 com.apple.HIToolbox 0x93296934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    87 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    88 com.apple.HIToolbox 0x93295f08 SendEventToEventTargetWithOptions + 40
    89 com.apple.HIToolbox 0x9329d2cc ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 704
    90 com.apple.HIToolbox 0x93296b84 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    91 com.apple.HIToolbox 0x9329608c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    92 com.apple.HIToolbox 0x9329ce90 SendEventToEventTarget + 40
    93 com.apple.HIToolbox 0x932ddc04 ToolboxEventDispatcher + 92
    94 com.apple.HIToolbox 0x932ddb90 HLTBEventDispatcher + 16
    95 com.apple.HIToolbox 0x932dc148 RunApplicationEventLoop + 148
    96 Illustrator 0x028d39d8 MiEventMainLoop__Fv + 344
    97 Illustrator 0x0203fca4 RunApp__14CAIApplicationFv + 196
    98 Illustrator 0x02030eec main + 76
    Thread 1:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90c034cc MPWaitOnSemaphore + 184
    3 ACECarbonLib 0x00449dd4 0x405000 + 282068
    4 ACECarbonLib 0x0044a010 0x405000 + 282640
    5 ACECarbonLib 0x00449a28 0x405000 + 281128
    6 ...ple.CoreServices.CarbonCore 0x90c36cd4 MPCFMTaskProc + 32
    7 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.ColorSync 0x9159f060 pthreadSemaphoreWait(t_pthreadSemaphore*) + 56
    3 com.apple.ColorSync 0x9159e2fc CMMConvTask(void*) + 40
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002f08c kevent + 12
    1 com.apple.DesktopServices 0x92af3eb0 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf8410 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c003ac TimerThread + 60
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc59a0 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x92af452c TNodeSyncTask::SyncTaskProc(void*) + 116
    4 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bc59a0 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x92b1eb78 TPropertyTask::PropertyTaskProc(void*) + 72
    4 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bc59a0 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x92b20558 TIconRefTask::IconRefTaskProc(void*) + 72
    4 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000931dc278 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x24022404 xer: 0x0000000000000000 lr: 0x0000000093216f78 ctr: 0x00000000900015c8
    r0: 0x0000000093216f60 r1: 0x00000000bfffaf70 r2: 0x00000000a0001fac r3: 0x0000000001a4fda0
    r4: 0x00000000fffffff0 r5: 0x0000000000000000 r6: 0x0000000001a4fda0 r7: 0x0000000000000000
    r8: 0x0000000000000001 r9: 0x0000000000000000 r10: 0x00000000931d1500 r11: 0x00000000a31cd660
    r12: 0x00000000900015c8 r13: 0x0000000000000002 r14: 0x0000000000000000 r15: 0x00000000a3296698
    r16: 0x0000000008fc1ed0 r17: 0x00000000bfffb240 r18: 0x000000006d656e75 r19: 0x0000000000000001
    r20: 0x0000000008fac520 r21: 0x00000000ffffd96e r22: 0x0000000000000000 r23: 0x00000000bfffb390
    r24: 0x00000000fffffff0 r25: 0x0000000000000000 r26: 0x0000000000000001 r27: 0x00000000bfffafc0
    r28: 0x0000000001a4fda0 r29: 0x00000000018a82e8 r30: 0x0000000001a4fda0 r31: 0x0000000093206194
    Binary Images Description:
    0x1000 - 0x2fff LaunchCFMApp /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
    0xd5000 - 0xff427 BIBCarbonLib PEF binary: BIBCarbonLib
    0x27f000 - 0x2aff0c BIBUtilsCarbon PEF binary: BIBUtilsCarbon
    0x2b6000 - 0x2e7b49 ARECarbon PEF binary: ARECarbon
    0x2e8000 - 0x2f8720 AdobeSplashKitLib PEF binary: AdobeSplashKitLib
    0x2f9000 - 0x2fd4b4 AdobeCoreGraphics PEF binary: AdobeCoreGraphics
    0x314220 - 0x3142d2 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x3146a0 - 0x314755 CFMPriv_DVComponentGlue PEF binary: CFMPriv_DVComponentGlue
    0x314970 - 0x314a13 CFMPriv_QuickTime PEF binary: CFMPriv_QuickTime
    0x314a80 - 0x314af7 CFMPriv_System PEF binary: CFMPriv_System
    0x314d80 - 0x314e50 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x314ed0 - 0x314fa3 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x315080 - 0x31513b CFMPriv_Help PEF binary: CFMPriv_Help
    0x315140 - 0x31520a CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x315290 - 0x315366 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x3153e0 - 0x3154b3 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x315540 - 0x315625 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x3156a0 - 0x315776 CFMPriv_OpenScriptingMacBLib PEF binary: CFMPriv_OpenScriptingMacBLib
    0x315850 - 0x31590e CFMPriv_Print PEF binary: CFMPriv_Print
    0x315930 - 0x3159fd CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x315a80 - 0x315b62 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x315be0 - 0x315cb3 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x315d30 - 0x315e03 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x315ee0 - 0x315fa2 CFMPriv_AE PEF binary: CFMPriv_AE
    0x315fb0 - 0x316075 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x3160f0 - 0x3161c7 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x316250 - 0x316333 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x3163b0 - 0x31648a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x316500 - 0x3165e0 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x316670 - 0x316756 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x316830 - 0x316907 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x316910 - 0x3169d2 CFMPriv_QD PEF binary: CFMPriv_QD
    0x316ad0 - 0x316bb9 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x405000 - 0x4a1144 ACECarbonLib PEF binary: ACECarbonLib
    0x4a2000 - 0x6b86cc CoolTypeCarbonLib PEF binary: CoolTypeCarbonLib
    0x6b9000 - 0x7083c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x7083d0 - 0x7206bd Apple;Carbon;Multimedia PEF binary: Apple;Carbon;Multimedia
    0x724000 - 0x75176b AWSCommonSymbols.dll PEF binary: AWSCommonSymbols.dll
    0x751770 - 0x7534f1 pthread_bridge PEF binary: pthread_bridge
    0x754000 - 0x78c9ec asn.ear.ca.dll PEF binary: asn.ear.ca.dll
    0x78d000 - 0x7c7b5e MSLAllCarbon.Shlb PEF binary: MSLAllCarbon.Shlb
    0x7fe000 - 0x7ff97b ASLib PEF binary: ASLib
    0x1008000 - 0x13b12aa AGMCarbonLib PEF binary: AGMCarbonLib
    0x13bc000 - 0x170524f MPSLib PEF binary: MPSLib
    0x1706000 - 0x17a2e4b JP2KLibCarbon PEF binary: JP2KLibCarbon
    0x2008000 - 0x2f4067a Illustrator PEF binary: Illustrator
    0x2f41000 - 0x30671ee AWSCommonUI.dll PEF binary: AWSCommonUI.dll
    0x3068000 - 0x368c981 PDFL60 Carbon.lib PEF binary: PDFL60 Carbon.lib
    0x368d000 - 0x38945ae AWSSCL PEF binary: AWSSCL
    0x3895000 - 0x3905b22 WebAccessUtils.dll PEF binary: WebAccessUtils.dll
    0x6d0e000 - 0x6d1efff com.adobe.coretech.adobesplashkit AdobeSplashKit version 1.0 (1.0) /Applications/Adobe Illustrator CS/Illustrator CS.app/Contents/Frameworks/AdobeSplashKit.framework/AdobeSplashKit
    0x6e7a000 - 0x7117512 PEF binary:
    0x7118000 - 0x717c4ed WebAccesHttp.dll PEF binary: WebAccesHttp.dll
    0x717c4f0 - 0x7202362 WAHttplibwwwCarbon(R) PEF binary: WAHttplibwwwCarbon(R)
    0x85bb000 - 0x85bb537 3D.localized PEF binary: 3D.localized
    0x862b000 - 0x8638a44 Navigator PEF binary: Navigator
    0x863d000 - 0x865e179 Links Palette PEF binary: Links Palette
    0x8664000 - 0x869b193 Layers Palette PEF binary: Layers Palette
    0x883d000 - 0x8858b92 FindReplaceUI PEF binary: FindReplaceUI
    0x8875000 - 0x8891f50 Calligraphic Brush Tool PEF binary: Calligraphic Brush Tool
    0x8892000 - 0x889ead3 KinsokuDlg PEF binary: KinsokuDlg
    0x88ff000 - 0x8902623 Pucker and Bloat PEF binary: Pucker and Bloat
    0x894b000 - 0x894e345 Geometry Suite PEF binary: Geometry Suite
    0x8995000 - 0x899cfdf Roughen PEF binary: Roughen
    0x89dd000 - 0x89eb37a MojiKumiUI PEF binary: MojiKumiUI
    0x8af6000 - 0x8afc9fe Tweak PEF binary: Tweak
    0x8b04000 - 0x8b04fff com.apple.URLMount.AFPPlugin 1.1.6 /System/Library/Filesystems/URLMount/afp.URLMounter/Contents/MacOS/afp
    0x8b1c000 - 0x8b225c5 ArtConverters PEF binary: ArtConverters
    0x8b4b000 - 0x8b7edc0 Art Brush Tool PEF binary: Art Brush Tool
    0x8bb0000 - 0x8bc09fb Drop Shadow PEF binary: Drop Shadow
    0x8c58000 - 0x8c5f079 Path Construction Suiteuite PEF binary: Path Construction Suiteuite
    0x8c6f000 - 0x8c824f6 FuzzyEffect PEF binary: FuzzyEffect
    0x8c99000 - 0x8cd85ab Scribble PEF binary: Scribble
    0x8d92000 - 0x8dd5f21 Offset Path PEF binary: Offset Path
    0xb3b8000 - 0xb41ce28 Photoshop Adapter PEF binary: Photoshop Adapter
    0xb51d000 - 0xb5265fd Framework Server PEF binary: Framework Server
    0xb608000 - 0xb87a333 ADM Plugin PEF binary: ADM Plugin
    0xb901000 - 0xb90ce4d ADM-PNG PEF binary: ADM-PNG
    0xb90d000 - 0xb930cc8 Action PEF binary: Action
    0xb931000 - 0xb94058a ZString PEF binary: ZString
    0xb941000 - 0xb965662 ASDataStream PEF binary: ASDataStream
    0xb973000 - 0xb980f81 Flatten PEF binary: Flatten Transparencyred/Flatten
    0xb99d000 - 0xb9b8642 FOConver PEF binary: FOConversionSuitequired/FOConver
    0xb9b9000 - 0xba0b469 AIPortCarbonLib PEF binary: AIPortCarbonLib
    0xba71000 - 0xbab0f36 PDF Suite PEF binary: PDF Suite
    0xbab1000 - 0xbb45794 PDFPortCarbonLib PEF binary: PDFPortCarbonLib
    0xbb79000 - 0xbbb09fd Pencil Tool PEF binary: Pencil Tool
    0xbbba000 - 0xbbccbfa Rasterize PEF binary: Rasterize
    0xbbd1000 - 0xbc1413b Art Style PEF binary: Art Style
    0xbc23000 - 0xbc562c6 Brush Manager PEF binary: Brush Manager
    0xbc6b000 - 0xbcc348e Envelope and Warplustrator%20CS PEF binary: Envelope and Warplustrator%20CS/
    0xbcdd000 - 0xbd3ab96 Paint Style Palettes PEF binary: Paint Style Palettes
    0xbd44000 - 0xbea59c4 Scripting Supporti PEF binary: Scripting Supporti
    0xbea6000 - 0xbef622a ScCoreCLib PEF binary: ScCoreCLib
    0xbef7000 - 0xbf5f56c ExtendScriptCLib PEF binary: ExtendScriptCLib
    0xbff2000 - 0xc001991 <Unknown disk fragment> PEF binary: <Unknown disk fragment>
    0xc013000 - 0xc03a487 Swatch Libraries)com.apple.print.PaperInfo.ppd.PMPaperName PEF binary: Swatch Libraries)com.apple.print.PaperInfo.ppd.PMPaperName
    0xc054000 - 0xc0733f6 Symbol Palette PEF binary: Symbol Palette
    0xc07c000 - 0xc082759 Tool Selector PEF binary: Tool Selector
    0xc083000 - 0xc0bec1c Variables Palettelug-ins.localiz PEF binary: Variables Palettelug-ins.localiz
    0xc0d1000 - 0xc0d6abd TextWrapDlg PEF binary: TextWrapDlg
    0xc0ea000 - 0xc25a083 SVG Format PEF binary: SVG Format
    0xc25b000 - 0xc33ed47 SVGExportCarbon PEF binary: SVGExportCarbon
    0xc33f000 - 0xc62af21 SVGRECarbon PEF binary: SVGRECarbon
    0xc76e000 - 0xc79aeb2 Slicing PEF binary: Slicing
    0xc7a8000 - 0xc7ea545 Pathfinder Suite PEF binary: Pathfinder Suite
    0xc7f8000 - 0xc80c728 Expand Suite PEF binary: Expand Suite
    0xc869000 - 0xc86e962 Shape Construction Suite PEF binary: Shape Construction Suite
    0xc875000 - 0xc8a1e45 Live Blends PEF binary: Live Blends
    0xc8ae000 - 0xc8d29b5 Snap PEF binary: Snap
    0xc8dc000 - 0xcdc0e6a Save for Web PEF binary: Save for Web
    0xd0fa000 - 0xd101d45 Tool Palette PEF binary: Tool Palette
    0xd102000 - 0xd16dddb Symbolism PEF binary: Symbolism
    0xd1dd000 - 0xd1e7f14 Magic Wand PEF binary: Magic Wand
    0xd215000 - 0xd2593b7 Flare PEF binary: Flare
    0xd2aa000 - 0xd2ba496 Bounding Box PEF binary: Bounding Box
    0xd405000 - 0xd41c5d6 Advanced Select PEF binary: Advanced Select
    0xd4b6000 - 0xd4b9b27 Change Case PEF binary: Change Case
    0xdd85000 - 0xddab9fd MPS Export PEF binary: MPS Export
    0xddbb000 - 0xddbc5fe MPS Common PEF binary: MPS Common
    0xdfec000 - 0xdff99c8 Pathfinderb PEF binary: Pathfinderb
    0xe095000 - 0xe0a4dfd Transparency Palette PEF binary: Transparency Palette
    0xe0a9000 - 0xe0b1708 Transform Paletteette PEF binary: Transform Paletteette
    0xe0b2000 - 0xe0bb8db Transform Each PEF binary: Transform Each
    0xe0c0000 - 0xe0eb629 SVG Filter Effectlustrator%20CS PEF binary: SVG Filter Effectlustrator%20CS/
    0xe140000 - 0xe18f61e Flattening Preview5{ PEF binary: Flattening Preview5{
    0xe1a3000 - 0xe1b0d68 FileClipboardPreflustrator%20CS PEF binary: FileClipboardPreflustrator%20CS/
    0xe1b5000 - 0xe1c2160 Document Info PEF binary: Document Info
    0xe1c3000 - 0xe221419 CharParaStylesli PEF binary: CharParaStylesli
    0xe239000 - 0xe2c6e0e Asset Management PEF binary: Asset Management
    0xe2c7000 - 0xe3b436d FileInfo.dll PEF binary: FileInfo.dll
    0xe41e000 - 0xe436186 Alternate Glyphs PEF binary: Alternate Glyphs
    0xe43c000 - 0xe441b14 Align Palette PEF binary: Align Palette
    0xe446000 - 0xe45afdb Adobe Online PEF binary: Adobe Online
    0xe460000 - 0xe499458 Action Palette PEF binary: Action Palette
    0xe4ba000 - 0xe6816a5 AI3DVMX.shlb PEF binary: AI3DVMX.shlb
    0xe6f1000 - 0xe74f36a PDF Format PEF binary: PDF Format
    0xe771000 - 0xe81caf5 ADMEveParser PEF binary: ADMEveParser
    0xf7f5000 - 0xf7fdfff com.apple.print.converter.plugin 4.3 (157.7) /System/Library/Printers/CVs/Converter.plugin/Contents/MacOS/Converter
    0xfc69000 - 0xfc732c9 DiffusionRasterI PEF binary: DiffusionRasterI
    0x78e00000 - 0x78e07fff libLW8Utils.dylib /System/Library/Printers/Libraries/libLW8Utils.dylib
    0x79200000 - 0x7923efff libLW8Converter.dylib /System/Library/Printers/Libraries/libLW8Converter.dylib
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd2fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x910fffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91110000 - 0x9111efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91121000 - 0x912dcfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913db000 - 0x913e4fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913eb000 - 0x913f3fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f7000 - 0x9141ffff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91432000 - 0x9143dfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91442000 - 0x914bdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fa000 - 0x914fafff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fc000 - 0x91534fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154f000 - 0x91621fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91674000 - 0x91705fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174c000 - 0x91803fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91840000 - 0x9189efff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cd000 - 0x918eefff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91902000 - 0x91927fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193a000 - 0x9197cfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91998000 - 0x919acfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ba000 - 0x91a00fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a17000 - 0x91adefff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2c000 - 0x91b41fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b46000 - 0x91b64fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6a000 - 0x91c21fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c70000 - 0x91c74fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c76000 - 0x91cdefff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce3000 - 0x91d20fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d27000 - 0x91d40fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d45000 - 0x91d48fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4a000 - 0x91e28fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e48000 - 0x91e48fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4a000 - 0x91f2ffff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f37000 - 0x91f56fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc2000 - 0x92030fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203b000 - 0x920d0fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ea000 - 0x92672fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a5000 - 0x929d0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a00000 - 0x92aeefff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af1000 - 0x92b79fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bba000 - 0x92de5fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f03000 - 0x92f0dfff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x92fb3000 - 0x92fb3fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb5000 - 0x92fc9fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe1000 - 0x92ff1fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ffd000 - 0x93012fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93024000 - 0x930abfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930bf000 - 0x930cafff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d4000 - 0x93101fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311b000 - 0x9312afff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93136000 - 0x9319cfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931cd000 - 0x9321cfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324a000 - 0x93267fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93279000 - 0x93286fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9328f000 - 0x9359dfff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x941de000 - 0x942a2fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f4000 - 0x942f4fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9475b000 - 0x9476afff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94772000 - 0x9477ffff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947c5000 - 0x947defff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x947e5000 - 0x94a93fff com.apple.QuickTime 7.0.4 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b57000 - 0x94bc8fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94f9d000 - 0x94fbafff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x954c0000 - 0x955eefff edu.mit.Kerberos 5.5.24 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96045000 - 0x9604afff com.apple.URLMount 2.1.7 /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x96559000 - 0x9656ffff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96571000 - 0x96591fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x9659f000 - 0x965adfff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x965b5000 - 0x965c8fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x97b99000 - 0x97bd7fff com.apple.AppleShareClientCore 1.5.2 /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
    0x9a501000 - 0x9a502fff com.apple.iokit.dvcomponentglue 1.7.9 /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0xeab00000 - 0xeab25fff libConverter.dylib /System/Library/Printers/Libraries/libConverter.dylib
    Model: PowerMac11,2, BootROM 5.2.7f1, 2 processors, PowerPC G5 (1.0), 2 GHz, 3 GB
    Graphics: NVIDIA GeForce 6600LE, GeForce 6600LE, PCI, 128 MB
    Memory Module: DIMM0/J6700, 512 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM1/J6800, 512 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM4/J7100, 1 GB, DDR2 SDRAM, PC2-3200U-266
    Memory Module: DIMM5/J7200, 1 GB, DDR2 SDRAM, PC2-3200U-266
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: GeForce 6600LE, Display, SLOT-1
    PCI Card: bcom5714, network, GIGE
    PCI Card: bcom5714, network, GIGE
    Serial ATA Device: Maxtor 6L160M0, 152.67 GB
    Parallel ATA Device: HL-DT-ST DVD-RW GWA-4165B
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Microsoft Wireless Optical Mouse® 1.00, Microsoft, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

    Hi there,
    You could try performing a clean installation: [[Knowledge Base Article]] :
    Some Firefox issues can be resolved by downloading a new Firefox installer from Mozilla.com, then closing Firefox, deleting the Firefox application folder (program files) and reinstalling Firefox. If this does not help, or if you would rather completely remove Firefox and start over instead of completing all the troubleshooting steps, follow these steps:
    1. Download the latest official version of Firefox from Mozilla.com.
    * You should avoid unofficial download sites that bundle Firefox with other software such as the Google Toolbar.
    2. If you wish to retain your current profile, you should make a backup copy of it. See Backing up your information for instructions.
    3. Uninstall Firefox and make sure you remove the Firefox application (program) folder and your Firefox personal data (user data and settings) - see Uninstalling Firefox for instructions.
    4. Reinstall Firefox - see Installing Firefox for instructions.
    5. When Firefox is started for the first time, the Import Wizard will appear and a new profile will be created.
    6. Verify that the issue no longer appears.
    7. If you made a backup of your old profile and wish to restore your old information, see Recovering important data from an old profile. For troubleshooting purposes, only copy the files corresponding to your bookmarks and saved passwords.
    8. Reinstall your extensions and themes one by one to determine if any specific one is causing the issue.
    source: https://support.mozilla.com/en-US/kb/Basic+Troubleshooting?s=clean+installation&as=s#Clean_reinstall

  • 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

  • Crash report application what is that ? When shut down the computer this Message appeared The application crash repórter Dont Let shut down the computer

    Crash report aplication what is that ? When shut the computer this Message appeared The application crash repórter Dont Let shut down the computer

    Command-Option-Escape does the same as
    Apple Menu > Force Quit...
    It opens a floating box that lists current major Applications and their status (e.g., Not responding) and allows you to force quit any single Application or re-launch the Finder.

Maybe you are looking for