Thread doesn't return control to main() after being interrupted, why?

Hello,
From the following code you would expect control returned to main() after a thread is interrupted. But output shows otherwise. Why?
Thank you in advance for your help!
public class HelloRunnableInterruptB implements Runnable {
     public void run() {
          System.out.println("Hello from a thread!");
          while (true) {
               if (Thread.interrupted()) {
                    System.out.println("Interrupt received in infinite loop");
                    return;
     public static void main(String[] args) {
          HelloRunnableInterruptB threadObj = new HelloRunnableInterruptB();
          Thread thread1 = new Thread(threadObj);
          thread1.start();
          thread1.interrupt();
          System.out.println("main: 1st statement after interrupt()");
/*Output:
Hello from a thread!
Interrupt received in infinite loop
*/

From the following code you would expect control returned to main() after a thread is interrupted. But output shows otherwise. Why?No. It is giving result as expected. Thread dies when its run() method complete execution.
Moreover, when you call a start() method , the result is that two threads runs concurrently: the main thread and the other thread. They have two different lines of execution.

Similar Messages

  • ITunes doesn't return to full volume after a phone call

    At work I use iTunes on a 32-bit Windows 7 machine.  We use Microsoft Lync for phone calls.
    My settings are set so that Windows reduces the volume of applications by 80% when I have a phone call.  This works just fine.  If I leave the music playing during the call, then when I finish the call, it will return to the normal volume.
    However, if I pause iTunes during the call, then the volume does not return to normal, and I have to use the volume mixer to fix it.  Is there a solution to this?

    Anyone have any thoughts on this?

  • Has anyone else seen rapportd (part of Trusteer Rapport control panel) reappear after being uninstalled?

    Quite a few banks encourage customers to install Trusteer Rapport in order to enhance online security. My wife and I have had very different experiences using it, and I uninstalled it in 2011. An Uninstall applet comes with the Rapport installation, because the installer tucks things into many corners of the file system.
    Anyway, this month I found in Activity Monitor that rapportd was running and was hogging more than 50% of CPU time! I verified that this was indeed a piece of Rapport and that it had caused similar problems for other users under 10.5 and 10.6. The solution was to turn off Rapport. But I had supposedly uninstalled it.
    My bank routed me to Trusteer support, which was plodding and unhelpful. The support tech seemed utterly mystified. So I re-ran "Uninstall Rapport.app" which was still located in /Applications/Rapport (the only item in the folder). That seems to have taken care of the problem. I found that rapportd is supposed to live at /Library/Rapport/bin/rapportd and I verified that it is not there.
    Has anyone else seen something like this? Has it peristed under 10.7?

    Yes I have had problems w/ Insignia...(See post on defective TV) to say the least I would not purchase another one.  After numerous service calls to the cable company, geek squad and complaints to the corporate office and BBB finally, the problem is being corrected.  I will be picking up my new TV tomorrow and I pray I dont have to do through anything else with a Insignia product.  The sad part is Best Buy was not going to replace the TV until they received my complaint from BBB.  That is when I started to receive  phone calls from everyone stating how sorry they were for all the problems I have had.  I purchased the extended warranty when I purchased the tv and I will make sure that my warrantly is extended to the new TV I will pick up tomorrow. I wish you the best of luck, because I know exactly what you are going through.....

  • Speakers return to default volume after every song

    Hello,
    I just bought a new Toshiba laptop yesterday, and it is equipped with Windows 8.  I have Pandora running on it currently, and whenever a new song begins, the speakers return to some default volume which is too loud for my office.  How do I get
    the volume to stay at the level I set it at, even when a new song plays?

    I play Pandora all the time in IE11 on Windows 8.1 (right now, in fact).  It doesn't return to default volume after every song here.  I doubt that Pandora's web programming is causing it, at least not directly, or everyone would be seeing
    it.  You should not expect it to do so.
    Edit:  I play it via the Desktop IE11.  I didn't think to mention it.  Is that how you're running it, or are you using the Metro / Modern interface?  Try it on the desktop if that's not where you're running it and see if the
    behavior is different.  Perhaps it's just another problem with the toy interface.
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • Doesn't return to main menu after slideshow

    I put together some photos in iPhoto and then used the export to iDVD command to create a DVD of the slide show. I watched the slideshow all the way through in the preview mode in the iDVD app, and when the slideshow was finished, it went back to the main menu. Then I burned a DVD of it and put it in my home DVD player, and when it gets to the end of the slideshow it just stops and shows the screen on my TV like there is no DVD in the player - the blue screen with the DVD logo. I tried putting the DVD in my other computer and it returned to the main menu after the slideshow from the DVD, so the problem seems to just be with my Panasonic home DVD player.
    I also have a movie on there that I created in iMovie. When that plays on my home DVD player it returns to the main menu when it is finished.
    Any reason why this is doing this and what I can do about it? Since my internal DVD burner went bust, I'm using an external DVD burner, but I can't imagine that would have anything to do with it.
    Thanks.

    Okay, I figured it out. After much heartache and frustration I finally figured it out. I couldn't quite accept the fact that it may have been due to the type of DVD I was using - especially when you can't go out and buy just one blank DVD.
    Anyhow, after getting frustrated with iDVD, I decided to try putting the project together using DVD Studio Pro 3. What I noticed is that, when trying to build a slideshow, I couldn't use more than 99 photos. I actually had 101 photos in my slideshow. So, I went back to iDVD and took out 2 photos so that I had a total of 99 in the project. Then, when I played it in my home DVD player, it worked fine. It went back to the main menu after completing the slideshow.
    So, moral of the story is, in iDVD 6, you can't use more than 99 photos in your slideshow.

  • Transfering control between main and a thread

    Hi,
    How to transfer control from a thread which has been initiated from main, back to main.I have a variable and if the value of the var is true the control should go back to main after performing a task the value of the var is set false and the control should be passed to the thread.
    Please help me with a sample code.

    hullo
    control back and forth between threads????
    i'm sorry i dont know if i'm getting you right.
    unlike in method calls where the control returns back to calling method, threads are designed to execute independently.
    and if you spawn a thread from main method both main and spawned thread would be executing simultaneously and only JVM simulates the operating system's control switching between the created threads.
    we can however sleep, yield or wait on a resource.
    you can do all that you were mentioning in the spwaned thread. by writing it in the run method.
    skeleton code:
    public class Exp {
    public boolean choice;
    public exp(boolean choice) {
    this.choice = choice;
    SpawnedThread st = new SpawnedThread(choice);
    if(choice == true) {
    //perform whatever
    notify();
    public static void main(String ar[]) {
    new Exp(choice);
    class SpawnedThread extends Thread {
    boolean choice;
    public SpawnedThread (boolean choice) {
    this.choice = choice;
    start();
    public void run() {
    if(choice == true) {
    wait();
    // resume the task

  • DVD doesn't return to main menu when reaches end - Why? How?

    My DVD plays through full movie and then essentially just stops at the end vs returning to the main menu. The menu button doesn't even return it at that point. What can I do to make it return to the main menu when it reaches the end?

    I'm having a similar issue...
    In all the previous projects I've created with iDVD, the movie always automatically returned to the DVD main menu at the very end of the presentation.
    On my current project using iDVD 6.0.2 (787), this is not occuring. At the end of the DVD presentation, the screen continues to stay black until the "stop" button is depressed.
    I'm obviously frustrated because I have looked everywhere in "iDVD Help" and within the on-line support discussions for an answer, but to no avail.
    I don't think that it's a DVD media issue because the problem occurs on iDVD when previewing (and obviously on the DVD media after burning).
    Does anyone know why this is happening? Is there a special command, tool, or secret handshake I need to provide in iMovie HD, or iDVD? Any insight is most appreciated.
    -j

  • My unlocked iphone couldn't return to the main menu after i tried to download itunes.it stucked on itunes connecting page.

    my unlocked iphone couldn't return to the main manu from itunes downloading symbol.i restarted now and then.and no phone connection.

    If you have a valid SIM card, then try the steps in this article to remove the SIM card to ensure it's seated properly, and try again.
    http://support.apple.com/kb/HT5163
    Also, you said this is an unlocked phone, you may have to contact your carrier to verify the phone was unlocked in thier system.

  • Wait for method that doesn't return

    Hi,
    I have a static method consisting of a few lines of code that create a response to the caller of the method.
    My problem is that the method doesn't always use the same amount of time to execute. I don't ever want to keep the caller of the method waiting for more than a specified amount of time e.g. 30 seconds. If it hasn't returned after that I want to abort and return controll to the caller.
    What's the best way to solve that problem?
    I've been thinking about starting a Thread in the method and execute the code there. That way, if the Thread hasn't finished executing after 30 sec I can kill it and return controll to the caller. But I'm not sure how that will work since the method is static. I have little experiense working with threads and no experiense working with threads in a static method.
    There are no static class variables involved. Two arguments are passed to the method, one URL and one String and it returns a String.
    Any id�as or suggestions?
    Kind regards,
    Mattias

    The method run in Worker looks like this:
    public void run() {
      try {
          HttpURLConnection connection = HTTPSclient.getConnection(url, authorization);
          // Other configuration
          connection.setRequestMethod( "GET" );
          connection.setRequestProperty( "Content-Type", "text/xml" );
          connection.setUseCaches( false );
          //Get the response from the server and write it to a String
          BufferedReader br = new BufferedReader( new InputStreamReader( connection.getInputStream() ) );
          String tempLine;
          String str = "";
          while( ( tempLine = br.readLine() ) != null ) {
            str += tempLine + "\n";
          result = URLDecoder.decode( str, "UTF-8" );
        } catch (IOException e) {
            System.err.println("caught");
            exception = e;
    }The static method getConnection looks like this:
    HttpsURLConnection getConnection(URL url, String authorization) throws IOException  {
      // first ensure that at the very least a secure protocol has been specified.
      HttpsURLConnection connection;
      String protocol = url.getProtocol();
      if (!"https".equals(protocol)) {
        throw new IOException("The URL for the server must use the HTTPS protocol.");
      // This HostnameVerifier is used to bypass SSL verification.
      HostnameVerifier hv = new HostnameVerifier() {
        public boolean verify(String urlHostName, SSLSession session) {
          return true;
      HttpsURLConnection.setDefaultHostnameVerifier(hv);
      // Configure our connection to use the basic authentication details provided by the user
      connection = (HttpsURLConnection) url.openConnection();
      // Configure our connection to use the basic authentication details provided by the user
      if(authorization != null) {
        String auth = (new BASE64Encoder()).encode(authorization.getBytes());     
        connection.setRequestProperty("Authorization", "Basic ".concat(String.valueOf(auth)));
      return connection;
    }And it is this call that blocks:
    BufferedReader br = new BufferedReader( new InputStreamReader( connection.getInputStream() ) );There is ( as far as I can see ) no support for setting timeouts in HttpsURLConnection or its super class URLConnection. In version 1.5 this support seem to exist but unfortunately I'm still forced to use version 1.4.2 :(
    Any suggestions on how to break this block on connection.getInputSTream()?

  • Imovie Crashed Thread:  0  Dispatch queue: com.apple.main-thread

    I start the Imac
    Only open iPhoto, iTunes and iMovie.
    I choose in iMovie, Export and then location and HD 1080p, name and Export.
    That is all
    I leave the iMac allone
    After a while I movie chrashed see log file.
    I tried everything start up and use only Imovie and stop a few processes but it didn't help.
    I try last week every thing also with 720p and yesterday suddenly my last export in 720p was oke. I don't know why but I am happy for 720p
    Now the export to HD can you help. Sorry for my bad englisch
    Process:         iMovie [260] 
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.8 (1778)
    Build Info:      iMovieApp-1778000000000000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [248]
    User ID:         501
    Date/Time:       2012-11-30 22:47:33.086 +0100
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          42182 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  25650 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      F1718B17-E88C-DE20-F9DE-EF5A3624D67E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    Performing @selector(ok:) from sender NSButton 0x7baf9ef0
    abort() called
    Application Specific Signatures:
    Graphics kernel error: 0x00000002
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x91180a6a __pthread_kill + 10
    1   libsystem_c.dylib                       0x96457acf pthread_kill + 101
    2   libsystem_c.dylib                       0x9648e4f8 abort + 168
    3   libGPUSupport.dylib                     0x04052159 gpusKillClient + 111
    4   com.apple.ATIRadeonX2000GLDriver          0x091d9116 0x8ffd000 + 1949974
    5   com.apple.ATIRadeonX2000GLDriver          0x091b1dc4 0x8ffd000 + 1789380
    6   libGPUSupport.dylib                     0x04057665 gldFlushContext + 29
    7   GLEngine                                0x0883106b glFlushRender_Exec + 58
    8   com.apple.QuartzComposer                0x992c9e39 -[QCCGLContext(SnapshotImage) createSnapshotImageOfType:withColorSpace:] + 548
    9   com.apple.QuartzComposer                0x992d83c2 -[QCRenderer createSnapshotImageOfType:] + 103
    10  com.apple.iMovieApp                     0x00204124 0x68000 + 1687844
    11  com.apple.iMovieApp                     0x000d709d 0x68000 + 454813
    12  com.apple.iMovieApp                     0x000d8800 0x68000 + 460800
    13  com.apple.iMovieApp                     0x000d76af 0x68000 + 456367
    14  com.apple.iMovieApp                     0x000df4e0 0x68000 + 488672
    15  com.apple.iMovieApp                     0x000de2bf 0x68000 + 484031
    16  com.apple.QuickTimeComponents.component          0x908e7e16 0x900a5000 + 8662550
    17  com.apple.QuickTimeComponents.component          0x908e741b 0x900a5000 + 8659995
    18  com.apple.QuickTimeComponents.component          0x908e60e6 0x900a5000 + 8655078
    19  com.apple.QuickTimeComponents.component          0x908d07d6 0x900a5000 + 8566742
    20  com.apple.CoreServices.CarbonCore          0x936ec91f callComponentStorage_444 + 32
    21  com.apple.CoreServices.CarbonCore          0x936ddabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    22  com.apple.CoreServices.CarbonCore          0x936ddaff CallComponentFunctionWithStorageProcInfo + 30
    23  com.apple.QuickTimeComponents.component          0x908ce052 SpitMovieComponentDispatch + 114
    24  com.apple.CoreServices.CarbonCore          0x93657aee CallComponent + 151
    25  com.apple.CoreServices.CarbonCore          0x93657b48 CallComponentDispatch + 29
    26  com.apple.QuickTime                     0x9413414f MovieExportFromProceduresToDataRef + 49
    27  com.apple.iMovieApp                     0x000e0595 0x68000 + 492949
    28  com.apple.iMovieApp                     0x000e114b 0x68000 + 495947
    29  com.apple.iMovieApp                     0x0020ed51 0x68000 + 1731921
    30  com.apple.iMovieApp                     0x0020f6aa 0x68000 + 1734314
    31  com.apple.iMovieApp                     0x0017babc 0x68000 + 1129148
    32  com.apple.iMovieApp                     0x00211736 0x68000 + 1742646
    33  com.apple.AppKit                        0x9788b1af -[NSSavePanel _didEndSheet:returnCode:contextInfo:] + 145
    34  com.apple.AppKit                        0x97291136 -[NSApplication endSheet:returnCode:] + 314
    35  com.apple.iMovieApp                     0x000b2982 0x68000 + 305538
    36  com.apple.AppKit                        0x972acf43 -[NSSavePanel dismissWindow:] + 137
    37  com.apple.AppKit                        0x972ac57d -[NSSavePanel ok:] + 467
    38  libobjc.A.dylib                         0x914775d3 -[NSObject performSelector:withObject:] + 70
    39  com.apple.AppKit                        0x9748bbd2 -[NSApplication sendAction:to:from:] + 436
    40  com.apple.iMovieApp                     0x000b99d0 0x68000 + 334288
    41  com.apple.AppKit                        0x9748b9e0 -[NSControl sendAction:to:] + 102
    42  com.apple.AppKit                        0x9748b8ef -[NSCell _sendActionFrom:] + 159
    43  com.apple.AppKit                        0x97489e60 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1895
    44  com.apple.AppKit                        0x9748969f -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 511
    45  com.apple.AppKit                        0x97488db9 -[NSControl mouseDown:] + 867
    46  com.apple.AppKit                        0x97480a21 -[NSWindow sendEvent:] + 6968
    47  com.apple.AppKit                        0x9747ba0f -[NSApplication sendEvent:] + 4278
    48  com.apple.iMovieApp                     0x000b9700 0x68000 + 333568
    49  com.apple.AppKit                        0x9739572c -[NSApplication run] + 951
    50  com.apple.AppKit                        0x973386f6 NSApplicationMain + 1053
    51  com.apple.iMovieApp                     0x0006a35a 0x68000 + 9050
    52  com.apple.iMovieApp                     0x00069ec5 0x68000 + 7877
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x91180c02 __select_nocancel + 10
    1   libdispatch.dylib                       0x93037a08 _dispatch_mgr_invoke + 376
    2   libdispatch.dylib                       0x930377a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9117e7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9117dcb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x93333599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x93338f7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9333863a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x93348061 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate                  0x0272e72f AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 266
    7   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    8   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x91180be6 __select + 10
    1   com.apple.CoreFoundation                0x9337cc00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    3   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x911808e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9645b289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9645b512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x936bc6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x936bc184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x936bc40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x9069b5ac 0x900a5000 + 6251948
    7   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    8   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9117e80e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component          0x90b557ee 0x900a5000 + 11208686
    2   com.apple.QuickTimeComponents.component          0x90709e26 0x900a5000 + 6704678
    3   com.apple.QuickTimeComponents.component          0x90b55580 0x900a5000 + 11208064
    4   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    5   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 6:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x911808e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9645b289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x964e8afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x907b2556 0x900a5000 + 7394646
    4   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    5   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 7:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x911808e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9645b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x964e10ec pthread_cond_timedwait$UNIX2003 + 70
    3   com.apple.JavaScriptCore                0x9954b3d8 ***::ThreadCondition::timedWait(***::Mutex&, double) + 120
    4   com.apple.JavaScriptCore                0x99761f43 JSC::BlockAllocator::blockFreeingThreadMain() + 115
    5   com.apple.JavaScriptCore                0x9954935c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x99777880 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    8   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x911808e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9645b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x964e10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x996cc6f6 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x996cc5ee JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x9954935c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x99777880 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    8   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x911808e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9645b289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9645b512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x936bc6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x936bc184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x936bc40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9365d7ea AIOFileThread(void*) + 892
    7   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    8   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 10:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x9117e80e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x2342ea73 0x2337f000 + 719475
    2   QuickTimeH264.scalar                    0x2342e55b 0x2337f000 + 718171
    3   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    4   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x911810ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9645904c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x96458e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x96440cca start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x911810ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9645904c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x96458e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x96440cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000780  ecx: 0xbff96fac  edx: 0x91180a6a
      edi: 0xac95da28  esi: 0x00000006  ebp: 0xbff96fc8  esp: 0xbff96fac
       ss: 0x00000023  efl: 0x00200206  eip: 0x91180a6a   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x6288b000
    Logical CPU: 0
    Binary Images:
       0x68000 -   0x4eefef  com.apple.iMovieApp (9.0.8 - 1778) <8B088F1A-C83A-3009-BCDA-03F2292C7A8F> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x5af000 -   0x5c6ff7  com.apple.iLifeFaceRecognition (1.0 - 21) <AD53D7A2-F0B2-FF76-5C6D-C23B234AB50E> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/iLifeFaceRecognit ion
      0x5d8000 -   0x5d9ff3  com.apple.Helium (3.1.0 - 18567.3) <72A242AC-3BA7-3DD5-A043-000C7A9DCD11> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x5de000 -   0x60cfe3  com.apple.MPEG2TSDecoder (1.0 - 84) <7E230E93-F7F6-34A2-8B60-E6F79E353426> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x645000 -   0x6c4ff7  com.apple.iLifeMediaBrowser (2.7.2 - 546) <824E7748-CA28-3105-B5C3-27E9D8C6D465> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0x70b000 -   0x829ff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
      0x8dd000 -   0x8deff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x8e6000 -   0x8e7fff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoCo m.dylib
      0x8ec000 -   0x911ff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoPt .dylib
      0x91b000 -   0x94ffe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoDt .dylib
      0x958000 -   0xabffff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoFr .dylib
      0xac5000 -   0xcc8feb  com.apple.Helium.HeliumRender (2.1.0 - 18567.3) <A20BE37C-2987-3BB8-AA52-0607FE7CCF8C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xd1e000 -   0xd9ffe7  com.apple.Helium.Heliumfilters (2.1.0 - 18567.3) <3DCC7DCF-8734-31A0-9B6F-0139CC6CB71C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumFilters.framework/Versions/A/HeliumFilters
    0x10d8000 -  0x1295feb  com.apple.Helium.HeliumSensoCore (2.0.2 - 18567.3) <BFA19728-C6DD-3D2D-BFF5-1099CBB20679> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumSensoCore.framework/Versions/A/HeliumSensoCore
    0x12cb000 -  0x1f5aff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x272a000 -  0x275bff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
    0x27d9000 -  0x27dcfef  com.apple.LiveType.component (2.1.3 - 2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x3acf000 -  0x3adcff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x3b22000 -  0x3b23ffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1167) <341A7E90-613E-3306-919F-8F49EE350831> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x3b28000 -  0x3b2bffe  com.apple.DirectoryServicesSource (2.1 - 1167) <2A3AD43B-950C-32AD-A578-3271EAD55E3E> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x3b31000 -  0x3b38ff7  com.apple.AOSNotification (1.7.0 - 636.2) <F68F735D-0B5C-3F27-9E39-FB296CF82958> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x3c93000 -  0x3cf8fde  com.apple.LiveType.framework (2.1.3 - 2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x4050000 -  0x405cffb  libGPUSupport.dylib (8.6.1) <FB98F9CE-31D0-321C-90FE-87D30294921B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x4063000 -  0x408fffa  GLRendererFloat (8.6.1) <D0348D87-ADBD-302B-95D0-FB3100C219BA> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x4098000 -  0x40a0ffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x40a7000 -  0x40a9fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x54dd000 -  0x552eff7  com.apple.AddressBook.CardDAVPlugin (10.8 - 332) <DED18914-309A-31FF-A367-BB0D62384728> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x554b000 -  0x55adfff  com.apple.coredav (1.0.1 - 179.6) <80D3EE71-AA9C-3954-B262-6BB8FCB293BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x55e7000 -  0x55f4ffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x55fe000 -  0x560dffd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <A9BF8310-F1D2-38EC-AA1A-5ECB479B89CE> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x5618000 -  0x5674fff  com.apple.corelocation (1.0 - 1239.39) <8159C021-DE49-332F-859E-00D7544EB568> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x56a1000 -  0x56d3ff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x56e5000 -  0x56eefff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x67f1000 -  0x67f2ff8  ATSHI.dylib (341.1) <7FD74F4D-E42A-30CB-8863-1832BFADFE5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x680c000 -  0x6813ff8  com.apple.iLMBAperturePlugin (2.7.2 - 339) <2D2C9870-E0B6-3868-8394-79E91AC706E4> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x681a000 -  0x681afff  com.apple.iLMBAppDefPlugin (2.7.2 - 339) <70319805-38A9-3043-ADAF-A8E3460C2E7F> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x681f000 -  0x6820fff  com.apple.iLMBFolderPlugin (2.7.2 - 339) <A492DD96-B17A-3581-8F02-BB46C385D5B9> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x87d4000 -  0x87ddff7  com.apple.iLMBFinalCutPlugin (2.7.2 - 339) <FCDE7192-2E1A-38F8-916A-0CA934540DC2> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x880d000 -  0x8999ff8  GLEngine (8.6.1) <2660B1D4-5783-3BED-8C05-F5A4C5A29715> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x89d0000 -  0x89d3fff  com.apple.iLMBGarageBandPlugin (2.7.2 - 339) <78FF504C-F636-3C8D-8AAA-BACF4D5B7D9B> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x89d9000 -  0x89dafff  com.apple.iLMBMoviesFolderPlugin (2.7.2 - 339) <64E4136B-AAD7-35AF-89EA-2560CE1C403C> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x89df000 -  0x89e0ffd  com.apple.iLMBPhotoBoothPlugin (2.7.2 - 339) <E69485DC-8BE8-31AD-A002-79D7CE66F11C> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0x8e7e000 -  0x8fcfff7  libGLProgrammability.dylib (8.6.1) <E134D5DE-5A89-338A-A938-C7D80F272C9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x8ffd000 -  0x928afff  com.apple.ATIRadeonX2000GLDriver (8.0.61 - 8.0.0) <62F8082A-963D-3F5A-9917-2AAF68EF6DF9> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x92e0000 -  0x939eff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9422000 -  0x957efff  com.apple.iLMBAperture31Plugin (2.7.2 - 339) <31453F49-445D-3339-850B-961880BFC73A> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x95c6000 -  0x9778ffb  com.apple.iLMBAperturePlugin2012 (2.7.2 - 339) <010C3E35-C2A2-378E-8818-3E4F95582F56> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0x97d3000 -  0x97dfff3  com.apple.iLMBiMoviePlugin (2.7.2 - 339) <43670574-38EA-316D-8246-CCFA1EC939FF> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x97e6000 -  0x97f9fff  com.apple.iLMBiPhoto8Plugin (2.7.2 - 339) <3A40E2BF-F18E-32A9-A9C1-A7ABB6530CF0> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x9801000 -  0x9960fff  com.apple.iLMBiPhoto9Plugin (2.7.2 - 339) <E63985DE-DFFA-3459-870F-045D31ED2F38> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x99a9000 -  0x99b1ffb  com.apple.iLMBiPhotoPlugin (2.7.2 - 339) <C223ED5C-2B22-3EA8-899B-7B152E32B018> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x99b8000 -  0x9b6bff3  com.apple.iLMBiPhotoPlugin2012 (2.7.2 - 339) <C60F1D91-5FA8-31AF-A6AA-DF919D7DF7D2> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0x9bc7000 -  0x9bcfffe  com.apple.iLMBiTunesPlugin (2.7.2 - 339) <50409BA5-9D15-3D95-BBC5-36C6EA6EC85B> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x9bd6000 -  0x9c85ffb  com.apple.iTunesAccess (11.0 - 11.0) <DB874F67-FA81-3A6C-A991-98EA4BFF32B2> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9cb0000 -  0x9cb2ffb  com.apple.iLMBPhotoBooth2Plugin (2.7.2 - 339) <0DC888AC-D093-39EF-A839-A262A3CDD0BC> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0xa049000 -  0xa04efff  com.apple.audio.AppleHDAHALPlugIn (2.3.1 - 2.3.1f2) <58BDA15D-2B2D-3E77-BC8C-D14AB1E4AC4E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xb10b000 -  0xb10cffd +cl_kernels (???) <0BE8D0A7-9448-44C3-81ED-EBF3CCBA4C91> cl_kernels
    0xb119000 -  0xb119ff7 +cl_kernels (???) <8FAF0AA4-434A-499B-B567-C5712701F5C9> cl_kernels
    0xb11b000 -  0xb1adff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0xb408000 -  0xb41bfef  com.apple.FCP Uncompressed 422.component (2.0 - 546.9) <DE499328-98FD-2648-444F-418FC8A3CE59> /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xb4ad000 -  0xb4b2ff7  com.apple.DesktopVideoOut (1.2.4 - 1.2.4) /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0xb67d000 -  0xb68affb +net.telestream.license (1.0.7.2-GC - 1.0.7.2-GC) <3B3ADB81-79F3-6371-31FE-66EF8D8E3100> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0xb697000 -  0xb72dffa  com.apple.mobiledevice (555.40 - 555.40) <40C9AB96-15C5-3D69-BA35-A73BB9380856> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0xb816000 -  0xb81dffc  com.apple.AppleGVAHW.component (1.1 - 1) <402A3FA9-6028-3639-989F-E9FCA85D04CF> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0xb828000 -  0xba2dfff  com.apple.audio.codecs.Components (3.0 - 3.0) <B826A71F-1D4C-3B2D-B104-D06583172F1B> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0xc9ef000 -  0xc9f3ffb  libFontRegistryUI.dylib (100) <10CAC446-A500-3291-A144-7FAFA57D6720> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0xca97000 -  0xcabdffb  com.apple.QuartzComposer.ExtraPatches (4.1 - 284) <BC445DFA-0C21-332E-AD55-31224AF4E57A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0xcace000 -  0xcbe8ff3  com.apple.avfoundation (2.0 - 361.25) <0CB46B4A-8330-3BD8-B081-71314C6687A5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0xcc85000 -  0xcccdffb  com.apple.audio.midi.CoreMIDI (1.9 - 78) <7AAE4076-36FA-37C1-9EAE-344F1C8F14D9> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xccf2000 -  0xcddbffb  com.apple.PubSub (1.0.5 - 65.32) <47AA4035-0FAE-31ED-B7AD-C0DA089EE82D> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0xce34000 -  0xce5fff7  com.apple.audio.OpenAL (1.6 - 1.6) <B10D8F86-253D-37C8-BC11-64DEEF81AC45> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0xce6f000 -  0xce85ffc  libexpat.1.dylib (12) <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
    0xcfd8000 -  0xd003ff7  com.apple.iMovieQCPlugIns (1.1 - 1778) <931824E8-B2C7-3E5A-8E5C-00C8B2398459> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0xdd71000 -  0xde46fef +com.cineform.CFHDDecompressor (8.1.2.646 - 646) <49FF431C-994D-1B14-9A0F-15A3DFD5D6BD> /Library/QuickTime/CFHDDecompressor.component/Contents/MacOS/CFHDDecompressor
    0xdf00000 -  0xe0f2fe2 +net.telestream.wmv.import (2.3.4.1 - 2.3.4.1) <6F008770-6AD3-E6C9-347C-A235876196E0> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0xe127000 -  0xe1d2fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0xe216000 -  0xe3d7ff2 +net.telestream.wmv.advanced (2.3.4.1 - 2.3.4.1) <CB95FDB7-C531-22A3-6D36-1C96D5A5679D> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0xe41b000 -  0xe443fe3  com.apple.AppleAVCIntraCodec (2.0 - 542.4) <DBE6FAB1-C003-33F6-B0F3-BD528C7CAA20> /Library/QuickTime/AppleAVCIntraCodec.component/Contents/MacOS/AppleAVCIntraCod ec
    0xe44d000 -  0xe4d4ff7  com.apple.AppleProResCodec (3.0.1 - 553.2) <6E207B31-DE83-BF92-990F-24328404C5AF> /Library/QuickTime/AppleProResCodec.component/Contents/MacOS/AppleProResCodec
    0xe512000 -  0xe55bfff  com.apple.AppleVAH264HW.component (3.0 - 3.0) <3048BA40-0E8E-357A-8F9D-27D2FD322036> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0xe61f000 -  0xe769ff7  com.apple.AppleGVAFramework (4.0.27 - 4.0.27) <A821DD12-2544-3EAB-8439-4D17BCEB8460> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0xe785000 -  0xe7bffff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.13) <5FB303B9-3672-39AA-8CD6-E323CC0E41A8> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe7cb000 -  0xe808fe7  com.apple.DVCPROHDCodec (2.0 - 542.4) <C4C608C8-701F-448D-AA2C-9FA650BCA988> /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0xe818000 -  0xe8ccfef  com.apple.AppleHDVCodec (2.0.1 - 553.8) <5F48585B-5E48-549D-1E1B-F1BF68F8B753> /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0xe8e8000 -  0xe909fff  com.apple.AppleIntermediateCodec (2.0.1 - 5718) <6A70694B-21C7-381B-8DE3-CD6490C70A77> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xe918000 -  0xe92effb  com.apple.IMXCodec (2.0 - 547.2) <A835627C-1BAF-95D4-A5C9-EB998A205767> /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0xe940000 -  0xe958ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31) <B5622D90-ADF3-3DB2-B64B-5F4AF7C274E3> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x20b0e000 - 0x20b37ff7  com.apple.datadetectors (4.0 - 199.0) <664C00F7-1E59-33F8-9401-DB4784A189B6> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x20b73000 - 0x20b74ff1 +cl_kernels (???) <7034ACAF-E418-4B8F-B26B-74BCB4521AA1> cl_kernels
    0x20c53000 - 0x20c54ff5 +cl_kernels (???) <19B543A0-C3E2-4FE8-A60F-DEBCAC14BB91> cl_kernels
    0x214c9000 - 0x2155bff7  unorm8_argb.dylib (2.1.19) <1B67DB26-5B5D-3600-8049-D744F133BEB1> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
    0x22d2a000 - 0x22d4efff  com.apple.security.csparser (3.0 - 55179.1) <5A5A8689-5E81-3F38-B770-70448D8653E9> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
    0x2337f000 - 0x2370efff  QuickTimeH264.scalar (2599.13) <40E122CF-721A-338C-94BB-D6CB892851EA> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x3e000000 - 0x3e041fff  com.apple.glut (3.5.2 - GLUT-3.5.2) <0A9E8D36-8EA6-328D-AEF9-E7A7B1A830D4> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x7015dff7  com.apple.audio.units.Components (1.8 - 1.8) <2637680C-A07E-3387-BD21-33B04B7C7A95> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe67000 - 0x8fe99e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x90042fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90043000 - 0x9007affa  com.apple.LDAPFramework (2.4.28 - 194.5) <8368FAE7-2B89-3A7D-B6EE-7184B522CB66> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9007b000 - 0x900a4fff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x900a5000 - 0x90dddff7  com.apple.QuickTimeComponents.component (7.7.1 - 2599.13) <85C70D1B-D074-3891-BF8D-9BA81D2C224B> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x90dde000 - 0x90e44fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90e45000 - 0x90e5cfff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x90e5d000 - 0x90e8cff7  com.apple.securityinterface (6.0 - 55024.4) <7C5E28DC-F8BE-3238-883F-E1646A2AF895> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90e8d000 - 0x90f89ff3  com.apple.DiskImagesFramework (10.8 - 344) <98C16F91-9D3E-3FD0-A30B-BD49EE4ED9A4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x90f8a000 - 0x90f8afff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90f8b000 - 0x90fedfff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x90fee000 - 0x91000fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x91027000 - 0x9105aff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9105b000 - 0x9114cffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x9114d000 - 0x91166ffb  com.apple.frameworks.preferencepanes (15.0 - 15.0) <802C922C-CF94-357F-B1AE-4244AA025C04> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x91167000 - 0x9116bffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x9116c000 - 0x91186ffc  libsystem_kernel.dylib (2050.18.24) <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
    0x91187000 - 0x911b2fff  com.apple.shortcut (2.2 - 2.2) <FA94F2BF-37E1-3F16-9085-7BCCB815BAE9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x911c2000 - 0x91211ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x912aa000 - 0x912baff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x912bb000 - 0x912c9fff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x912ca000 - 0x9130fff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91310000 - 0x91311ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91357000 - 0x9137cffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9137d000 - 0x913e3ffc  com.apple.ISSupport (1.9.8 - 56) <D2AC4E10-0B3C-3194-AEB7-1E9964CBC0D0> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x913e4000 - 0x913e8fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x913e9000 - 0x913f3ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x913f4000 - 0x91458fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91459000 - 0x91566057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x91567000 - 0x91580fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91581000 - 0x9158fff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x91590000 - 0x916e8ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x916e9000 - 0x917ddff3  com.apple.QuickLookUIFramework (4.0 - 555.4) <D66F61A6-2C4C-359F-A2E3-7D023C33CB5A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x917de000 - 0x917dffff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x917e0000 - 0x9181fff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91820000 - 0x91918ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x91919000 - 0x9191dfff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9191e000 - 0x91a1cff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x91a1d000 - 0x91a28ffb  com.apple.DirectoryService.Framework (10.8 - 151.10) <234F4A14-60ED-300B-93B2-D5052878558F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91a29000 - 0x91a46fff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x91a47000 - 0x91a89ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x91a8a000 - 0x91a93ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91a94000 - 0x91a9efff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91a9f000 - 0x91aa8ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91aa9000 - 0x91ab1fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91b02000 - 0x91b17fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91b18000 - 0x91b18fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91b1e000 - 0x91bb8fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x91bb9000 - 0x91f71ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91f72000 - 0x91f97ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91f98000 - 0x91f98fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x91f99000 - 0x91f99fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x91f9a000 - 0x923b7fff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x923b8000 - 0x9246cfff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9246d000 - 0x924d5fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x924d6000 - 0x92611ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92612000 - 0x92653ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x92654000 - 0x92671ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x92672000 - 0x926ebff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x926ec000 - 0x927a3ff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2599.13) <1B5BA13C-4AB7-333E-9A14-A95EC9E55049> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x927a6000 - 0x927d3ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x927d4000 - 0x92bd0feb  com.apple.VideoToolbox (1.0 - 926.62) <B09EEF06-CB3C-3EAA-8B0E-22A1801F3CAE> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x92bd1000 - 0x92bdeff7  com.apple.HelpData (2.1.4 - 85) <1E180AEF-53FF-3D8B-9513-7FCA1B25A4AB> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92bdf000 - 0x92c38fff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92c39000 - 0x92c65ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x92c66000 - 0x92c66fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92c67000 - 0x92c6ffff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x92c70000 - 0x92cd8ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92cd9000 - 0x92cd9fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x92ce6000 - 0x92e43ffb  com.apple.QTKit (7.7.1 - 2599.13) <2DC9E2BB-9895-3D02-A318-88431052E70B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x92e44000 - 0x92ec9ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92eca000 - 0x92ecafff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92ecb000 - 0x92fd8ff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x92fd9000 - 0x93030ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x93031000 - 0x93032fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x93033000 - 0x93045ff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x93046000 - 0x93051fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x93052000 - 0x932f5ffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x93301000 - 0x934e9ff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x934ea000 - 0x934edff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x934ee000 - 0x935c4fff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x935c5000 - 0x935f8ff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
    0x935f9000 - 0x938feff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x938ff000 - 0x9392cffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x939e7000 - 0x93a87ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93abe000 - 0x93ac5fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x93ac6000 - 0x93ac9ff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x93aca000 - 0x93acbfff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x93acc000 - 0x93b64fff  com.apple.CoreServices.OSServices (557.4 - 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93b65000 - 0x93c83ff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x93c84000 - 0x93c91ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x93c92000 - 0x93f1effb  com.apple.RawCamera.bundle (4.01 - 666) <EB81A8D9-469D-34B1-8261-46963AB42F8C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x93f1f000 - 0x93f2dfff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93f2e000 - 0x941aaff7  com.apple.QuickTime (7.7.1 - 2599.13) <FE609160-E1EF-341D-9B6A-205D3E03A4D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x941ab000 - 0x941adffc  com.apple.QuickTimeH264.component (7.7.1 - 2599.13) <C19F08F9-F383-35C9-8D5C-BD53A238951C> /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x941ae000 - 0x94447ff3  com.apple.AddressBook.framework (7.1 - 1167) <AF7B18F2-D0FF-33AA-9CE9-4106B1CDAE1D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94448000 - 0x94467ff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x94468000 - 0x944bfff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x944f6000 - 0x9451afff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9451b000 - 0x94893ff3  com.apple.FinderKit (1.1.1 - 1.1.1) <5868FEF0-E512-3E22-91FF-7AFE4F7580A1> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x94894000 - 0x949a4ff3  com.apple.QuickTimeImporters.component (7.7.1 - 2599.13) <410311C4-34FF-38F0-8EE0-3093AEEC1A82> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x949a5000 - 0x949adfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x949ae000 - 0x94c1bfff  com.apple.imageKit (2.2 - 667) <3F5F92DB-C0C0-3C5F-98C6-B84AB9E28B55> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94c1c000 - 0x94c26fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x94c27000 - 0x94c80ff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x94c81000 - 0x94c97fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94c98000 - 0x94c98ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94c99000 - 0x94ca5ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x94ca6000 - 0x94cc8fff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x94cc9000 - 0x94d10ff3  com.apple.CoreMedia (1.0 - 926.62) <69B3835E-C02F-3935-AD39-83F8E81FB780> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94d11000 - 0x94d8dff3  com.apple.Metadata (10.7.0 - 707.3) <6B6A6216-23D0-34CE-8099-BEE9BA42501E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94d8e000 - 0x94dbeff3  libtidy.A.dylib (15.10) <F2F4E000-E305-3089-91E6-3DB0ED07E74A> /usr/lib/libtidy.A.dylib
    0x94dbf000 - 0x94dc2ff9  libCGXType.A.dylib (324.6) <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x94dc3000 - 0x94e1aff3  com.apple.Suggestions (2.0 - 102.1) <AA369EDE-913D-3C0D-8CE1-92C1C171CCA7> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x94e1b000 - 0x94e22ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94e23000 - 0x94e71ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94e72000 - 0x94e92ffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x94e96000 - 0x94ec7fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94ec8000 - 0x9530afff  com.apple.CoreGraphics (1.600.0 - 324.6) <66556166-F9A7-3EEC-A562-46061C7A79E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9530b000 - 0x95314ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x95315000 - 0x953feff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x953ff000 - 0x954a9fff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x954aa000 - 0x954b0fff  com.apple.phonenumbers (1.1 - 47) <DD22B3D1-DA4B-3794-9D73-E90D49A1F88E> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x954b1000 - 0x9550cfff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9550d000 - 0x9552afff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x9552b000 - 0x9552cfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x9552d000 - 0x95534fff  libsystem_dnssd.dylib (379.32.1) <6A505284-2382-3F27-B96F-15FFDACF004E> /usr/lib/system/libsystem_dnssd.dylib
    0x95535000 - 0x95820ff7  com.apple.AOSKit (1.05 - 151) <F470C45E-620C-3FF2-AB1C-2D57FCD215E7> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x95821000 - 0x95825fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x95826000 - 0x95828fff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x958c7000 - 0x9594ffff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95950000 - 0x95954ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x95955000 - 0x95aa2ffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x95aa3000 - 0x95ad8ff7  com.apple.framework.internetaccounts (2.1 - 210) <8F2D0EB8-C997-3833-AA80-95AF7AA377BE> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x95ad9000 - 0x95adafff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x95adb000 - 0x95b35fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x95b36000 - 0x95b39ffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95b3a000 - 0x95b7cffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x95b7d000 - 0x95b92fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95b93000 - 0x95b95ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x95b96000 - 0x95dadfff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95dae000 - 0x95dbbfff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95dbc000 - 0x95dc8ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x95dc9000 - 0x95df3ff9  com.apple.framework.Apple80211 (8.0.1 - 801.17) <8A8BBBFD-496B-35A6-A26E-ADF8D672D908> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x95df4000 - 0x961d7ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96218000 - 0x9628dff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9628e000 - 0x9628effe  com.apple.AOSMigrate (1.0 - 1) <4EA0829E-6AE5-3877-A5B6-032AFDF28D39> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x9628f000 - 0x96326ff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96327000 - 0x9643fff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x96440000 - 0x964fdfeb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x964fe000 - 0x96547ff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x96548000 - 0x965f7ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x965f8000 - 0x96601ffe  com.apple.aps.framework (3.0 - 3.0) <09D5F4F3-03FD-3077-A51D-B368F18ED1D4> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x96602000 - 0x9667cff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9667d000 - 0x96699ff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9669a000 - 0x9676efff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96771000 - 0x96774fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96775000 - 0x96778ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x

    If You know that 1080p works then
    How much free space is there on Your Start-Up (Mac OS) Hard Disk ?
    Has to be plenty - Other hard disks doesn't count as this needed space can not be addressed elsewhere.
    Else see if You get any ideas from this
    When iMovie doesn't work as intended this can be due to a lot of reasons
    • iMovie Pref files got corrupted - trash it/they and iMovie makes new and error free one's
    • Creating a new User-Account and log into this - forces iMovie to create all pref. files new and error free
    • Event or Project got corrupted - try to make a copy and repair
    • a codec is used that doesn't work
    • problem in iMovie Cache folder - trash Cache.mov and Cache.plist
    • version miss match of QuickTime Player / iMovie / iDVD
    • preferences are wrong - Repair Preferences
    • other hard disk problem - Repair Hard Disk (Disk Util tool - but start Mac from ext HD or DVD)
    • External hard disks - MUST BE - Mac OS Extended (hfs) formatted to work with Video
    ( UNIX/DOS/FAT32/Mac OS Exchange - works for most other things - but not for Video )
    • USB-flash-memories do not work
    • Net-work connected hard disks - do not work
    • iPhoto Library got problems - let iPhoto select another one or repair it. Re-build this first then try to re-start iMovie.
    This You do by
    _ close iPhoto
    _ on start up of iPhoto - Keep {cmd and alt-keys down}
    _ now select all five options presented
    _ WAIT a long long time
    • free space on Start-Up (Mac OS) hard disk to low (<1Gb) - I never go under 25Gb free space for SD-Video (4-5 times more for HD)
    • external devices interferes - turn off Mac - disconnect all of them and - Start up again and re-try
    • GarageBand fix - start GB - play a few notes - Close it again and now try iMovie
    • Screen must be set to million-colors
    • Third-party plug-ins doesn't work OK
    • Run "Cache Out X", clear out all caches and restarts the Mac
    • Let Your Mac be turned on during one night. At about midnight there is a set of maintenance programs that runs and tidying up. This might help
    • Turn off Your Mac - and disconnect Mains - for about 20-30 minutes - at least this resets the FireWire port.
    • In QuickTime - DivX, 3ivx codec, Flip4Mac, Perian etc - might be problematic - temporarily move them out and re-try
    (I deleted the file "3ivxVideoCodec.component" located in Mac HD/Library/Quicktime and this resolved my issue.)
    buenrodri wrote
    I solved the problem by removing the file: 3ivxVideoCodec.component. after that, up-dated iMovie runs ok.
    Last resort: Trash all of iMovie and re-install it
    Yours Bengt W

  • Adobe Illustrator API - delay in returning control to calling app?

    Hi! We have developed a windows application that adds texts from a XML file to series (hundreds) of EPS files in batch mode by communicating with Illustrator CS4 using the API.
    The application runs fine, but rather slow. We found out that the application runs much faster when keeping it’s window active by constantly clicking the main window title with the left mouse button. It seems that after performing a command Illustrator somehow waits some time before returning control to the calling application. A process that can be speeded up by manually activating the calling application with a mouse click. We found a tool that can simulate the mouse clicking, which is a nice work around. However, we would rather find out what causes this behavior and deal with it in the application itself.
    Any suggestions?

    You need to give a bit more detail about what you are doing if you want to get help.
    You say you have written a windows application that communicates with Illustrator "using the API". You also say the application runs faster by "constantly clicking on the main window title" are you talking about the Illustrator window or your applications window?
    This forum is about the Illustrator SDK that is used by Illustrator plugins which are not separate applications with their own window.
    If your application is really a separate executable with its own window, I am not sure how you are communicating with Illustrator but it sounds like there is a problem in your applications message loop.

  • Regarding Mail:  When I return to my computer after it has gone to sleep, my accounts go offline, and are always asking me for the password.  THis is very annoying.  How can I prevent this?

    Regarding Mail:  When I return to my computer after it has gone to sleep, my accounts go offline, and are always asking me for the password.  THis is very annoying.  How can I prevent this?

    Back up all data.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Select the login keychain from the list on the left side of the Keychain Access window. If your default keychain has a different name, select that.
    If the lock icon in the top left corner of the window shows that the keychain is locked, click to unlock it. You'll be prompted for the keychain password, which is the same as your login password, unless you've changed it.
    Right-click or control-click the login entry in the list. From the menu that pops up, select Change Settings for Keychain "login". In the sheet that opens, uncheck both boxes, if not already unchecked.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ First Aid
    If the box marked Keep login keychain unlocked is not checked, check it.
    Select
    Keychain Access ▹ Keychain First Aid
    from the menu bar and repair the keychain. Quit Keychain Access.

  • How can I remember the last place I browsed? When I return to the main page it would be great if a marking of some kind would show the last place I browsed.

    When I return to the main browsing page after checking a site it would be great if the last place I checked would highlight on the main browsing page or have an indicator of some sort to let me know.
    When returning to the Browsing page it is difficult to remember which link I clicked on and have to guess or start over again so can someone let me know how to do this if it can be done?
    Can't remember but I think that you can do this with Internet Explorer.
    Thank you.

    I am not sure exactly what you are trying to do but firefox calls favorites bookmarks, and has a variety of methods of making, sorting and displaying these, it also stores your 'history' and lets you see that or use it in the location bar search.
    Have a look at some of the following
    * [[Bookmarks]] <-- coloured text is a clickable link --
    * [[Location bar autocomplete]]
    *[[Browsing basics#w_retracing-your-steps]] <-- this is a long article it will scroll up and down once opened

  • Free of goods returns with out main item

    Hi.. All
    Free goods returns with out Main item
    created sale order with Shoes 5 Pair qnty
    and free of goods are  pair Soxs are 3
    Now one pair Damaged now i want to send returns only For Free of goods Here no main item

    """"No seller is creating  billing with free of goods with main items
    now i am going to create Return order main item is coming as well as Free of goods items also coming to RO
    Now i want to return only free of goods only one pair
    i cant delete main item Right""""
    Have you tested this? what was the problem in  deleting the item??
    Have you activated the complete reference in your VTAA controls??
    Phanikumar

  • Adobe Premiere CS6 keeps crashing - Crashed Thread:  0  Dispatch queue: com.apple.main-thread     Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

    Please help!  I've been wrestling with this all day!  Everytime I come to a clip on the timeline that has been adjusted via speed/duration the program crashes.  I've already deleted the preference files for all Adobe products.  Any suggestions?
    ~bdh
    Process:         Adobe Premiere Pro CS6 [955]
    Path:            /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Identifier:      com.adobe.AdobePremierePro
    Version:         6.0.2 (6.0.2)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [277]
    User ID:         501
    Date/Time:       2013-04-29 19:09:02.439 -0500
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          141185 sec
    Crashes Since Last Report:           19
    Per-App Interval Since Last Report:  99397 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      00F758BA-37B7-1854-7225-6B1330BFA109
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000100000000-0000000100004000 [   16K] r-x/rwx SM=COW  /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.dvaui.framework               0x00000001034a6d3a dvaui::ui::UI_Node::GetViewScaleFactor() const + 10
    1   com.adobe.UIFramework.framework          0x0000000103cc7066 UIF::TabViewImpl::UI_Draw(dvaui::drawbot::Drawbot*) const + 730
    2   com.adobe.dvaui.framework               0x00000001034addbb void dvaui::drawbot::InvokeDrawbotFromRegionT<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, bool) + 187
    3   com.adobe.dvaui.framework               0x00000001034adf79 void dvaui::drawbot::InvokeDrawbot<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, std::vector<dvacore::geom::RectT<int>, std::allocator<dvacore::geom::RectT<int> > >*, bool) + 313
    4   com.adobe.dvaui.framework               0x00000001034a6381 dvaui::ui::OS_View::UI_HandlePlatformDrawEvent(dvaui::drawbot::SurfaceInterface *) + 397
    5   com.adobe.dvacore.framework             0x000000010018b9ee int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    6   com.adobe.premiere.frontend             0x000000010c748725 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost: :function0<int>) + 57
    7   com.adobe.dvacore.framework             0x000000010018b8e0 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void >(boost::function0<void>, bool*) + 112
    8   com.adobe.dvacore.framework             0x000000010018de1d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    9   com.adobe.dvaui.framework               0x000000010349c7bd -[DVAMacContainerView drawRect:] + 125
    10  com.apple.AppKit                        0x00007fff88bcf094 -[NSView _drawRect:clip:] + 4217
    11  com.apple.AppKit                        0x00007fff88bcd6f1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    12  com.apple.AppKit                        0x00007fff88bcb722 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    13  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    14  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    15  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    16  com.apple.AppKit                        0x00007fff88bcb173 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    17  com.apple.AppKit                        0x00007fff88bc6d9d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    18  com.apple.AppKit                        0x00007fff88b90cc3 -[NSView displayIfNeeded] + 1830
    19  com.apple.AppKit                        0x00007fff88b901fc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    20  com.apple.Foundation                    0x00007fff85910af3 __NSFireTimer + 96
    21  com.apple.CoreFoundation                0x00007fff8477b804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    22  com.apple.CoreFoundation                0x00007fff8477b31d __CFRunLoopDoTimer + 557
    23  com.apple.CoreFoundation                0x00007fff84760ad9 __CFRunLoopRun + 1529
    24  com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    25  com.apple.HIToolbox                     0x00007fff84d26eb4 RunCurrentEventLoopInMode + 209
    26  com.apple.HIToolbox                     0x00007fff84d26c52 ReceiveNextEventCommon + 356
    27  com.apple.HIToolbox                     0x00007fff84ce7044 IsUserStillTracking(MenuSelectData*, unsigned char*) + 194
    28  com.apple.HIToolbox                     0x00007fff84cd089a TrackMenuCommon(MenuSelectData&, unsigned char*) + 307
    29  com.apple.HIToolbox                     0x00007fff84e66e04 PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned int, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1556
    30  com.apple.HIToolbox                     0x00007fff84e66794 _HandlePopUpMenuSelection7 + 629
    31  com.apple.AppKit                        0x00007fff88e2f54b _NSSLMPopUpCarbonMenu3 + 3916
    32  com.apple.AppKit                        0x00007fff88e2e5d8 -[NSCarbonMenuImpl _popUpContextMenu:withEvent:forView:withFont:] + 189
    33  com.apple.AppKit                        0x00007fff88f88fe3 -[NSMenu _popUpContextMenu:withEvent:forView:withFont:] + 200
    34  com.adobe.dvaui.framework               0x00000001034c44b6 dvaui::utility::OS_Menu_MAC::DoPopupMenu(dvaui::utility::OS_Menu_MAC&, dvaui::ui::UI_Node const*, dvacore::geom::RectT<float> const&, bool, bool) + 764
    35  com.adobe.dvaui.framework               0x00000001034c45b9 dvaui::utility::OS_Menu_MAC::DoContextMenu(dvaui::utility::OS_Menu_MAC&, dvaui::ui::UI_Node const*, dvacore::geom::PointT<float> const&, bool) + 55
    36  com.adobe.dvaui.framework               0x000000010343773b dvaui::ui::UI_DoContextMenu(dvaui::utility::OS_Menu&, dvaui::ui::UI_Node const&, dvacore::geom::PointT<float> const&) + 27
    37  com.adobe.UIFramework.framework          0x0000000103c7e978 UIF::MenuUtils::TrackPopupMenu(boost::intrusive_ptr<dvaui::utility::OS_Menu>, dvaui::ui::UI_Node const&, ASL::ParamPoint<int> const&) + 40
    38  com.adobe.HandlerTimeline.framework          0x0000000109c40f97 HandlerTimeline::TrackViewArea::DoClipContextMenuWithEffects(ASL::ParamPoint<in t> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*, ASL::InterfaceRef<BE::ITrackItem, BE::ITrackItem>, char const*) + 1929
    39  com.adobe.HandlerTimeline.framework          0x0000000109c41aaa HandlerTimeline::TrackViewArea::DoContextMenu(ASL::ParamPoint<int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*, ASL::InterfaceRef<BE::ITrackItem, BE::ITrackItem>, unsigned int) + 514
    40  com.adobe.HandlerTimeline.framework          0x0000000109c421c3 HandlerTimeline::TrackViewArea::HandleContextMenuInContentView(ASL::ParamPoint< int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*) + 1115
    41  com.adobe.HandlerTimeline.framework          0x0000000109b525bb HandlerTimeline::EditorController::RightButtonUp(ASL::ParamPoint<int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*) + 169
    42  com.adobe.UIFramework.framework          0x0000000103cbf29f UIF::SubViewImpl::UI_DoMouseEvent(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&) + 981
    43  com.adobe.dvaui.framework               0x000000010343c4a8 dvaui::ui::UI_Node::DispatchMouseEvent::operator()(dvaui::ui::UI_Node*, dvaui::ui::UI_Node*, dvacore::geom::PointT<float> const&) const + 184
    44  com.adobe.dvaui.framework               0x000000010344605b std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 91
    45  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    46  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    47  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    48  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    49  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    50  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    51  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    52  com.adobe.dvaui.framework               0x000000010343c615 dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeaf(dvaui::ui::MouseEvent const&, bool) + 75
    53  com.adobe.dvaui.framework               0x000000010344027e dvaui::ui::UI_Node::UI_DispatchMouseEventToTarget(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&, bool) + 136
    54  com.adobe.dvaui.framework               0x000000010344031f dvaui::ui::UI_Node::UI_DispatchMouseEvent(dvaui::ui::MouseEvent const&, bool) + 63
    55  com.adobe.dvaui.framework               0x00000001034a7bf2 dvaui::ui::OS_View::UI_DispatchPlatformMouseEvent(dvaui::ui::MouseEvent const&, bool) + 702
    56  com.adobe.dvaui.framework               0x00000001034a5cfa dvaui::ui::OS_View::UI_DispatchPlatformMouseClickEvent(dvaui::ui::OS_Event const&) + 470
    57  com.adobe.dvaui.framework               0x00000001034a4919 dvaui::ui::OS_View::UI_DispatchEvent(dvaui::ui::OS_Event*) + 123
    58  com.adobe.dvaui.framework               0x00000001034a5fe8 dvaui::ui::OS_View::UI_HandleOSEvent(dvaui::ui::OS_Event*) + 28
    59  com.adobe.dvaui.framework               0x00000001034a2ac7 dvaui::ui::OS_View::UI_HandlePlatformEvent(NSEvent*) + 57
    60  com.adobe.dvacore.framework             0x000000010018b9ee int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    61  com.adobe.premiere.frontend             0x000000010c748725 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost: :function0<int>) + 57
    62  com.adobe.dvacore.framework             0x000000010018b8e0 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void >(boost::function0<void>, bool*) + 112
    63  com.adobe.dvacore.framework             0x000000010018de1d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    64  com.adobe.dvaui.framework               0x000000010349bc8f -[DVAMacContainerView rightMouseUp:] + 127
    65  com.apple.AppKit                        0x00007fff88c7277d -[NSWindow sendEvent:] + 7428
    66  com.apple.AppKit                        0x00007fff88c6e674 -[NSApplication sendEvent:] + 5761
    67  com.adobe.dvaui.framework               0x0000000103495bb6 -[DVAMacApplication sendEvent:] + 630
    68  com.adobe.premiere.frontend             0x000000010c781520 -[PremiereCocoaMacApplication sendEvent:] + 304
    69  com.apple.AppKit                        0x00007fff88b8424a -[NSApplication run] + 636
    70  com.adobe.premiere.frontend             0x000000010c782784 FE::MacApplication::RunSelf() + 44
    71  com.adobe.premiere.frontend             0x000000010c72cdef FE::Application::Run(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 5681
    72  com.adobe.premiere.frontend             0x000000010c783cfc AppMain + 380
    73  com.adobe.premiere.startup              0x000000010c8f41d7 Run + 247
    74  com.adobe.AdobePremierePro              0x00000001000038b7 main + 647
    75  com.adobe.AdobePremierePro              0x000000010000361c start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff82eecd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff85512dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff855129ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.ASLFoundation.framework          0x00000001005c0770 ASL::(anonymous namespace)::TaskProc(void*) + 160
    6   com.apple.CoreServices.CarbonCore          0x00007fff89bf97e0 PrivateMPEntryPoint + 58
    7   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff82eecd16 kevent + 10
    1   com.adobe.dvatransport.framework          0x000000010079bf12 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 240
    2   com.adobe.dvatransport.framework          0x00000001007a60da boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<b oost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 512
    3   com.adobe.dvatransport.framework          0x00000001007a6467 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   com.adobe.dvatransport.framework          0x0000000100792fbd SkyConnectionEnv::MainLoop() + 129
    5   com.adobe.dvatransport.framework          0x000000010079303b SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    6   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    7   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.adobe.dvatransport.framework          0x00000001007a604b boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<b oost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 369
    3   com.adobe.dvatransport.framework          0x00000001007a6467 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   com.adobe.dvatransport.framework          0x0000000100793c2a boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_b ase::work_io_service_runner>::run() + 42
    5   com.adobe.dvatransport.framework          0x0000000100796c33 boost_asio_detail_posix_thread_function + 19
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff82eec122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9dfd pthread_mutex_lock + 536
    2   com.adobe.AudioSupport.framework          0x000000010308b132 ML::MonitorMixer::Stop() + 30
    3   com.adobe.PlayerHost.framework          0x00000001049b79b4 ML::VideoPlayer::PlayerCallback_StopAudio() + 256
    4   com.adobe.PlayerHost.framework          0x00000001049d6ad6 ML::SDKCallback_StopAudio(int) + 86
    5   com.adobe.PlayerMediaCore.framework          0x0000000119de812d AdobePlayer::PlayerAudioHost::StopPlayback() + 137
    6   com.adobe.TransmitHost.framework          0x000000010d1e0aa0 ML::TransmitManager::StopPlayback() + 182
    7   com.adobe.PlayerMediaCore.framework          0x0000000119de9754 AdobePlayer::PlayerClock::SetState(AdobePlayer::PlayState, PrActivationEvent) + 828
    8   com.adobe.PlayerMediaCore.framework          0x0000000119df88a3 AdobePlayer::PlayerMain::ForceStop() + 253
    9   com.adobe.PlayerMediaCore.framework          0x0000000119df89e3 AdobePlayer::PlayerMain::OnStop() + 79
    10  com.adobe.PlayerMediaCore.framework          0x0000000119e05926 PrPlayModule<AdobePlayer::PlayerMain>::PlayEntry(int, pmStdParms*, void*, void*) + 302
    11  com.adobe.PlayerHost.framework          0x000000010499b0c9 ML::CallPlayerModuleGuarded(int (*)(int, pmStdParms*, void*, void*), int, pmStdParms*, void*, void*, int*, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 137
    12  com.adobe.PlayerHost.framework          0x000000010499bf94 ML::PlayerModule::CallPlugin(int, void*, void*) + 130
    13  com.adobe.PlayerHost.framework          0x00000001049c0e77 ML::VideoPlayer::CallPlayModuleSelector_Stop() + 79
    14  com.adobe.PlayerHost.framework          0x00000001049abb16 ML::VideoPlayer::StopPlayback(bool, bool) + 64
    15  com.adobe.PlayerHost.framework          0x00000001049a0500 ML::PlayModuleThreadQueue::ExecuteDeferredCall(ASL::ObjectPtr<ML::DeferredCallB ase, ASL::AtomicValue>) + 280
    16  com.adobe.PlayerHost.framework          0x00000001049a1537 ML::PlayModuleThreadQueue::ServiceQueue() + 253
    17  com.adobe.ASLFoundation.framework          0x00000001005b3232 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54
    18  com.adobe.dvacore.framework             0x00000001001f62a2 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 194
    19  com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    20  com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    21  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    22  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8475b233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff84760916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    5   com.apple.AVCVideoServices              0x0000000119c71ad0 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 186
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8475b233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff84760916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    5   com.apple.AVCVideoServices              0x0000000119c71ad0 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 186
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9023 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    4   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    8   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c1f3dd TS_exception_listener_thread + 67
    3   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff82eec386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8d02e800 nanosleep + 163
    2   com.adobe.ScriptLayerPPro.framework          0x0000000106d0c6fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.ScriptLayerPPro.framework          0x0000000106cf8259 ScObjects::BridgeTalkThread::run() + 169
    4   com.adobe.ScriptLayerPPro.framework          0x0000000106d0ca66 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 20:: com.apple.audio.IOThread.client
    0   libsystem_c.dylib                       0x00007fff8cf92d2c OSAtomicAdd64Barrier$VARIANT$mp + 8
    1   com.adobe.dvacore.framework             0x0000000100241356 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::TrySimpleAllocate() + 144
    2   com.adobe.dvacore.framework             0x00000001002642e2 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::DoAllocate() + 28
    3   com.adobe.dvacore.framework             0x0000000100245829 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::Allocate(unsigned long) + 279
    4   com.adobe.dvacore.framework             0x000000010016412f dvacore::utility::SmallBlockAllocator::Allocate(unsigned long) + 63
    5   com.adobe.Backend.framework             0x00000001015adcd4 std::_Rb_tree<ASL::ImmutableString, std::pair<ASL::ImmutableString const, BE::OutputValueBase*>, std::_Select1st<std::pair<ASL::ImmutableString const, BE::OutputValueBase*> >, std::less<ASL::ImmutableString>, dvacore::utility::SmallBlockAllocator::STLAllocator<std::pair<ASL::ImmutableStr ing const, BE::OutputValueBase*> > >::_M_create_node(std::pair<ASL::ImmutableString const, BE::OutputValueBase*> const&) + 20
    6   com.adobe.Backend.framework             0x00000001015ade02 std::_Rb_tree<ASL::ImmutableString, std::pair<ASL::ImmutableString const, BE::OutputValueBase*>, std::_Select1st<std::pair<ASL::ImmutableString const, BE::OutputValueBase*> >, std::less<ASL::ImmutableString>, dvacore::utility::SmallBlockAllocator::STLAllocator<std::pair<ASL::ImmutableStr ing const, BE::OutputValueBase*> > >::_M_insert_unique(std::pair<ASL::ImmutableString const, BE::OutputValueBase*> const&) + 206
    7   com.adobe.Backend.framework             0x00000001015ac650 BE::CompositeOutputValue::CompositeOutputValue(BE::CompositeOutputValue const&) + 234
    8   com.adobe.Backend.framework             0x00000001015ab298 BE::CompositeOutputValue::Clone() const + 34
    9   com.adobe.Backend.framework             0x00000001015ac6d2 BE::CompositeOutputValue::CompositeOutputValue(BE::CompositeOutputValue const&) + 364
    10  com.adobe.Backend.framework             0x00000001015bacec BE::CompositeProperty::CompositeProperty(BE::CompositeOutputValue const&, std::map<dvacore::utility::Guid, ASL::ObjectPtr<BE::OutputValueEntry, ASL::AtomicValue>, std::less<dvacore::utility::Guid>, std::allocator<std::pair<dvacore::utility::Guid const, ASL::ObjectPtr<BE::OutputValueEntry, ASL::AtomicValue> > > > const&) + 52
    11  com.adobe.Backend.framework             0x00000001015b69f1 BE::PropertiesImpl::SetOpaqueUnknown(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>, bool) + 963
    12  com.adobe.Backend.framework             0x00000001015bb93c BE::PropertiesProxy::SetOpaqueUnknown(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>, bool) + 144
    13  com.adobe.HandlerProject.framework          0x0000000109576871 void BE::IProperties::SetOpaque<ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown> >(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>&, bool) + 121
    14  com.adobe.HandlerProject.framework          0x00000001095759bc HandlerProject::ProjectViewStateList::WriteViewStateList() + 138
    15  com.adobe.HandlerProject.framework          0x00000001094a827e HandlerProject::ProjectHandler::ViewDestroyed(HandlerProject::ProjectView*, dvacore::utility::Guid) + 866
    16  com.adobe.HandlerProject.framework          0x0000000109523289 HandlerProject::ProjectView::DestroySelf() + 139
    17  com.adobe.dvaworkspace.framework          0x0000000106a342dc dvaworkspace::workspace::Workspace::RemoveTab(dvaworkspace::workspace::Workspac eFrame*, int, bool, bool) + 140
    18  com.adobe.dvaworkspace.framework          0x0000000106a31cbf dvaworkspace::workspace::Workspace::RemoveTab(dvaworkspace::workspace::Workspac eFrame*, dvaworkspace::workspace::TabPanel*, bool, bool) + 67
    19  com.adobe.dvaworkspace.framework          0x0000000106a48400 dvaworkspace::workspace::WorkspaceFrame::RemoveAllTabs(bool) + 162
    20  com.adobe.dvaworkspace.framework          0x0000000106a346c6 dvaworkspace::workspace::TopLevelWindow::RemoveTabPanels(bool) + 392
    21  com.adobe.dvaworkspace.framework          0x0000000106a3552a dvaworkspace::workspace::Workspace::RemoveTabPanels() + 150
    22  com.adobe.premiere.frontend             0x000000010c726700 FE::Application::CloseCurrentWorkspace() + 552
    23  com.adobe.premiere.frontend             0x000000010c75e50d FE::DocumentManager::CloseDocumentWithPrompt(bool, bool) + 353
    24  com.adobe.premiere.frontend             0x000000010c75f151 FE::DocumentManager::AttemptPanicProjectSave() + 991
    25  com.adobe.premiere.frontend             0x000000010c72b74e FE::Application::AttemptPanicProjectSave() + 24
    26  com.adobe.premiere.frontend             0x000000010c78327c UnixInterruptSignal(int) + 44
    27  com.adobe.dvacore.framework             0x0000000100279b15 (anonymous namespace)::SignalHandler(int, __siginfo*, void*) + 261
    28  libsystem_c.dylib                       0x00007fff8cf9294a _sigtramp + 26
    29  libsystem_c.dylib                       0x00007fff8cf91ac7 memmove$VARIANT$sse42 + 159
    30  com.adobe.AudioRenderer.framework          0x0000000100df1fbb AR::AudioBuffer::CopyFrom(AR::AudioBuffer const&, unsigned int) + 59
    31  com.adobe.AudioRenderer.framework          0x0000000100e4797b AR::AudioPannerDirectChannelAssignmentBase::Process(AR::AudioBuffer const&, AR::AudioBuffer&) + 713
    32  com.adobe.AudioRenderer.framework          0x0000000100e4cc46 AR::AudioPannerStereoTo16Channel::ProcessAudioData(AR::AudioBuffer const&, AR::AudioBuffer&) + 174
    33  com.adobe.AudioRenderer.framework          0x0000000100e1ff32 AR::RealtimeAudioClipTrackItemRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 3666
    34  com.adobe.AudioRenderer.framework          0x0000000100df7822 AR::AudioClipTrackRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 2530
    35  com.adobe.AudioRenderer.framework          0x0000000100e13697 AR::AudioTrackGroupRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 571
    36  com.adobe.AudioSupport.framework          0x0000000103089b67 ML::MonitorMixer::AudioCallback(AR::AudioBuffer&, dvamediatypes::TickTime&) + 6969
    37  com.adobe.AudioSupport.framework          0x000000010309284c ML::AudioPlaybackBuffer::GetAudioData(AR::AudioBuffer&) + 106
    38  com.adobe.AudioSupport.framework          0x00000001030993af ML::CoreAudioHost::ProcessAudio(unsigned int, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*) + 813
    39  com.adobe.AudioSupport.framework          0x000000010309954e ML::CoreAudioHost::DeviceIOProc(unsigned int, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*, void*) + 38
    40  com.apple.audio.CoreAudio               0x00007fff8f09fbad HALC_ProxyIOContext::IOWorkLoop() + 2413
    41  com.apple.audio.CoreAudio               0x00007fff8f09f1a1 HALC_ProxyIOContext::IOThreadEntry(void*) + 83
    42  com.apple.audio.CoreAudio               0x00007fff8f09f069 HALB_IOThread::Entry(void*) + 75
    43  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    44  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff82eec2aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x000000011ff375ec Invoke + 45721
    2   ServiceManager-Launcher.dylib           0x000000011ff36813 Invoke + 42176
    3   ServiceManager-Launcher.dylib           0x000000011ff35be0 Invoke + 39053
    4   ServiceManager-Launcher.dylib           0x000000011ff35c66 Invoke + 39187
    5   ServiceManager-Launcher.dylib           0x000000011ff3130f Invoke + 20412
    6   ServiceManager-Launcher.dylib           0x000000011ff31616 Invoke + 21187
    7   ServiceManager-Launcher.dylib           0x000000011ff31cd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib           0x000000011ff31f41 Invoke + 23534
    9   ServiceManager-Launcher.dylib           0x000000011ff3461d Invoke + 33482
    10  ServiceManager-Launcher.dylib           0x000000011ff34775 Invoke + 33826
    11  ServiceManager-Launcher.dylib           0x000000011ff34fb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib           0x000000011ff350ad Invoke + 36186
    13  ServiceManager-Launcher.dylib           0x000000011ff27d6b Login + 480
    14  ServiceManager-Launcher.dylib           0x000000011ff2b7ad Login + 15394
    15  ServiceManager-Launcher.dylib           0x000000011ff35412 Invoke + 37055
    16  ServiceManager-Launcher.dylib           0x000000011ff37253 Invoke + 44800
    17  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    18  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9023 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c21f6d TSWaitOnSemaphoreCommon + 265
    4   com.apple.CoreServices.CarbonCore          0x00007fff89be5b93 AsyncFileThread(void*) + 257
    5   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff82eec6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8cfa6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8cfa6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8cf911d1 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff82eec6d6 __workq_ke

    Either or both of the following third-party system modifications may be contributing to your problem:
    FxFactory
    CUDA
    I suggest you uninstall them, one at a time, according to the developers' instructions, to see whether you can identify which is at fault. Reboot after uninstalling CUDA.
    Back up all data before making any changes.

Maybe you are looking for

  • "disk could not be read"? WHAT?

    Anyone heard of this...during the process of updating my ipod on itunes (loading more music on my ipod) the update stops and this message comes up..."Attempting to copy to the disk "XXXX's IPOD" failed. The disk could not be read from or written to."

  • Move/remove/change RSS button from next to refresh sign (Safari 4.0.4)

    How to move/remove/change RSS-button location from next to refresh sign as I'm wasting alot of time everytime when trying to hit that refresh button? I know I can use keyboard to refresh a webpage, but I really like the easy to use stop/refresh butto

  • A Question about contacts that are in the history

    Hi, I am a novice in the Mac world and have a 2 part questions. 1- I deleted my bosses Pop Account and lost all his email. I used File Salvage to get them back. No problem I found all 3235 of them. I cannot figure out how to get them back into the Ma

  • Converting a group of 1-D arrays to one 2-D array.

    I want to build a 2-D array out of multiple 1-D arrays so that I can wire the 2-D array to the "Write to Spreadsheet File.vi" function. I searched the Array palette endlessly with no luck...any ideas?

  • To JDev Team : Error in HTMLInputElement Code

    In the Render() method in HTMLInputElement there seems to be an error: if (onChange != null) out.print(" onchange=\""); out.print(onChange); out.print("\""); if (onChange != null) out.print(" onselect=\""); out.print(onSelect); out.print("\""); I thi