ID CS5 Not Responding upon Packaging

Hello,
For some time now, (Since my upgrade from CS4 to CS5) when I attempt to package a design file it often crashes ID. (Not Responding) I'm running a 27" iMac, Intel Core 2 Duo, OS X 10.6.7 with 8 GB ram.
It will generally allow me to go as far as selecting what to package. Fonts, Images, etc. I found if I deselected the fonts for packaging, it will usually collect with no problems.
I figured it was some font issue hanging ID. Of course I have repaired permissions and ran disk first aid just incase it was a machine problem. All clear. I also ran FontDoctor which found no errors.
Here's where things get strange - If I leave open the Force Quit Appications window and then package a larger catalog file, even with fonts unchecked, the Force Quit Appications window will show InDesign alternating between not responding and responding. If I allow this to go on long enough, it will generally output the collected file...or crash entirely. ID looks quite unstable on my machine during this process.
If ID hangs long enough, a report is generated, which I dutifully send along to Adobe. Has anyone heard of this strange and annoying issue. For the record, it never happened to be on any previous version of ID. Only CS 5, and yes, I ran CS 4 on this same machine - no packaging issues.
Thanks for any advice.

The hang reports are not the same as normal crash reports. They are analagous to running Sample Process in the Activity Monitor, but they are a more vague indicator, telling you statistically all the things ID was doing in the period of time sampled, but leaving the human to guess at which was problematic, which may not equate. Whereas when there is a crash, generally it's clear exactly which routine was at fault, though of course sometimes it's not obvious why.
I'm not sure why you don't see the crash logs as well. But fear not, I'm sure you'll have the opportunity to see them again unless the problem is solved.
[Did IDML help?]
Anyhow, your hang does show some interesting stuff:
12 ??? (in Package and Preflight + 75603) [0x1b438753]
12 GetPlugIn + 501288 (in EPS Page Item) [0x1fbc4a68]
12 GetPlugIn + 498540 (in EPS Page Item) [0x1fbc3fac]
12 GetPlugIn + 492320 (in EPS Page Item) [0x1fbc2760]
12 GetPlugIn + 471325 (in EPS Page Item) [0x1fbbd55d]
12 GetPlugIn + 470420 (in EPS Page Item) [0x1fbbd1d4]
12 GetPlugIn + 469126 (in EPS Page Item) [0x1fbbccc6]
12 GetPlugIn + 462185 (in EPS Page Item) [0x1fbbb1a9]
12 GetPlugIn + 436935 (in EPS Page Item) [0x1fbb4f07]
12 GetPlugIn + 435096 (in EPS Page Item) [0x1fbb47d8]
12 GetPlugIn + 434452 (in EPS Page Item) [0x1fbb4554]
12 GetPlugIn + 130391 (in Photoshop Import Filter) [0x1f951287]
12 GetPlugIn + 119078 (in Photoshop Import Filter) [0x1f94e656]
12 PSLSimplifyPath + 54 (in AdobePSL) [0x1dadbe4c]
12 PSLGetPathBounds + 211 (in AdobePSL) [0x1dadbdd3]
12 PSLInsertGuide + 459803 (in AdobePSL) [0x1db9b2d3]
12 PSLInsertGuide + 474382 (in AdobePSL) [0x1db9ebc6]
12 PSLInsertGuide + 471272 (in AdobePSL) [0x1db9dfa0]
11 PSLInsertGuide + 1673386 (in AdobePSL) [0x1dcc3762]
6 PSLInsertGuide + 1672961 (in AdobePSL) [0x1dcc35b9]
6 PSLInsertGuide + 1625774 (in AdobePSL) [0x1dcb7d66]
6 PSLInsertGuide + 1656360 (in AdobePSL) [0x1dcbf4e0]
3 PSLInsertGuide + 1656017 (in AdobePSL) [0x1dcbf389]
2 PSLInsertGuide + 1655243 (in AdobePSL) [0x1dcbf083]
1 PSLInsertGuide + 1654470 (in AdobePSL) [0x1dcbed7e]
1 PSLInsertGuide + 1649375 (in AdobePSL) [0x1dcbd997]
1 PSLInsertGuide + 1627209 (in AdobePSL) [0x1dcb8301]
1 PSLInsertGuide + 1612003 (in AdobePSL) [0x1dcb479b]
1 malloc + 50 (in libSystem.B.dylib) [0x95dd6218]
1 malloc_zone_malloc + 81 (in libSystem.B.dylib) [0x95dd8148]
1 szone_malloc_should_clear + 263 (in libSystem.B.dylib) [0x95dd82a1]
1 tiny_malloc_from_free_list + 1020 (in libSystem.B.dylib) [0x95dd9469]
That is, the packaging code called the EPS Page Item code, which called the Photoshop Import Filter, which called the AdobePSL library, which ultimately asked the system to allocate memory.
This suggests that the problem relates to some particular EPS file you have in your document (not a font). So I would try process of elimination with such files (divide and conquer). Save As to a tempory workign file. Delete half your images or half your pages. See if the problem is solved. Lather rinse repeat. Of course, if the problem is not 100% reproducible, this is a big pain. Still, it's the way to track it down.
I suspect that AdobePSL is the Adobe Photoshop Library, though that's inconsistent with the finger-pointing at an EPS file. I wouldn't expect PSL to handle them at all, and would expect PSL to be used for PSD files primarily. But still speculating.
Anyhow, there's quite a lot of stuff going on in PSLInsertGuide. I have no idea what that function does, but it seems weird to me that EPS files would have guides at all (PostScript has no such concept!), though of course postscript files (and Photoshop EPS files, and Photoshop PSD files) might very well. If you figure out what file it is, determining if there's something strange with guides in it might be helpful.
As for your screenshot...it's tough to know what's necessarily relevant. The complaints about scripting additions are presumably because you have a non-Intel version of some Quark scripting addition installed. You can certainly try removing it, but I'd be surprised if it helped.
malloc() failing is fascinating, especially correlating as it does with your hang report. malloc() is the routine C programs call to allocate memory dynamically. Anywhere from a few bytes to much much more. If malloc() fails badly enough to log to the console, I would have expected it to crash the program hard, rather than just sitting there spinning between 11:37:42 and 11:39:40. There's no accounting for taste.
malloc() is calling mmap(), a routine which controls the relationship between virtual memory pages and...other things. It's apparently doing so with a size of 802 megabytes, which is the sort of thing that's not expected to work and probably indicates a bug. And it gets back error code 12, which is:
$ grep 12 /usr/include/sys/errno.h
#define ENOMEM   12           /* Cannot allocate memory */
Not a shocker.
Anyhow, there's some food for thought.

Similar Messages

  • Adobe Bridge CS5 Not Responding

    Periodically I will click from one folder to another folder in Bridge CS5 and it causes Bridge to freeze and give me a "Not Responding" message. I have never had a problem when running a batch or image processor through Bridge, just when clicking from one folder to another folder. Is there a way to prevent this from happening? If someone could explain it to me in a very simplistic form I'd appreciate it!

    If you are building cache when you go to a folder, a spinning arrow in lower left corner, and then click on another folder before the process is finished Bridge can balk.  You can get a contaminated cache to foul things up.   To rebuild the cache for a folder click tools/cache/purge cache for xxx folder.
    You might compact the cache (edit/preferences/cache) to reduce its size and make it run more effeciently.

  • Premiere Pro CS5 Not Responding (Freezing) When Working With Other Programs

    Hello,
    I have a performance issue with Premiere Pro 5.0.3 version. When I have the program open and bounce to another program or Windows Explorer window lets say to drag in an asset such as a music or video file and then when I make the Premiere window active the program does not respond for a good 15 seconds, then after some processing (you see the mouse icon change and hear the hard drive chugging), I am able to again work. This is happening every time I switch windows to work on something else. Even if I just click away to another window and click right back without doing anything else, it does this non responding action. It even says it in the title bar (Not responding). I am wasting so much time waiting for the program to respond.
    My system :
    Windows 7 Ultimate
    Intel Core i7 CPU 860 @ 2.80 GHz
    8.00 GB of RAM
    Quadra 5800 Nvidia graphics card
    Drobo Pro 24 TB drive (where my project files, music & video files live) connected via iSCUSI
    Sonnet 4 TB raid drive (scratch disc) connect via ESATA
    Dual Monitors
    Please help!
    ~ Doug

    Doug,
    Similar had plagued earlier releases of CS5, but I thought that it had been addressed with the CS5.0.3 update. Maybe I am wrong.
    There were several other threads here, with similar problems. Maybe they contain some tips that will help. The "constant" seemed to be shifting focus from PrPro, and then back to PrPro.
    Good luck,
    Hunt

  • CS5 not responding after opening Bridge and Camera Raw

    I have been using bridge, camera raw and cs5 since it was released. I have not any problems until this morning. I am able to open Bridge and Camera Raw, but when trying to open PS CS5, it does not respond?
    Any suggestions?

    Try resetting your preferences as described in the FAQ.
    http://forums.adobe.com/thread/375776?tstart=0
    You either have to physically delete (or rename) the preference files or, if using the Alt, Ctrl, and Shift method, be sure that you get a confirmation dialog.
    This resets all settings in Photoshop to factory defaults.
    A complete uninstall/re-install will not affect the preferences and a corrupt file there may be causing the problem.

  • Illustrator CS5 not responding during rendering

    Hi,
    I have a strange problem that I don't understand, maybe someone can help me?
    I run Illustrator CS5 on a win7 64bits / i7 / 8 Go RAM / ATI Radeon HD 5470 and each time I want to apply a simple 3D effect (3D rotation), AI is freezing during the rendering... The aim is to do a disco ball by revolution of a half circle with a map art for the disco ball faces. Everything is OK until I try to change the disco ball perspective axis! Illustrator is not responding anymore and win7 ask me for closing the program.
    I have already try different issues without success:
    - change the scratch disk
    - improve the performance : closing all running applications, simplify win7 display settings (disable aero,...), clean/defrag the disk, the register and memory, define a swap up to 24 Go
    - ramdisk dedicated to readyboost, scratch disk of AI and swap
    It usually freezes after 50% progression, with the optimized performance it goes sometimes until 90%...
    Thank you in advance!

    You simply have too many blend steps and it's running out of memory. Expand the "More" section to control that.
    Mylenium

  • When i click on text tool the photoshop CS5 not responding

    hey guys
    i have problem in photoshop CS5
    that is when i click on text tool the photoshop not responding and i cann't do anything when i click on text tool the photoshop not responding and when i want to close photoshop i just have one way it's from task .
    so how can i solved this problem because my all work on the photoshop it's texts please help me and thank you so much adobe

    Select the Text Tool
    Then right click on its' icon in the Option bar.
    Select "Reset Tool" from the pop-up menu.
    Any questions, get back to me.
    Gene

  • AI CS5 not responding, Win7

    Hey all: I'm at my wit's end. I've got my IT dept trying to get this sorted out to no effect.
    I've got a PC running Windows 7 Pro 32 bit, with a 2.8ghz Core i7 processor and 8GB of RAM. I've got over 350GB open on my drive.
    A fresh install (after running the adobe uninstaller) of CS5 will leave me with a "Not Responding" hang up if I try to open (via double-clicking a file OR the Open dialog box), or if I try to make a new document.
    One clue I noticed was that during install the installer threw a warning about not meeting minimum specs, just for Illustrator. The system has more than the minimum processor, RAM, screen resolution, and all the other specs, so I'm not sure why it would think it did not. That leads me to wonder if that's a symptom of whatever's wrong.
    This is a new job and Illustrator is my primary work environment, so any help is greatly greatly appreciated!

    I have just deleted the plug-in and illustrator now appears to work - seems that the plug-in was causing the problem.
    Am about to re-download and re-install the plug-ing and see if the problem happens again...

  • HELP: iPhoto not responding upon login for weeks!!!!

    Hi,
    I am in need of help. My iPhoto will not open when I open the application. All I get it Application not responding when I right click on the app sign and the spinnning wheel when I go on iPhoto. It's just froze.
    I have tried launching iphoto whilst pressing both alt and cmd and rebuilt thumbnails etc etc but yet its still not working. My iMovie starts by going into iPhoto and iMovie is now freezing and not responding when its launched too.
    I have photos in there I want to keep but I do do backups via an external hardrive daily so I presume the photos will be on that somewhere? Can anyone help me t get this back up and running. I use my laptop for my small business and I really need to use this applications.
    Thanks in advance. I can send the Error message I get once I quit the app if you need it. I just ignore it and dont send to apple.
    Cheers,
    Tom

    Date/Time:       2012-03-05 19:20:34 +0000
    OS Version:      10.7.2 (Build 11C74)
    Architecture:    x86_64
    Report Version:  9
    Command:         iPhoto
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Version:         9.2.1 (9.2.1)
    Build Version:   3
    Project Name:    iPhotoProject
    Source Version:  628000000000000
    Parent:          launchd [125]
    PID:             43390
    Event:           hang
    Duration:        12.93s
    Steps:           130 (100ms sampling interval)
    Pageins:         435
    Pageouts:        0
    Process:         iPhoto [43390]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Architecture:    i386
    UID:             501
      Thread 0x2a85e8   
      User stack:
        130 ??? (in iPhoto) [0x10a29]
          130 ??? (in iPhoto) [0x1159a]
            130 NSApplicationMain + 1054 (in AppKit) [0x95cdd18a]
              130 -[NSApplication run] + 911 (in AppKit) [0x95a48c22]
                130 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113 (in AppKit) [0x95a4c8ab]
                  130 _DPSNextEvent + 678 (in AppKit) [0x95a4d040]
                    130 BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x9670ec0a]
                      130 ReceiveNextEventCommon + 168 (in HIToolbox) [0x9670ecc6]
                        130 RunCurrentEventLoopInMode + 318 (in HIToolbox) [0x96707a7f]
                          130 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x93049798]
                            130 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x930498ec]
                              130 __CFRunLoopRun + 1112 (in CoreFoundation) [0x9304a0d8]
                                130 __CFRunLoopDoSources0 + 440 (in CoreFoundation) [0x930202c8]
                                  130 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15 (in CoreFoundation) [0x9302084f]
                                    130 __NSThreadPerformPerform + 503 (in Foundation) [0x9493af64]
                                      130 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x930a9091]
                                        130 -[RKInvoker _invokeTarget:] + 33 (in RedRock) [0x1d5ae61]
                                          130 -[NSInvocation invoke] + 137 (in CoreFoundation) [0x930abd59]
                                            130 __invoking___ + 29 (in CoreFoundation) [0x930abe1d]
                                              130 ??? (in iPhoto) [0x29ae90]
                                                130 ??? (in iPhoto) [0x8c50f]
                                                  130 ??? (in iPhoto) [0x8c6da]
                                                    130 ICACopyObjectPropertyDictionary + 24 (in ImageCapture) [0x92df91f6]
                                                      130 ICACopyObjectPropertyDictionary_Deprecated + 89 (in ImageCapture) [0x92df9257]
                                                        130 ICACommand::ProcessCommand() + 74 (in ImageCapture) [0x92df800e]
                                                          130 ICACommand::SendSync() + 62 (in ImageCapture) [0x92df8112]
                                                            130 ICAAESendMessage + 78 (in ImageCapture) [0x92df83f0]
                                                              130 AESendMessage + 4116 (in AE) [0x96da024f]
                                                                130 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x93049798]
                                                                  130 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x930498ec]
                                                                    130 __CFRunLoopRun + 1428 (in CoreFoundation) [0x9304a214]
                                                                      130 __CFRunLoopServiceMachPort + 170 (in CoreFoundation) [0x930410ea]
                                                                        130 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9caf9c22]
      Kernel stack:
        130 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x2a85f6     DispatchQueue 1701273966
      User stack:
        130 _dispatch_mgr_thread + 53 (in libdispatch.dylib) [0x9c93e6a7]
          130 kevent + 10 (in libsystem_kernel.dylib) [0x9cafc90a]
      Kernel stack:
        130 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d40]
      Thread 0x2a8666     DispatchQueue 1919904114
      User stack:
        130 start_wqthread + 30 (in libsystem_c.dylib) [0x956846fe]
          130 _pthread_wqthread + 346 (in libsystem_c.dylib) [0x95682b24]
            130 _dispatch_worker_thread2 + 231 (in libdispatch.dylib) [0x9c93ee70]
              130 _dispatch_call_block_and_release + 15 (in libdispatch.dylib) [0x9c93de11]
                130 ____NSOQSchedule_block_invoke_2 + 135 (in Foundation) [0x94947152]
                  130 -[NSOperation start] + 67 (in Foundation) [0x94932fff]
                    130 -[__NSOperationInternal start] + 797 (in Foundation) [0x94933323]
                      130 -[AccountConfigurationProfileInformationDownloadOperation main] + 234 (in AccountConfigurationPlugin) [0x128f05a]
                        130 ??? (in MobileMePublisher) [0xf211f88]
                          130 ??? (in iPhoto) [0x60bdf]
                            130 -[AccountConfigurationManagerBase accountInformationForAccountType:accountIdentifier:] + 143 (in AccountConfigurationPlugin) [0x128b10f]
                              130 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 160 (in Foundation) [0x9493a3de]
                                130 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1236 (in Foundation) [0x9493a948]
                                  130 -[NSCondition wait] + 304 (in Foundation) [0x94947d40]
                                    130 pthread_cond_wait$UNIX2003 + 71 (in libsystem_c.dylib) [0x9563542c]
                                      130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a85f8   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a85fa   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTRunLoopThread run:] + 509 (in ProXTCore) [0x175daed]
                  130 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273 (in Foundation) [0x948f2607]
                    130 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x93049798]
                      130 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x930498ec]
                        130 __CFRunLoopRun + 1428 (in CoreFoundation) [0x9304a214]
                          130 __CFRunLoopServiceMachPort + 170 (in CoreFoundation) [0x930410ea]
                            130 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9caf9c22]
      Kernel stack:
        130 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x2a85fb   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTRunLoopThread run:] + 509 (in ProXTCore) [0x175daed]
                  130 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273 (in Foundation) [0x948f2607]
                    130 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x93049798]
                      130 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x930498ec]
                        130 __CFRunLoopRun + 1428 (in CoreFoundation) [0x9304a214]
                          130 __CFRunLoopServiceMachPort + 170 (in CoreFoundation) [0x930410ea]
                            130 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9caf9c22]
      Kernel stack:
        130 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x2a8619   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a861a   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a861b   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a861c   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a861d   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTRunLoopThread run:] + 509 (in ProXTCore) [0x175daed]
                  130 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273 (in Foundation) [0x948f2607]
                    130 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x93049798]
                      130 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x930498ec]
                        130 __CFRunLoopRun + 1428 (in CoreFoundation) [0x9304a214]
                          130 __CFRunLoopServiceMachPort + 170 (in CoreFoundation) [0x930410ea]
                            130 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9caf9c22]
      Kernel stack:
        130 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x2a861e   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a861f   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8620   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8621   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8622   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8623   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8624   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8625   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8626   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8627   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8628   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8629   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a862a   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a862b   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a862c   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[RAOperationQueueImpl _workThread] + 217 (in iLifeSQLAccess) [0x184edc9]
                  130 -[RALatchTrigger wait] + 81 (in iLifeSQLAccess) [0x184ef41]
                    130 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9caf9c22]
      Kernel stack:
        130 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x2a862d   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[RAOperationQueueImpl _workThread] + 217 (in iLifeSQLAccess) [0x184edc9]
                  130 -[RALatchTrigger wait] + 81 (in iLifeSQLAccess) [0x184ef41]
                    130 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9caf9c22]
      Kernel stack:
        130 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x2a863e   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 438 (in ProXTCore) [0x175b6c6]
                  130 -[XTThread handleMessage:] + 1285 (in ProXTCore) [0x175cf55]
                    130 -[XTDistributor distributeMessage:] + 726 (in ProXTCore) [0x175d406]
                      130 -[XTSubscription postMessage:] + 181 (in ProXTCore) [0x175dcb5]
                        130 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x930a9091]
                          130 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166 (in ProXTCore) [0x1766626]
                            130 -[NSObject performSelector:] + 58 (in CoreFoundation) [0x930b153a]
                              130 -[RKAsyncImageRenderer _backgroundRenderThread:] + 177 (in RedRock) [0x1d38ac1]
                                130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                                  130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                                    130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                                      130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                                        130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a864b   
      User stack:
        130 start_wqthread + 30 (in libsystem_c.dylib) [0x956846fe]
          130 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x9cafc02e]
      Kernel stack:
        130 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1680]
      Thread 0x2a8686   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 438 (in ProXTCore) [0x175b6c6]
                  130 -[XTThread handleMessage:] + 1285 (in ProXTCore) [0x175cf55]
                    130 -[XTDistributor distributeMessage:] + 726 (in ProXTCore) [0x175d406]
                      130 -[XTSubscription postMessage:] + 181 (in ProXTCore) [0x175dcb5]
                        130 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x930a9091]
                          130 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166 (in ProXTCore) [0x1766626]
                            130 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x930a9091]
                              130 -[RKInvoker _invokeTargetWithPool:] + 68 (in RedRock) [0x1d6c6c4]
                                130 -[RKInvoker _invokeTarget:] + 33 (in RedRock) [0x1d5ae61]
                                  130 -[NSInvocation invoke] + 137 (in CoreFoundation) [0x930abd59]
                                    130 __invoking___ + 29 (in CoreFoundation) [0x930abe1d]
                                      130 ??? (in iPhoto) [0x5c5c2]
                                        130 ??? (in iPhoto) [0x5c66a]
                                          130 -[NSCondition wait] + 304 (in Foundation) [0x94947d40]
                                            130 pthread_cond_wait$UNIX2003 + 71 (in libsystem_c.dylib) [0x9563542c]
                                              130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8688   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 416 (in ProXTCore) [0x175b6b0]
                  130 -[XTMsgQueue waitForMessage] + 50 (in ProXTCore) [0x175c702]
                    130 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x9493e7fe]
                      130 -[NSConditionLock lockWhenCondition:beforeDate:] + 294 (in Foundation) [0x9493e92a]
                        130 -[NSCondition waitUntilDate:] + 427 (in Foundation) [0x94978507]
                          130 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x95684f7b]
                            130 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9cafb83e]
      Kernel stack:
        130 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          130 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca468]
            130 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f169]
              130 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7f3]
                130 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  130 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    130 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x2a8689   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378 (in Foundation) [0x9495221c]
                  130 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x93049798]
                    130 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x930498ec]
                      130 __CFRunLoopRun + 1428 (in CoreFoundation) [0x9304a214]
                        130 __CFRunLoopServiceMachPort + 170 (in CoreFoundation) [0x930410ea]
                          130 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9caf9c22]
      Kernel stack:
        130 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x2a868e   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __select + 10 (in libsystem_kernel.dylib) [0x9cafbb42]
      Kernel stack:
        130 wakeup + 992 (in mach_kernel) [0xffffff80005526d0]
      Thread 0x2a868f   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[RAOperationQueueImpl _workThread] + 217 (in iLifeSQLAccess) [0x184edc9]
                  130 -[RALatchTrigger wait] + 81 (in iLifeSQLAccess) [0x184ef41]
                    130 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9caf9c22]
      Kernel stack:
        130 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x2a8692   
      User stack:
        130 thread_start + 34 (in libsystem_c.dylib) [0x956846de]
          130 _pthread_start + 335 (in libsystem_c.dylib) [0x95680ed9]
            130 __NSThread__main__ + 1582 (in Foundation) [0x94945f2d]
              130 -[NSThread main] + 45 (in Foundation) [0x94945f7d]
                130 -[XTThread run:] + 438 (in ProXTCore) [0x175b6c6]
                  130 -[XTThread handleMessage:] + 1285 (in ProXTCore) [0x175cf55]
                    130 -[XTDistributor distributeMessage:] + 726 (in ProXTCore) [0x175d406]
                      130 -[XTSubscription postMessage:] + 181 (in ProXTCore) [0x175dcb5]
                        130 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x930a9091]
                          130 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166 (in ProXTCore) [0x1766626]
                            130 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x930a9091]
                              130 -[RKInvoker _invokeTargetWithPool:] + 68 (in RedRock) [0x1d6c6c4]
                                130 -[RKInvoker _invokeTarget:] + 33 (in RedRock) [0x1d5ae61]
                                  130 -[NSInvocation invoke] + 137 (in CoreFoundation) [0x93

  • CS5 - "Not Responding" message when saving large files??

    For quite some time now, I have been getting a message in the Save Progress Bar Dialogue that says "Not Responding" .... after I start saving a file.  The progress bar will advance about 20%, then it will say (Not Responding) in the box.... and then it will disappear and the file will save.
    It's very disconcerting to see this error pop up time-after-time when saving files.
    I also get this error when opening certain files.
    Anybody else get this error?
    The files may typically have several 'placed' files from Photoshop.... which is another topic and unresolved problem with Illustrator too.
    Anything to worry about??
    Thanks.
    Oh...
    I have an Intel i7 with 12gbs of ram, a fast SAS boot drive, and plenty of bells and whistles in the 'power' department.
    Todd

    Have you already tried saving the file to a different location (maybe on the other drive)?
    Just to find out if it's Illustrator or the drive.

  • Premiere PRO CS5 Not Responding after 5.0.3 update.

    Was working great until I updated to 5.0.3. As soon as I open a project I get a spinning circle along with (Not Responding) notice at the top. After waiting 10 minutes to see if it would respond and nothing happening I force quit the program. I've tried restarting the computer, opening up different projects, starting new projects and running the updater again. Still can't get it to work.
    I don't think it's a hardware issue since it was running great prior to the update and this issue occuring immediately after the update.

    Thanks Bill.
    Eric at ADK actually resolved this for me. I hadn't uninstalled the previous driver for the quadro 5000 card when that driver was updated and premiere was having issues with the multiple nividia drivers so it was really an nvidia issue. He unistalled all the previous drivers for the quadro and that fixed the issue.
    Can't say enough wonderful things about Eric and ADK. Very friendly and patient but most importantly knowledgeable.

  • Illustrator CS5 "Not Responding"

    When working only in Illustrator and I try to save a file that I have open, illustrator "not responding" happens and finally responds after 30 minutes to an hour. This happens every time I try to use Illustrator for the past three weeks. I have uninstalled and re installed but no luck. Please any help or suggestions? New laptop and the rest of the adobe suite works fine.

    Nick,
    Did you reinstall using the full three step way?
    Uninstall, run the Cleaner Tool, and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Itunes not responding upon startup - but then it starts up.

    I recently installed a 500GB HD in my first generation macbook, and proceeded to transfer my audio library off an external, onto my computer. I had some issues with 'dead links' (itunes would import all but one song out of an album, for example) but I was able to solve that problem thanks to genius playlists and itunes track CPR.
    After that, all went very well, until one day, when I opened itunes, the icon didn't bounce, nothing happened - I "right clicked" on the icon and it said *"itunes not responding (force quit)"*. This happens every time I try to open it. However, *if I sit back and wait literally two minutes*, (it feels like a very long time) *it opens, just dandy and works fine*. How to I remedy this?

    Since you recently installed a new hard disk, perhaps you should check for errors.
    Open Disk Utility, in the Utilities folder in the Applications folder.
    Select your disk, and click First Aid.Click Verify Disk.
    If the disk needs repairs, do one ofthe following:
    Insert your Mac OS X Install disc in your computer’s optical drive or an optical drive connected to your computer, and then restart your computer. When you hear the startup tone, hold down the C key until you see the progress indicator, which looks like a spinning gear. Follow the onscreen instructions until the menu bar appears with the Utilities menu in it, choose Utilities > Disk Utility, click First Aid, and then click Verify. If DU reports errors, click Repair. When Disk Utility is finished, from the Menu Bar, select Utilities/Startup Disk. Click MacintoshHD and click Restart.
    Or you could boot in Safe Mode:
    To start up in safe mode:
    Shut down your computer and wait 10 seconds.
    Press the power button.
    Immediately after you hear the startup tone, hold down the Shift key.
    You should press the Shift key as soon as possible after your hear the startup tone, but not before.
    Release the Shift key when you see the gray Apple logo and progress indicator (spinning gear).
    To leave safe mode, restart the computer normally without holding down any keys during startup.
    Carolyn

  • InDesign CS5 not responding

    I have document size of 55 MB and has 52 pages with text and pictures. But when I try to delete or insert pages the programms stops responding. We have tried to edit this document on different computers (bigger RAM or videocart) but it will bring us to same result.
    How can we resolve this issue? Because this document will be updating annualy.

    That size seems large for a .indd file. Does it have a lot of embedded image content or complex pasted vectors?
    The first thing you should try is a Save As to a new file name. This will remove old and useless change data from previous editing. If that is not sufficient to solve the problem, the next step is an export to .idml (see Remove minor corruption by exporting). If that still does not work we're going to need to know your OS before we can tell if there is any kind of error reporting that would be avaialable for diagnosis.

  • JDev 10.1.3 not responding upon start up.

    Hi,
    I've been using the new JDev 10.1.3 since it was released and I've enjoyed doing so except for one serious problem:
    Eventually, when I try to open JDeveloper it'll load, display the state I left it in when I last closed it, display "Building class list for project "<my project>"." in the status bar, and then stop responding.
    The only way I can resolve this is by reinstalling JDev 10.1.3. and lose all my settings. :(
    This time, I had 5 java class files open, and the CVS Pending Changes tab.
    Other things I have open are the Applications Navigator, Structure Pane, and Run Manager Pane. Hope this helps...
    -Chris

    Geoffrey,
    I reproduced the bug by closing JDev with the Pending Changes dockable open and restarting jdev using the jdev.exe in jdev/bin as you requested.
    I didn't see any "Found one Java-level deadlock:" but I'm pasting what I did see below.
    Here's a theory, though: Apparently I'm using a version of CVS that JDeveloper has known issues with, because whenever I first try to use CVS in JDev I get the following dialog window (pop-up):
    "Warning: JDeveloper has known issues with your CVS version on the Windows platform. For better compatibility download and configure CVSNT or elect to use the internal client in CVS preferences."
    Normally I just click OK and I'm still able to use CVS in JDev (sans browsing the CVS tree and viewing incoming changes, which I guess is what isn't supported). What I think is happening is that the dialog window (pop-up) is trying to display (or is displayed but I can't see it) and is waiting for me to click OK (which I can't); hence the lock-up.
    Hopefully that made sense. Thoughts? We can go into why I'm not using CVSNT or the internal CVS later...
    Full thread dump Java HotSpot(TM) Client VM (1.4.2_04-b05 mixed mode):
    "Pending Changes: Finding candidate files..." prio=7 tid=0x057fcc50 nid=0xa20 wa
    iting on condition [697f000..697fd8c]
    at java.lang.Thread.sleep(Native Method)
    at oracle.jdeveloper.vcs.changelist.ChangeListWindow$ChangeListProgressT
    ask.run(ChangeListWindow.java:1001)
    at java.lang.Thread.run(Thread.java:534)
    "Thread-6" daemon prio=7 tid=0x057fb350 nid=0x460 in Object.wait() [687f000..687
    fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x13000b80> (a java.awt.EventQueue$1AWTInvocationLock)
    at java.lang.Object.wait(Object.java:429)
    at java.awt.EventQueue.invokeAndWait(EventQueue.java:829)
    - locked <0x13000b80> (a java.awt.EventQueue$1AWTInvocationLock)
    at oracle.javatools.dialogs.BaseMessageDialog.doInvoke(BaseMessageDialog
    .java:410)
    at oracle.javatools.dialogs.BaseMessageDialog.runDialog(BaseMessageDialo
    g.java:390)
    at oracle.javatools.dialogs.MessageDialog.runDialog(MessageDialog.java:2
    06)
    at oracle.javatools.dialogs.MessageDialog.runDialog(MessageDialog.java:2
    12)
    at oracle.javatools.dialogs.MessageDialog.information(MessageDialog.java
    :542)
    at oracle.jdevimpl.vcs.cvs.CVSClient$7.run(CVSClient.java:823)
    at oracle.jdeveloper.vcs.util.VCSIdeEventRecorder.invokeAfterMainWindowO
    pened(VCSIdeEventRecorder.java:96)
    at oracle.jdevimpl.vcs.cvs.CVSClient.checkForClientNonCVSNTOnWindows(CVS
    Client.java:819)
    at oracle.jdevimpl.vcs.cvs.CVSClient.verifyClientState(CVSClient.java:76
    3)
    - locked <0x12cf5e60> (a oracle.jdevimpl.vcs.cvs.CVSClient)
    at oracle.jdevimpl.vcs.cvs.CVSFileURLFileSystemHelper.checkForCVS(CVSFil
    eURLFileSystemHelper.java:430)
    at oracle.jdevimpl.vcs.cvs.CVSChangeListWindow$UpdateStatusTask.run(CVSC
    hangeListWindow.java:1460)
    at java.util.TimerThread.mainLoop(Timer.java:432)
    at java.util.TimerThread.run(Timer.java:382)
    "AuditExecutor-1" daemon prio=7 tid=0x057f3cb0 nid=0x1534 in Object.wait() [677f
    000..677fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12fab130> (a oracle.javatools.util.SynchronizedQueue)
    at java.lang.Object.wait(Object.java:429)
    at oracle.javatools.util.SynchronizedQueue.remove(SynchronizedQueue.java
    :61)
    - locked <0x12fab130> (a oracle.javatools.util.SynchronizedQueue)
    at oracle.jdevimpl.audit.util.SwingExecutor.run(SwingExecutor.java:467)
    at java.lang.Thread.run(Thread.java:534)
    "ShellIntegration" prio=5 tid=0x057ee610 nid=0x6b4 runnable [5b5f000..5b5fd8c]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
    - locked <0x12fa7138> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(ServerSocket.java:448)
    at java.net.ServerSocket.accept(ServerSocket.java:419)
    at oracle.ideimpl.shell.ShellIntegration$DaemonThread.run(ShellIntegrati
    on.java:189)
    "Version Control Changelist Updater" prio=2 tid=0x057b9da0 nid=0x1d4 waiting for
    monitor entry [605f000..605fd8c]
    at oracle.jdevimpl.vcs.cvs.CVSClient.isClientAvailable(CVSClient.java:72
    0)
    - waiting to lock <0x12cf5e60> (a oracle.jdevimpl.vcs.cvs.CVSClient)
    at oracle.jdevimpl.vcs.cvs.CVSStatusCache._getImpl(CVSStatusCache.java:5
    2)
    at oracle.jdevimpl.vcs.cvs.CVSStatusCache.getImpl(CVSStatusCache.java:38
    at oracle.jdeveloper.vcs.spi.VCSStatusCache.getValuesImpl(VCSStatusCache
    .java:30)
    at oracle.jdeveloper.vcs.spi.VCSURLBasedCache.getValuesImpl(VCSURLBasedC
    ache.java:135)
    at oracle.jdeveloper.vcs.changelist.MultiChangeListLocalStatusCache.getV
    aluesImpl(MultiChangeListLocalStatusCache.java:59)
    at oracle.jdeveloper.vcs.spi.VCSURLBasedCache.getValues(VCSURLBasedCache
    .java:70)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.filterByStatus(
    ChangeListEventQueue.java:455)
    at oracle.jdevimpl.vcs.cvs.CVSChangeListWindow$CustomChangeListEventQueu
    e.filterByStatus(CVSChangeListWindow.java:1226)
    at oracle.jdevimpl.vcs.cvs.CVSChangeListWindow$CandidatesChangeListEvent
    Queue.filterByStatus(CVSChangeListWindow.java:1366)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processRequeryE
    vent(ChangeListEventQueue.java:227)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processEvent(Ch
    angeListEventQueue.java:182)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processEvents(C
    hangeListEventQueue.java:550)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.eventLoop(Chang
    eListEventQueue.java:621)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.access$1000171(
    ChangeListEventQueue.java:48)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue$7.run(ChangeLis
    tEventQueue.java:487)
    at java.lang.Thread.run(Thread.java:534)
    "Version Control Changelist Updater" prio=2 tid=0x057b8980 nid=0xabc in Object.w
    ait() [5f5f000..5f5fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12eafba0> (a oracle.jdevimpl.vcs.cvs.CVSChangeListWindow
    $IncomingChangeListEventQueue)
    at java.lang.Object.wait(Object.java:429)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.awaitEvents(Cha
    ngeListEventQueue.java:599)
    - locked <0x12eafba0> (a oracle.jdevimpl.vcs.cvs.CVSChangeListWindow$Inc
    omingChangeListEventQueue)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.eventLoop(Chang
    eListEventQueue.java:610)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.access$1000171(
    ChangeListEventQueue.java:48)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue$7.run(ChangeLis
    tEventQueue.java:487)
    at java.lang.Thread.run(Thread.java:534)
    "Version Control Changelist Updater" prio=2 tid=0x057b8e90 nid=0x17c0 waiting fo
    r monitor entry [5e5f000..5e5fd8c]
    at oracle.jdevimpl.vcs.cvs.CVSClient.isClientAvailable(CVSClient.java:72
    0)
    - waiting to lock <0x12cf5e60> (a oracle.jdevimpl.vcs.cvs.CVSClient)
    at oracle.jdevimpl.vcs.cvs.CVSStatusCache._getImpl(CVSStatusCache.java:5
    2)
    at oracle.jdevimpl.vcs.cvs.CVSStatusCache.getImpl(CVSStatusCache.java:38
    at oracle.jdeveloper.vcs.spi.VCSStatusCache.getValuesImpl(VCSStatusCache
    .java:30)
    at oracle.jdeveloper.vcs.spi.VCSURLBasedCache.getValuesImpl(VCSURLBasedC
    ache.java:135)
    at oracle.jdeveloper.vcs.changelist.MultiChangeListLocalStatusCache.getV
    aluesImpl(MultiChangeListLocalStatusCache.java:59)
    at oracle.jdeveloper.vcs.spi.VCSURLBasedCache.getValues(VCSURLBasedCache
    .java:70)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.filterByStatus(
    ChangeListEventQueue.java:455)
    at oracle.jdevimpl.vcs.cvs.CVSChangeListWindow$CustomChangeListEventQueu
    e.filterByStatus(CVSChangeListWindow.java:1226)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processRequeryE
    vent(ChangeListEventQueue.java:227)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processEvent(Ch
    angeListEventQueue.java:182)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.processEvents(C
    hangeListEventQueue.java:550)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.eventLoop(Chang
    eListEventQueue.java:621)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue.access$1000171(
    ChangeListEventQueue.java:48)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue$7.run(ChangeLis
    tEventQueue.java:487)
    at java.lang.Thread.run(Thread.java:534)
    "WaitCursorTimer" daemon prio=5 tid=0x057b5d00 nid=0x1130 in Object.wait() [5d5f
    000..5d5fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12e9c5b0> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:429)
    at java.util.TimerThread.mainLoop(Timer.java:403)
    - locked <0x12e9c5b0> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:382)
    "Native Directory Watcher" prio=2 tid=0x057a1320 nid=0x125c runnable [5c5f000..5
    c5fd8c]
    at oracle.ide.natives.NativeHandler.enterWatcherThread(Native Method)
    at oracle.ide.natives.NativeHandler$2.run(NativeHandler.java:263)
    at java.lang.Thread.run(Thread.java:534)
    "IconOverlayTracker Timer" prio=5 tid=0x05795430 nid=0x958 in Object.wait() [595
    f000..595fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12dc4968> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:429)
    at java.util.TimerThread.mainLoop(Timer.java:403)
    - locked <0x12dc4968> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:382)
    "TimerQueue" daemon prio=5 tid=0x008a2150 nid=0xd88 in Object.wait() [49ef000..4
    9efd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12922ab0> (a javax.swing.TimerQueue)
    at javax.swing.TimerQueue.run(TimerQueue.java:231)
    - locked <0x12922ab0> (a javax.swing.TimerQueue)
    at java.lang.Thread.run(Thread.java:534)
    "AWT-EventQueue-0" prio=7 tid=0x008662b0 nid=0x1514 waiting for monitor entry [4
    4df000..44dfd8c]
    at oracle.jdevimpl.vcs.cvs.CVSClient.isClientAvailable(CVSClient.java:72
    0)
    - waiting to lock <0x12cf5e60> (a oracle.jdevimpl.vcs.cvs.CVSClient)
    at oracle.jdevimpl.vcs.cvs.CVSController.updateImpl(CVSController.java:6
    5)
    at oracle.jdeveloper.vcs.spi.VCSController.update(VCSController.java:84)
    at oracle.jdevimpl.vcs.cvs.CVSController.update(CVSController.java:43)
    at oracle.ide.IdeAction.updateAction(IdeAction.java:699)
    at oracle.ide.IdeAction.updateAction(IdeAction.java:688)
    at oracle.ide.addin.AbstractView.updateToolbarActions(AbstractView.java:
    154)
    at oracle.jdeveloper.vcs.changelist.ChangeListWindow$PropertyListener.pr
    opertyChange(ChangeListWindow.java:830)
    at javax.swing.event.SwingPropertyChangeSupport.firePropertyChange(Swing
    PropertyChangeSupport.java:264)
    at javax.swing.event.SwingPropertyChangeSupport.firePropertyChange(Swing
    PropertyChangeSupport.java:232)
    at javax.swing.JComponent.firePropertyChange(JComponent.java:3954)
    at oracle.jdeveloper.vcs.changelist.ChangeList.setBusy(ChangeList.java:6
    51)
    at oracle.jdeveloper.vcs.changelist.ChangeListEventQueue$1.run(ChangeLis
    tEventQueue.java:173)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    "Java2D Disposer" daemon prio=10 tid=0x008637a0 nid=0x1050 in Object.wait() [43d
    f000..43dfd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x127cf2d0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
    - locked <0x127cf2d0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
    at sun.java2d.Disposer.run(Disposer.java:100)
    at java.lang.Thread.run(Thread.java:534)
    "AWT-Windows" daemon prio=7 tid=0x00858b10 nid=0xa48 runnable [3d9f000..3d9fd8c]
    at sun.awt.windows.WToolkit.eventLoop(Native Method)
    at sun.awt.windows.WToolkit.run(WToolkit.java:262)
    at java.lang.Thread.run(Thread.java:534)
    "AWT-Shutdown" prio=5 tid=0x00858ea0 nid=0x14a0 in Object.wait() [3c9f000..3c9fd
    8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x1279c908> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:429)
    at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
    - locked <0x1279c908> (a java.lang.Object)
    at java.lang.Thread.run(Thread.java:534)
    "Signal Dispatcher" daemon prio=10 tid=0x00841d20 nid=0xa08 waiting on condition
    [0..0]
    "Finalizer" daemon prio=9 tid=0x0083b060 nid=0x1020 in Object.wait() [348f000..3
    48fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12781a48> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
    - locked <0x12781a48> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=10 tid=0x0083bd20 nid=0x41c in Object.wait() [33
    8f000..338fd8c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x12781ab0> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Object.java:429)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115)
    - locked <0x12781ab0> (a java.lang.ref.Reference$Lock)
    "main" prio=5 tid=0x008339e0 nid=0x12f4 waiting on condition [0..12f418]
    "VM Thread" prio=5 tid=0x008390b0 nid=0x808 runnable
    "VM Periodic Task Thread" prio=10 tid=0x008433d0 nid=0x968 waiting on condition
    "Suspend Checker Thread" prio=10 tid=0x00840880 nid=0x98c runnable

  • Photoshop CS5 not responding to Cintiq stylus

    I've been having problems with photoshop on my cintiq for a while now.  I'm using the Cintiq 12wx on the latest wacom driver, 6.1.6-5.  I just downloaded and installed the Photoshop 12.0.1 update and that didn't do anything to help me.  I have a dual monitor setup between my regular, main monitor and my cintiq.
    When I open photoshop up on the tablet, as soon as I touch my stylus to the screen the cursor disappears and is sent over to my main monitor.  I can't get it to go back to the cintiq screen even if I recalibrate.  However, when I close photoshop and touch the blank screen the cursor acts perfectly normal.  I tried again in Flash CS5 and in non-adobe products and the cursor acts just as it should in all of them.  The only place this has popped up is in Photoshop.
    In addition, I'm experiencing bad pressure sensitivity.  When I could still use the cursor the brush would not get as then as it should have, being stuck at a minimum of 5 or 6 pixels instead of one, and sometimes the pressure sensitivity would go away completely and I would get fat streaks all across my canvas.
    Please let me know if there's anything that can be done to fix this ASAP!

    I use Photoshop all day in my job, and have for years. This is the first time the tools have locked. I can't change from one marquee to another. More are joining this little strike: burn won't change to dodge, magic wand to its variant, etc. Crop works but every photo comes into the dialog box as having a pixel count of 1 per inch.
    Tech support has over an hour wait. Anyone have a suggestion?
    Mac 10.6.7
    Mac Pro
    8GB RAM
    CS5
    Photoshop 12.0.4x64

Maybe you are looking for

  • Portlet backing file vs content backing file

    Hi, could someone explain the differences between a "portlet backing file" and a "content backing file". Both are properties available on a portlet. Thx Emmanuel

  • Urgent :- Wrong print out in a different language.

    Hi, In my invoice for a particular output type, the default language is english, but the invoice print comes in german. if I change the  default language to Danish in Header output in invoice, the print out comes in english. there is an anomaly. how

  • Create Employee code with the mix of alphabets & numeric

    Hai, Is there any possibility to create Employee code with the mix of alphabets & numeric instead of the system generated employee code in employee master data? If so,   pls explain. Any suggestion is appreciated. Thanks, Parvatha Solai.N

  • FS10N drilldown difference

    Hello All, we have pervious postings in G\L account 10000000, priviously it is not "Line item Managed" and was now change to "Line item Managed". We already run program RFSEPA01 generate line item retoactively from the documents that were already pos

  • Duplicating database using rman

    on server1, running chicago: SQL> select instance_name, status from v$instance; INSTANCE_NAME STATUS chicago OPEN on server2, trying to duplicate chicago using rman [oracle@H2 admin]$ rman target sys/sys@chicago auxiliary / Recovery Manager: Release