Program taking up all of CPU Speed

Hello,
I have been lucky not to have to use the forum, until now. I recently installed a program called Garage Sale. I decided not to use it and deleted it (drug it over to trash from the finder window). Well,(now at least a week later) I turned on my computer this morning and it was running really really slow. I was finally able to get into the activity monitor and was able to find the problem. A piece of Garage Sale was still running (Garagesalehelper) and it was taking up to 65 - 80% of my CPU Speed. How to do I get rid of this thing? Thanks for any and all help.
Imac G5 Isight 512MB 180GB HD 10.4.9   Mac OS X (10.4.9)  

Welcome to Apple Discussions, JoeCat24
To stop the offending process immediately, you can highlight "Garagesalehelper" in the main Activity Monitor window and then click the red "Stop Process" button. However, this fix is only effective until you restart your Mac or the application.
To get permanent relief, you must properly uninstall Garage Sale.. I do not use Garage Sale, so I cannot give you specific, step-by-step instructions. You will need to find the proper uninstall instructions. Some applications come with an uninstaller. Others list all the files that must be removed along with their locations
If you still have the Garage Sale installer or Readme files, check there to see how to properly uninstall. If you do not have this information, you may need to download the installer again to see if uninstall instructions are available there. Sometimes it is simpler to reinstall the application and then use the Help files to find out how to properly uninstall.
If none of those things work, I suggest that you contact the software developer and ask him for instructions on how to uninstall his app.
If this GarageSale is the app causing your problems, the developer offers email support via his "Contact & Support" link.
Jim

Similar Messages

  • I have The latest Firefox installed on an older Dell, and the CA security suite thru my ISP, which takes all my CPU and causes everything to freeze when I try to access it's features. I need a free internet security program that does tax my system so much

    Have older Dell Dimension 32/bit with Win XP Prof 2002. I have installed CA security suite from my ISP, which is a huge program and uses 100% of CPU on start-up & shut down, slowing everthing to a snails pace. I have removed evrything I don't need using 30 day free Revo Unistaller Pro, but when I try to access CA's Firewall to add programs to the exception rule, it will open, then freezes along with Firefox tabs and anything else. Can't even shut down from start menu. I want to get rid of CA(although it is a good program, it's too big), and go back to using my Win Firewall(or another better free firewall that's good for more than 30 days trial) and some other free internet security program that is easy, runs in the background and doesn't take all my resources and isn't just a 30 day free trial till you buy the program. I am also trying to install a wireless adapter so I can drop my ISP and use the free city/county signal as no work for 20 months!
    == This happened ==
    A few times a week
    == Trying to access CA security Suite Firewall

    I am the original poster, and I got rid of CA Security Suite & and loaded the Avast! which has some great features even on the freeware. No more crashes or freezing & yes I think there is a problem with CA & Firefox, but am not sure what it is. CA was a big time hog. I also got rid of my ISP and installed a Intellinet Wireless G PCI Card & now am completely wireless on my PC. Faster by far than what I was paying $50/month for & I use my Windows Firewall.

  • Hi, I've just downloaded Aperture 3.2 and transfered all my iPhoto Library but now when I use the Aperture program it runs at the slowest speed possible and is almost impossible to work with. It is constantly processing why is this?

    Hi, I've just downloaded Aperture 3.2 and transfered all my iPhoto Library but now when I use the Aperture program it runs at the slowest speed possible and is almost impossible to work with. It is constantly processing why is this?

    You can click on the text that says 'processing' in the main windows and it will open (toggle) the Activity Window, (can also be accessed via the Window menu -> Show Activity.
    It will tell you what Aperture is doing with more precision and perhaps even how many photos it still needs to process. It is generally best to wait until all that processing is done before you start working with the photos (well it is best to first turn of options what you dont want to use, perhaps Faces or Previews and then let it process the new photos).

  • Performance - Threads - Sys Resources = What's the CPU Speed n RAM ?

    Hi all,
    I am writing a small program based on quick port scanning (pure Java). For that purpose I'm using threads to make the connections. I am using multiple threads in parallel. While running 64 threads theres a 10% CPU usage whereas on 128 threads theres a 60% usage (On AMD 500 Mhz).
    Now obviously I dont want anybody with a 233 Mhz running my program with 128 threads and surely not the one with 1 Ghz being limited to only 128 threads. Thats why I need to find out the clients resources like CPU speed, total RAM etc. How do I do that ?
    Someone suggested using JNDI for windows registry. I'm not sure how to do it that way. (if anyone can provide me a little code?) Is there another way round to this problem?
    Any help appreciated.

    My friend
    please try to understand the problem here is not of OPTIMIZATION OF THREAD SERVICES but the OPTIMAL NUMBER OF THREADS TO BE USED at certain processor speeds.
    fine I agree about different performances of processors (pentium 1Ghz != AMD 1Ghz)
    but surely (pentium 1Ghz ~ AMD 1Ghz ~ other 1Ghz).
    and anyway in my program I'm taking the performance margins by 200Mhz to be on the safer side
    i.e.
    x1-x2 no of threads for say 300-500Mhz,
    y1-y2 no of threads for 500-700Mhz,
    z1-z2 no of threads for 700-1Ghz. Get the point.?
    Heres an incomplete example of my prog (if now anyone can make out a fair idea of the problem) :
    import java.net.*;
    import java.io.*;
    class QuickPortScan
    public static void main(String args[])
    long tstart,tend;
    ScanThread scant=null;
    String name=null,ok=null;
    /* int tnum; This is the number of threads I want to calculate */
    System.out.println(" Quick Port Scanner BLAH BLAH BLAH!");
    System.out.print("-------------------BLAH BLAH BLAH!--------------\nEnter 'y' To Proceed: ");
    try{
    ok = new BufferedReader(new
    InputStreamReader(System.in)).readLine();
    if(ok.equals("Y")||ok.equals("y")){}
    else{ System.exit(0); }
         System.out.print("Enter The HOSTNAME: ");
         name = new BufferedReader(new
         InputStreamReader(System.in)).readLine();} catch(IOException e){}
         System.out.println("Scanning 65,535 Ports, Please Be Patient...\n");
    /* Now I would like to get the CPU speed here somehow
    and then calculate tnum and pass it as param below */
    tstart = System.currentTimeMillis();
    for(int i=1;i<=tnum;i++)
         scant = new ScanThread(name,i /* ,tnum */);
         scant.start();
    try{ scant.join(); }
    catch(InterruptedException ine){ System.out.println("Main Thread Interrupted!"); }
         tend = System.currentTimeMillis();
         double ttaken = (tend-tstart)/1000;
         if(ttaken>59)
         System.out.println("Total Time Taken For Scan: "+(ttaken/60)+" minutes.");
         else System.out.println("Total Time Taken For Scan: "+ttaken+" seconds.");
    } //END QuickPortScan class
    class ScanThread extends Thread
    String name;
    int port,tno;
    /* int nloop; This is the number of sleep-break loops calculated according to number of threads */
    Socket sock;
    static boolean scanFirst = true;
    boolean breakOut = false,breakIn = false;
    public ScanThread(String nm,int i /* ,int j */)
         name = nm;
         port = i;
         tno = i;
    /* nloop = (j * whatever + whenever - together); */
    public void run()
         for(int round1=1;round1<=32 /*nloop otherwise*/;round1++)
         if(breakOut==true){ break; }
         for(int round2=1;round2<=32;round2++)
    try{ 
    /* SOCKET
    CONNECTION
    IMPLEMENTATION */
         }     try{sleep(75);}catch(InterruptedException ie){}
    public synchronized void portInc(int open)
         if(open==1){System.out.println("Port "+port+" Vulnerable!, Scanning...");}
         if(port==16384){System.out.println("25% Completed, Scanning Further...");}
         else if(port==32768){System.out.println("50% Completed, Scanning Further...");}
         else if(port==49152){System.out.println("75% Completed, Scanning Further...");}
         port = port + nt; // nt is the NUMBER OF THREADS
         if(port>=65536){if(scanFirst==true){System.out.println("*****SCAN COMPLETE!*****");
         scanFirst=false;} breakOut=true; breakIn=true;}
    } // END ScanThread class

  • BTHelpbrowser.exe completely grabs all the CPU and...

    When my computer slows or nearly stops - I start Windows Task Manager and see that the process BTHelpbrowser.exe is taking 99%of my CPU and 44,095K of my memory ...WHY ????
    I have tried deleting the process - but that doesn't seem to work - the only way is to re-boot ! AAARGHHH !
    I can't find anywhere on the BT help website where I can post this question - so it's over to 'the community' to help..Please.

    Hi Guys
    There have been a number of improvements made to our Desktop Help, for instance we now use the Windows OS wireless manager, and we also now use Internet Explorer as our browser with the option of a BT Yahoo toolbar. This does work with windows XP, Vista and Win7 32 bit version. Approximately 2 million people have Desk Top Help installed and it has helped fix a huge number of issues so I think it’s a great piece of kit and well worth an install.
    @Evenly
    What version of Desk Top Help do you have?
    If you’re not quite sure, the best thing to do is remove what you have at the moment with the following instructions:
    1. First make sure old Desktop Help is uninstalled (start All Programs->BT Broadband Desktop Help->Uninstall)…check add/remove programs too for any sign.
    2. In task manager if you see the following – remove it:
    a) BTHelpNotifier.exe
    b) McciTrayApp.exe
    c) McciServiceHost.exe
    3. If you see McciCMService.exe please stop it in services (control Panel ->Administrative Tools->Services)
    4. In registry delete the following hives (to start regedit do  Start->Run->Regedit): 
    - HKEY_LOCAL_MACHINE\SOFTWARE\Motive
    - HKEY_CURRENT_USER\Software\Motive
    Restart the PC
    You can then download the latest version of Desktop Help and install it from here
    Let us know how you get on.
    Thanks,
    Stephanie
    Stephanie
    BTCare Community Manager
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post. If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • What is taking up all the space on the hard drive?

    My 500GB iMac is only 18 months old, and only has 115GB available. The two big users of space for me are iTunes, and iMovie, which between them account for 175 to 200GB. But what is taking up all the rest? I have a lot of photos in iPhoto, but am not sure how to find the usage of those, and doubt they account for a huge chunk. I use lots of apps, but do not have a significant number of additional programs, nor any presentations, spreadsheets, or other big users of space.
    I would appreciate any suggestions for places to look for bug users of space. Also, are there any programs as there are in Windows for disk optimization?

    I didn't mention iTunes, because it shouldn't have it's own trash. iMovie has it's own trash for what you trim from the original content when creating a video. This allows for undoing changes. Once the project is complete, you probably don't need those deleted clips - and they can take up a lot of space. I am not aware of this behavior changing in the new iMovie, but it may not have the same interface for clearing the trash as the previous versions.

  • How to boost nokia e63 cpu speed

    hello, please i am wondering if it is possible to boost the cpu speed of nokia e63, become its usually slow when performing various task like 1. When installing an application 2. When opening some big third party applications like opera mini, whats app, and some games 3. When removing an application, these are the areas where i,ve noticed nokia e63 being slow
    Solved!
    Go to Solution.

    Try closing apps which is running in the background. Clear browser cache and uninstall 3rd party applications which you don't use. Turn off theme effects. All this could affect the "speed" on your phone in a positive way.

  • Everything crashes! Programs and browsers all suddenly crashing. 10.6.8

    Programs and browsers all suddenly crashing. MacBook Pro on SnowLeopard 10.6.8.
    Photoshop, Safari, etc. all open but crash soon after.
    Recently had Ram upgrade to 8GB.
    Below is the system report. Any clues?
    I can include the Safari and Psd. crashes if that helps.
    I did repair the permissions for the disk, but it is still happening.
    HELP!
    EtreCheck version: 1.9.15 (52)
    Report generated October 6, 2014 3:09:38 PM CDT
    Hardware Information: ?
      MacBook Pro (17-inch, Early 2009) (Verified)
      MacBook Pro - model: MacBookPro5,2
      1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
      8 GB RAM
    Video Information: ?
      NVIDIA GeForce 9600M GT - VRAM: 512 MB
      spdisplays_display_connector
      spdisplays_display_connector
      NVIDIA GeForce 9400M - VRAM: 256 MB
      Color LCD 1920 x 1200
      spdisplays_display_connector
    System Software: ?
      Mac OS X 10.6.8 (10K549) - Uptime: 3 days 2:39:5
    Disk Information: ?
      TOSHIBA MK5065GSXF disk0 : (465.76 GB)
      S.M.A.R.T. Status: Verified
      - (disk0s1) <not mounted>: 200 MB
      Macintosh HD (disk0s2) / [Startup]: 465.44 GB (327.69 GB free)
      HL-DT-ST DVDRW  GS21N 
    USB Information: ?
      Apple Inc. Built-in iSight
      Apple, Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
    Kernel Extensions: ?
      [not loaded] com.Belcarra.iokit.USBLAN_netpart (2.0.2) Support
      [not loaded] com.Belcarra.iokit.USBLAN_usbpart (2.0.2) Support
      [not loaded] com.FTDI.driver.FTDIUSBSerialDriver (1.1.2) Support
      [not loaded] com.RemoteControl.USBLAN.panther (1.6.1) Support
      [not loaded] com.RemoteControl.USBLAN.usbpart (2.0.6) Support
      [not loaded] com.belcarra.iokit.netpart.panther (1.6.1) Support
      [not loaded] com.belcarra.iokit.usbpart.panther (1.6.1) Support
      [not loaded] com.cisco.kext.acsock (1.1.0 - SDK 10.0) Support
      [not loaded] com.gretagmacbeth.EyeOne.NoClassic (1.0.0) Support
      [not loaded] com.rim.driver.BlackBerryUSBDriverInt (0.0.33) Support
      [not loaded] com.rim.driver.BlackBerryUSBDriverVSP (0.0.33) Support
      [not loaded] com.roxio.TDIXController (1.6) Support
    Startup Items: ?
      FTDIReEnumerate: Path: /Library/StartupItems/FTDIReEnumerate
      Qmaster: Path: /Library/StartupItems/Qmaster
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.adobe.SwitchBoard.plist Support
      [loaded] com.adobe.versioncueCS3.plist Support
      [running] com.cisco.anyconnect.vpnagentd.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.rim.BBDaemon.plist Support
    Launch Agents: ?
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.cisco.anyconnect.gui.plist Support
      [running] com.epson.eventmanager.agent.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [running] com.puredigitaltechnologies.FlipShare.AutoRun.plist Support
      [running] com.rim.BBLaunchAgent.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.adobe.ARM.[...].plist Support
    User Login Items: ?
      YouSendIt Desktop App
      Dropbox
      Mail
    Internet Plug-ins: ?
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      JavaAppletPlugin: Version: 13.9.8 - SDK 10.6 Check version
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      AdobePDFViewer: Version: 10.1.1 Support
      QuickTime Plugin: Version: 7.6.6
      GarminGpsControl: Version: 2.7.3.0 Release Support
      Silverlight: Version: 4.0.60531.0 Support
      iPhotoPhotocast: Version: 7.0
    Safari Extensions: ?
      Omnibar (Disabled)
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.2
    User Internet Plug-ins ?
      fbplugin_1_0_3: Version: (null) Support
    3rd Party Preference Panes: ?
      3ivx MPEG-4  Support
      Adobe Version Cue CS3  Support
      Flash Player  Support
      Perian  Support
      StuffIt AVR  Support
    Time Machine: ?
      Time Machine information requires OS X 10.7 "Lion" or later.
    Top Processes by CPU: ?
          6% WindowServer
          2% hidd
          0% loginwindow
          0% BBLaunchAgent
          0% WebProcess
    Top Processes by Memory: ?
      164 MB WebProcess
      131 MB Safari
      82 MB WindowServer
      66 MB Mail
      66 MB Dropbox
    Virtual Memory Information: ?
      5.70 GB Free RAM
      885 MB Active RAM
      501 MB Inactive RAM
      711 MB Wired RAM
      2 TB Page-ins
      2.67 GB Page-outs

    Here is the Psd. crash report.
    Process:         Adobe Photoshop CS6 [4629]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.0.0 (20120315.r.428)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [102]
    Date/Time:       2014-10-06 14:40:09.599 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          -5038 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  25127720 sec
    Per-App Crashes Since Last Report:   25
    Anonymous UUID:                      C57650BD-EF7B-486E-B2B5-25C7B35E6A58
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.GeForceGLDriver     0x0000000200012010 gldAttachDrawable + 2528
    1   com.apple.GeForceGLDriver     0x00000002000d63d7 gldUpdateDispatch + 14343
    2   GLEngine                      0x000000011ded0d74 glFlushRender_Exec + 57
    3   com.adobe.Photoshop           0x00000001000fbf7b 0x100000000 + 1032059
    4   com.adobe.Photoshop           0x00000001000fc534 0x100000000 + 1033524
    5   com.adobe.Photoshop           0x000000010011f339 0x100000000 + 1176377
    6   com.adobe.Photoshop           0x000000010011f911 0x100000000 + 1177873
    7   com.adobe.Photoshop           0x0000000100ad80e3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2629507
    8   com.adobe.Photoshop           0x0000000100ad87d6 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2631286
    9   com.adobe.Photoshop           0x00000001014616ed AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12629389
    10  com.adobe.Photoshop           0x0000000100032d8b 0x100000000 + 208267
    11  com.adobe.Photoshop           0x00000001019aeb6d AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 18188813
    12  com.adobe.Photoshop           0x00000001019ae964 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 18188292
    13  com.apple.AppKit              0x00007fff88b34cc5 -[NSView _drawRect:clip:] + 3390
    14  com.apple.AppKit              0x00007fff88b33938 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
    15  com.apple.AppKit              0x00007fff88b33ca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    16  com.apple.AppKit              0x00007fff88b3200a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 767
    17  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    18  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    19  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    20  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    21  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    22  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    23  com.apple.AppKit              0x00007fff88c509c4 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 276
    24  com.apple.AppKit              0x00007fff88b2e3de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    25  com.apple.AppKit              0x00007fff88aa7c0e -[NSView displayIfNeeded] + 969
    26  com.apple.AppKit              0x00007fff88a5d5a4 -[NSNextStepFrame displayIfNeeded] + 76
    27  com.adobe.owl                 0x0000000103ab2016 OWLControlBarGetMinimumSize + 40073
    28  com.adobe.owl                 0x0000000103a91a77 0x103a63000 + 191095
    29  com.adobe.owl                 0x0000000103a91527 0x103a63000 + 189735
    30  com.adobe.owl                 0x0000000103aaa611 OWLControlBarGetMinimumSize + 8836
    31  com.adobe.owl                 0x0000000103ab778f OWLWidgetGetIsClosed + 313
    32  com.adobe.owl                 0x0000000103ab6fdb OWLWidgetShow + 473
    33  com.adobe.Photoshop           0x0000000101333e7e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 11394334
    34  com.adobe.Photoshop           0x0000000101331bc2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 11385442
    35  com.adobe.Photoshop           0x00000001005bb898 0x100000000 + 6011032
    36  com.adobe.Photoshop           0x00000001005afde7 0x100000000 + 5963239
    37  com.adobe.Photoshop           0x00000001005b4590 0x100000000 + 5981584
    38  com.adobe.Photoshop           0x00000001005b77ec 0x100000000 + 5994476
    39  com.adobe.Photoshop           0x00000001005ad3ae 0x100000000 + 5952430
    40  com.adobe.Photoshop           0x000000010001faa2 0x100000000 + 129698
    41  com.adobe.Photoshop           0x00000001019202d4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17604980
    42  com.apple.Foundation          0x00007fff81de0bc5 __NSFireTimer + 114
    43  com.apple.CoreFoundation      0x00007fff8023dbb8 __CFRunLoopRun + 6488
    44  com.apple.CoreFoundation      0x00007fff8023bd8f CFRunLoopRunSpecific + 575
    45  com.apple.HIToolbox           0x00007fff843587ee RunCurrentEventLoopInMode + 333
    46  com.apple.HIToolbox           0x00007fff843585f3 ReceiveNextEventCommon + 310
    47  com.apple.HIToolbox           0x00007fff843584ac BlockUntilNextEventMatchingListInMode + 59
    48  com.apple.AppKit              0x00007fff88a77eb2 _DPSNextEvent + 708
    49  com.apple.AppKit              0x00007fff88a77801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    50  com.apple.AppKit              0x00007fff88a3d68f -[NSApplication run] + 395
    51  com.adobe.Photoshop           0x0000000101920402 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17605282
    52  com.adobe.Photoshop           0x000000010192266e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17614094
    53  com.adobe.Photoshop           0x00000001005ae27c 0x100000000 + 5956220
    54  com.adobe.Photoshop           0x00000001007b074f boost::system::system_error::what() const + 1999183
    55  com.adobe.Photoshop           0x00000001007b0999 boost::system::system_error::what() const + 1999769
    56  com.adobe.Photoshop           0x000000010054b24c 0x100000000 + 5550668
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x00007fff8558cc0a kevent + 10
    1   libSystem.B.dylib             0x00007fff8558eadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib             0x00007fff8558e7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib             0x00007fff8558e2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib             0x00007fff8558dc08 _pthread_wqthread + 353
    5   libSystem.B.dylib             0x00007fff8558daa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff855aea6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff855b2881 _pthread_cond_wait + 1286
    2   MultiProcessor Support        0x000000011db100f3 main + 8403
    3   MultiProcessor Support        0x000000011db101b0 main + 8592
    4   MultiProcessor Support        0x000000011db2cf50 main + 126768
    5   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib             0x00007fff855aea6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff855b2881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore 0x00007fff8517ed87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore 0x00007fff850edff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore 0x00007fff850e7efb MPWaitOnQueue + 215
    5   com.adobe.ACE                 0x00000001051482c9 0x10510f000 + 234185
    6   com.adobe.ACE                 0x00000001051475da 0x10510f000 + 230874
    7   ...ple.CoreServices.CarbonCore 0x00007fff850c00d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    9   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib             0x00007fff855aea6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff855ae8f9 nanosleep + 148
    2   com.adobe.PSAutomate          0x00000001231449cb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate          0x000000012312a7c9 ScObjects::BridgeTalkThread::run() + 169
    4   com.adobe.PSAutomate          0x0000000123144d36 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib             0x00007fff855aea6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff855b2881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine          0x000000012790cc0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x00000001276baec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x000000012790ccd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x000000012790cd4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x000000012790ce79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib             0x00007fff855aea6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff855b2881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine          0x000000012790cc0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x00000001276baec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x000000012790ccd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x000000012790cd4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x000000012790ce79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib             0x00007fff85573d7a mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff855743ed mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff8023c902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation      0x00007fff8023bd8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices 0x00007fff82d435f7 MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices 0x00007fff82d451c2 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    7   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib             0x00007fff85573dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff855b2772 _pthread_cond_wait + 1015
    2   com.adobe.ape.engine          0x000000012790cbd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine          0x0000000127924ddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine          0x000000012790ccd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x000000012790cd4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x000000012790ce79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib             0x00007fff85573dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff855b2772 _pthread_cond_wait + 1015
    2   com.adobe.ape.engine          0x000000012790cbd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine          0x0000000127a9f2c3 APXGetHostAPI + 4164403
    4   com.adobe.ape.engine          0x000000012790ccd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x000000012790cd4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x000000012790ce79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib             0x00007fff855b7956 recvfrom + 10
    1   ServiceManager-Launcher.dylib 0x0000000128b0b5ec Invoke + 45721
    2   ServiceManager-Launcher.dylib 0x0000000128b0a813 Invoke + 42176
    3   ServiceManager-Launcher.dylib 0x0000000128b09be0 Invoke + 39053
    4   ServiceManager-Launcher.dylib 0x0000000128b09c66 Invoke + 39187
    5   ServiceManager-Launcher.dylib 0x0000000128b0530f Invoke + 20412
    6   ServiceManager-Launcher.dylib 0x0000000128b05616 Invoke + 21187
    7   ServiceManager-Launcher.dylib 0x0000000128b05cd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib 0x0000000128b05f41 Invoke + 23534
    9   ServiceManager-Launcher.dylib 0x0000000128b0861d Invoke + 33482
    10  ServiceManager-Launcher.dylib 0x0000000128b08775 Invoke + 33826
    11  ServiceManager-Launcher.dylib 0x0000000128b08fb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib 0x0000000128b090ad Invoke + 36186
    13  ServiceManager-Launcher.dylib 0x0000000128afbd6b Login + 480
    14  ServiceManager-Launcher.dylib 0x0000000128aff7ad Login + 15394
    15  ServiceManager-Launcher.dylib 0x0000000128b09412 Invoke + 37055
    16  ServiceManager-Launcher.dylib 0x0000000128b0b253 Invoke + 44800
    17  libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    18  libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib             0x00007fff8558da2a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8558de3c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff8558daa5 start_wqthread + 13
    Thread 12:
    0   libSystem.B.dylib             0x00007fff8558da2a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8558de3c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff8558daa5 start_wqthread + 13
    Thread 13:
    0   libSystem.B.dylib             0x00007fff8558da2a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8558de3c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff8558daa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000005fbf9410  rbx: 0x0000000000000001  rcx: 0x00007fff85573d7a  rdx: 0x00000000e00002c2
      rdi: 0x00000000e00002c2  rsi: 0x00007fff709b95e0  rbp: 0x00007fff5fbf9340  rsp: 0x00007fff5fbf9340
       r8: 0x0000000000000e03   r9: 0x0000000000000000  r10: 0x00000000000010bc  r11: 0x0000000000000206
      r12: 0x0000000125063000  r13: 0x0000000106f28000  r14: 0x0000000000000000  r15: 0x00007fff5fbf9370
      rip: 0x0000000200012010  rfl: 0x0000000000010296  cr2: 0x0000000000000000
    Binary Images:
           0x100000000 -        0x10333cfff +com.adobe.Photoshop 13.0.0 (20120315.r.428) <6A87A703-3170-CA73-8C77-35C282C4E264> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
           0x1039bf000 -        0x1039ebff7 +libtbb.dylib ??? (???) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbb.dylib
           0x103a02000 -        0x103a10ff3 +libtbbmalloc.dylib ??? (???) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbbmalloc.dylib
           0x103a24000 -        0x103a2bfff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103a33000 -        0x103a4dff7 +com.adobe.ahclientframework 1.7.0.56 (1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x103a56000 -        0x103a5cff7  com.apple.agl 3.0.12 (AGL-3.0.12) <E5986961-7A1E-C304-9BF4-431A32EF1DC2> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103a63000 -        0x103c71fff +com.adobe.owl AdobeOwl version 4.0.93 (4.0.93) <CB035C4D-044D-4004-C887-814F944E62ED> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103cb2000 -        0x1040f8ff7 +com.adobe.MPS AdobeMPS 5.8.0.19463 (5.8.0.19463) <8A4BA3B2-6F6A-3958-ABDE-C3E8F21373B0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x104174000 -        0x1044cdff7 +com.adobe.AGM AdobeAGM 4.26.17.19243 (4.26.17.19243) <E96C804B-158B-D4A2-9A64-482F9ADC29D0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104536000 -        0x104897fef +com.adobe.CoolType AdobeCoolType 5.10.31.19243 (5.10.31.19243) <8BFF14FB-AA14-1CBF-C2A3-715363B5A841> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1048e4000 -        0x10490cff7 +com.adobe.BIBUtils AdobeBIBUtils 1.1.01 (1.1.01) <9BDD08A8-2DD8-A570-7A7B-EDAA7097D61B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x104913000 -        0x10493ffff +com.adobe.AXE8SharedExpat AdobeAXE8SharedExpat 3.7.101.18636 (3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8 SharedExpat
           0x104962000 -        0x104aafff7 +com.winsoft.wrservices WRServices 5.0.0 (5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x104b23000 -        0x104b92fef +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <924155A9-D00E-B862-C490-5099BA70B978> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x104bb9000 -        0x104c12fff +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <BC353D4E-1AE2-3FB5-D3EE-81A09C0C4328> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104cb2000 -        0x104d39ff7 +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <5FCA15B4-F721-09C3-B412-1F86D9D7DE9E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104d9e000 -        0x104db9ff7 +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <BB7B342A-8CBC-4B73-58A2-9B062F590EBC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104dd3000 -        0x105010fff +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <6839CFB1-74EE-B205-7D82-ABC5428E0810> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x10510f000 -        0x105288fff +com.adobe.ACE AdobeACE 2.19.18.19243 (2.19.18.19243) <7F28B188-1D1B-20C9-BBB9-B74FCC12ECAD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x10529b000 -        0x1052bafff +com.adobe.BIB AdobeBIB 1.2.02.19243 (1.2.02.19243) <B7D7EE28-D604-2989-B099-62AEF4885C21> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x1052c1000 -        0x1053a5fe7 +com.adobe.amtlib amtlib 6.0.0.75 (6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1053b6000 -        0x10547bfff +com.adobe.JP2K 2.0.0 (2.0.0.18562) <B14B096C-AA23-BA8F-E3AE-8DB102F9D161> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x1054c8000 -        0x1054ccff7 +com.adobe.ape.shim 3.3.8.19346 (3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1054d2000 -        0x105550fff +com.adobe.FileInfo.framework Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 (66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105561000 -        0x1055c1ff7 +com.adobe.AdobeXMPCore Adobe XMP Core 5.3 -c 11 (66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x1055cb000 -        0x105b23fef +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/Cg.framework/Cg
           0x106180000 -        0x1061eefef +com.adobe.headlights.LogSessionFramework ??? (2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x106242000 -        0x106267ffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsetti ngs
           0x1062a2000 -        0x1062a6ff7 +com.adobe.AdobeCrashReporter 6.0 (6.0.20120201) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashR eporter
           0x1062ac000 -        0x10645cfef +com.adobe.PlugPlug 3.0.0.383 (3.0.0.383) <908DBB12-D2AC-1844-BD2A-F1C483424917> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106513000 -        0x106533fff +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <DC3301F2-FC6E-70C7-3927-B0DD024210D6> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ocl.framework/Versions/A/aif_ocl
           0x10654d000 -        0x10660afff +com.adobe.AdobeExtendScript ExtendScript 4.2.12 (4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendS cript
           0x106654000 -        0x106702fef +com.adobe.AdobeScCore ScCore 4.2.12 (4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10673f000 -        0x106839fe7 +com.adobe.AXEDOMCore AdobeAXEDOMCore 3.7.101.18636 (3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCor e
           0x1068dd000 -        0x106b26fe7 +com.adobe.linguistic.LinguisticManager 6.0.0 (17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguisti c
           0x106ba9000 -        0x106ba9ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106ea4000 -        0x106eb7ff7 +MeasurementCore ??? (???) <2E842E3B-9E4D-6D59-7E5B-A01979288E4B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Measurements/MeasurementCore.plugin/Contents /MacOS/MeasurementCore
           0x106ec8000 -        0x106eeeff7 +com.adobe.ape 3.3.8.19346 (3.3.8.19346) <79E11A18-8AF4-2515-59F7-4CBE161BF020> /Library/Application Support/Adobe/APE/3.3/adbeapecore.framework/adbeapecore
           0x106f21000 -        0x106f23fef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106fb4000 -        0x106fb5fff  ATSHI.dylib ??? (???) <D2881261-24A6-4717-D7F9-DF263ABB30F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x109394000 -        0x1093abfe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1A440248-D188-CA5D-8C20-5FA33647DE93> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1093af000 -        0x1093d0fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <76503A7B-58B6-64B9-1207-0C273AF47C1C> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x1093d4000 -        0x1093e3fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1718111B-FC8D-6C8C-09A7-6CEEB0826A66> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x1093e7000 -        0x1093f9fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <00E29B30-3877-C559-85B3-66BAACBE005B> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x1093fd000 -        0x1093fefff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <84C660E9-8370-79D1-2FC0-6C21C3079C17> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10947b000 -        0x10947bfff +Enable Async IO ??? (???) <F56F1FB2-9CF1-19A8-0D14-885A652B19B7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x10a5ed000 -        0x10a5f0fff +FastCore ??? (???) <29AAF151-6CC4-28C5-68B8-0F6600A20435> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/Fa stCore
           0x11d8d2000 -        0x11d918fe7 +com.adobe.pip ??? (6.0.0.1654) <3576D8F9-E2F9-6EB8-6684-C2FE6B0A3731> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
           0x11d9d8000 -        0x11da44fff +MMXCore ??? (???) <B9B6C7FB-CE56-8F6F-664E-DFCBBC5E3ADE> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMX Core
           0x11dacb000 -        0x11db50fff +MultiProcessor Support ??? (???) <467BB668-E9DD-60F4-CAAD-768A98174734> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11deac000 -        0x11e03ffe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11e070000 -        0x11e493fef  libclh.dylib 3.1.1 C  (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x11e56d000 -        0x11e593fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x120522000 -        0x120528fe7  libFontStreams.A.dylib 545.0.0 (compatibility 64.0.0) <87272933-FB21-81D0-00E6-92BC3D7583FB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libFontStreams.A.dylib
           0x120561000 -        0x1205dbfef +com.adobe.adobe_caps adobe_caps 6.0.29.0 (6.0.29.0) <C0AD101D-E452-4B4B-5B31-F467133EC20C> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
           0x123000000 -        0x12325bff7 +com.adobe.PSAutomate 13.0 (13.0) <6EE89DAF-28E8-B15F-1C4B-18D8D19F6452> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/ MacOS/ScriptingSupport
           0x12336d000 -        0x12345efff +com.adobe.AdbeScriptUIFlex ScriptUIFlex 6.2.29 (6.2.29.18602) <2BD3388F-976E-0B1C-55DB-B97A5AF95724> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdbeScriptUIFlex.framework/Versions/A/AdbeScriptUIF lex
           0x1236c4000 -        0x1236c8ff7  libFontRegistryUI.dylib ??? (???) <DE4D4824-5DF2-189F-0FFE-62C81C21F8BB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x125150000 -        0x125154fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x125159000 -        0x12515fff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1254a4000 -        0x12558afe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x1256a8000 -        0x1256eefff +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 6.0.0.24 (6.0.0.24) <58C40EB9-2F38-2479-E710-344CAB0CEFB7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/updaternotifications.framework/Versions/A/UpdaterNo tifications
           0x125e16000 -        0x125e53fff  com.apple.DP.ScreenInputDevice 15.0 (15.0) <69919162-3E04-C270-B8AB-8E26634D4BBB> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/Apple ScreenInputDevice.plugin/Contents/MacOS/AppleScreenInputDevice
           0x125e5e000 -        0x125e87fef  com.apple.mio.DAL.VDC_4 140.0 (1496) <E22DEEC2-EE3D-03AD-9E02-BDE03CE73588> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
           0x127672000 -        0x1285f7fd7 +com.adobe.ape.engine 3.3.8.19346 (3.3.8.19346) <5E188E32-37F7-4E0B-0674-E8D16B60074F> /Library/Application Support/Adobe/APE/3.3/adbeapecore.framework/Libraries/adbeapeengine.bundle/Cont ents/MacOS/adbeapeengine
           0x128af6000 -        0x128b21fff +ServiceManager-Launcher.dylib 389.0.0 (compatibility 2.5.0) <7AE35754-3413-206D-4B92-579AAA25B4F8> /Library/Application Support/Adobe/CS6ServiceManager/lib/ServiceManager-Launcher.dylib
           0x200000000 -        0x200787fe7  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80024fe7  libPng.dylib ??? (???) <D8EC7740-EE32-865A-2F75-C9EDE2135510> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff80025000 -     0x7fff800defff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff800eb000 -     0x7fff800eeff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff801f0000 -     0x7fff80367fe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff80368000 -     0x7fff8044dfef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8044e000 -     0x7fff80452ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff80453000 -     0x7fff804e2fff  com.apple.PDFKit 2.5.5 (2.5.5) <18C99AB3-DACC-3654-200E-0BD09EBFB374> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff80686000 -     0x7fff80687ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff80688000 -     0x7fff80688ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff80689000 -     0x7fff80a26fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff80a27000 -     0x7fff80cb0ff7  com.apple.security 6.1.2 (55002) <D224882B-D57B-83AF-3781-548BCEACB327> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff80cb1000 -     0x7fff80cf9ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff80da1000 -     0x7fff80da1ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff80dce000 -     0x7fff80dd1ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff80fdb000 -     0x7fff81002ff7  libJPEG.dylib ??? (???) <08758593-6436-B29E-1DA8-F15597835EC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff81011000 -     0x7fff81071fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff810b2000 -     0x7fff810b8ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8125e000 -     0x7fff8126cff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8127f000 -     0x7fff812aaff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
        0x7fff812ab000 -     0x7fff812c2fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff812c3000 -     0x7fff81334ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8136d000 -     0x7fff81441fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff81442000 -     0x7fff8167cfef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff816a5000 -     0x7fff816b4fef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff816f1000 -     0x7fff816fcff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff816fd000 -     0x7fff8173efff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8173f000 -     0x7fff8175ffff  com.apple.DirectoryService.Framework 3.6 (621.16) <0ED4A74A-F8FB-366D-6588-F13EA397326F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff81760000 -     0x7fff81942fef  libType1Scaler.dylib ??? (???) <7892C4D7-3E5E-D7DA-AA4E-8D4ACED143D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
        0x7fff81a10000 -     0x7fff81a16ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff81a56000 -     0x7fff81a99ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff81a9a000 -     0x7fff81bb9ff7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0CE8D59B-D0C7-1DCE-3654-37F27F61BEFA> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff81bba000 -     0x7fff81d79fff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff81d7a000 -     0x7fff81ffcfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff81ffd000 -     0x7fff82016fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff82017000 -     0x7fff82094fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff820f1000 -     0x7fff8222ffff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff82270000 -     0x7fff822a3ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff822a4000 -     0x7fff822b9ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff822ba000 -     0x7fff82377fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff825f1000 -     0x7fff826a1fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff826a2000 -     0x7fff826a8ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff82795000 -     0x7fff827d6fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff827d7000 -     0x7fff8282dfe7  libTIFF.dylib ??? (???) <2DBEC120-DAA7-3789-36A2-A205BCDF2D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8282e000 -     0x7fff82d34ff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff82d35000 -     0x7fff82d7afff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff82d7b000 -     0x7fff82dc2fff  com.apple.QuickLookFramework 2.3 (327.7) <A8169A96-FAE6-26B2-A9A9-C78BA5787146> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff82dc3000 -     0x7fff82dc4fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff82dc5000 -     0x7fff835cffe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8361b000 -     0x7fff837d9fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <97A75BFB-0DB6-6F44-36B0-97B7F7208ABB> /usr/lib/libicucore.A.dylib
        0x7fff83b1e000 -     0x7fff83b4dff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff83c53000 -     0x7fff83c6eff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff83c6f000 -     0x7fff83d09fff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff83d0a000 -     0x7fff83d0aff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff83d0b000 -     0x7fff83d57fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff83d58000 -     0x7fff83d5cff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff83d5d000 -     0x7fff83d62fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff83d63000 -     0x7fff83df3fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff83df4000 -     0x7fff83e79ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Version

  • What is taking up all my memory?

    My computer keeps maxing out of memory. Is there an easy way to find out what is taking up all the memory without hitting the command + i keys for each program or purchasing such a program?
    Thanks.

    musichouse wrote:
    My computer keeps maxing out of memory. Is there an easy way to find out what is taking up all the memory without hitting the command + i keys for each program or purchasing such a program?
    Thanks.
    Cmd-I does not show memory. I think you are confusing memory with HD usage.
    Memory is RAM. HD space is a completely different animal, having nothing to do with memory.
    When you say your computer is maxing out of memory, exactly what to you mean? RAM or HD space

  • Repeating Call Library Function Node uses up all my CPU

    Hi,
    I'm not very proficient at labview or programming so any help would be gladly appreciated.
    I bought a USB Digital Input/output hobby kit (one of those things you build yourself). I have got it made and i have managed to get labview talking to it. It was supplied with a .dll to control it and the digital output works a treat.
    However, i want to monitor the ditital input channels (as fast as possible), but if i get a vi to repeatedly call the dll then all my CPU usage goes with it. I don't really understand what the dll does and how exactly labview interacts with it. Can i monitor the digital input channels without using up all my resources?
    I wasn't able to attach the dll that i'm using so i renamed it .jpg instead. You can rename it to .dll to look at it if you want.
    Thanks
    Attachments:
    K8055D.jpg ‏46 KB

    By putting a small wait (of a few milliseconds) you can decrease CPU usage without affecting your performance too badly. However, it really depends on how long a single call to your DLL actually takes. Have you measured this? If it takes, say, a half-second for a single DLL call to execute, then small delays are not going to help because the bulk of the CPU usage is taken up by your DLL.
    By the way, a CIN is not likely to help at all. There's not much difference in terms of overhead for a CIN vs Call Library node anyway.
    Joe

  • Syslogd process uses all available cpu & console app won't run.

    I have a Mac Mini (G4 power PC) running 10.5.5. Just recently after several minutes the system never wakes. It just shows the SBBOD. All I can do is hold down the power button and reboot. When the system reboots, using the activity monitor, I see that the process named syslogd uses all available cpu. I can still do things, but the cpu is saturated.
    I took a snapshot of the syslogd process, and I can post it here if anyone thinks it might help.
    If I activate the console application, the window comes up then hangs with the SBBOD.
    The syslogd process uses all available cpu right after reboot, and does so regardless of which user (including root) is logged in. Attempting to kill the syslogd process with the activity monitor does nothing

    Thanks! It took a long time for the disk utility to fix the permissions, but as soon as it did, the logger process calmed down. Looking at the log file now, I see it was my McAfee virus scan causing the logger to flip-out.
    I'm now looking for a new MAC anti-virus program.

  • Java using all available cpu

    I am having an issue with my weblog server. Whenever someone try's to get to my weblog server the java process takes up all the processor. And I cannot access my weblogs.

    Just wondering if you ever solved your problem? When I have WO running my
    java process is taking about 90-100% CPU.
    Pat.

  • Minimum usable CPU speed for Photoshop Elements

    It has a CPU described as:  A4-5000 APU with Radeon (tm) HD Graphics 1.5 GHz.
    Windows 8.1 operating system.
    Will I be able to use Photoshop Elements on this?

    I know about the min specs. The reason I'm asking if it really checks the CPU speed is I have a school that *is* running Premiere Elements 10 on the exact same hardware. Same CPU. The only difference is the new version I'm trying to install is the volume license version, part of the Adobe Digital School collection. The school that already has it running is using Premiere Elements 10 with either separate licenses or some other license setup. So it doesn't make sense why it worked but doesn't now.
    Testing today. On my test PC, a Core 2 6300 XPsp3, the setup would start up OK using the non-VL installer, but fail when I tried to use the setup.exe from the new installer. As far as I know the program is the same, but I don't think I can do the XML customizations needed to do a silent installer on the non volume licensed version of Premiere Elements 10. In short, why does one version of PE 10 install but not the other?
    Sir_Timbit

  • CPU speed MSI GX620

    I have a MSI GX620 as you can see in the title, I installed CPU-Z to read my CPU speed, multiplier etc.
    It has a P7350 processor, that should do at least 2 GHz, though when i check it at CPU-z it says i have a speed of 1850 MHz with a multiplier of 6, this all is with the turbo button on.
    Before I've had a reading of 2.3 GHz with 7.5 multiplier, that is more like the way i want it, how do i get my CPU to work faster? When I'm playing a game it's at 100% CPU usage but my laptop won't push the multiplier to 7.5 for better results.
    Thanks in advance for any replies.

    Your CPU is in "standby" mode when you are not doing anything, therefore it underclocks itself. When you play your games, it goes back to its full clock speed. If your CPU is always 100% when gaming it is because the CPU is not able to keep up with the game . Remember, a laptop always has alot less performance than a desktop computer.

  • T22 CPU Speed Change Automatica​lly in Windows XP

    Dear All,
    I am using IBM Thinkpad T22 Type 2647, I am facing problem of CPU speed. My Actuall CPU is 900 Mhz, but it changes automatically to 400, 450, upto 896Mhz. Every time i start my laptop it shows different Mhz in the XP. In BIOS it remains constant 900Mhz. I Reinstall Windows XP Home Edition but problem remains. Kindly Guide me in this regards, I will be very thankfull to you all pplz.
    Thanks & Regads,
    Suleman Khalil

    Welcome to the forum!
    Your T22 is behaving normally, what you're seeing is SpeedStep in action. This can be disabled in BIOS under power management.
    Hope this helps.
    Cheers,
    George
    In daily use: R60F, R500F, T61, T410
    Collecting dust: T60
    Enjoying retirement: A31p, T42p,
    Non-ThinkPads: Panasonic CF-31 & CF-52, HP 8760W
    Starting Thursday, 08/14/2014 I'll be away from the forums until further notice. Please do NOT send private messages since I won't be able to read them. Thank you.

Maybe you are looking for

  • Voice over on an ipad

    I cannot activate voice over on an ipad 1. Is there a tutorial on it? I'm trying to set it up for a visually impaired person.

  • Loading two UOM in Multiprovider possible?

    Hi Friends, I need to develop a multiprovider with a cube and dso. Cube-- has Base UOM DSO- has alternate UOM. I am able to drag only Base UOM from the cube. I am not able to drag the alternate UOm from DSO into multiprovider. Please help me. Thanks,

  • Get the row index by clicking on a link in a table

    Hi, I am using a table to display a product catalog in Web Dynpro ABAP. The user should be able to click on any material number (link) in the table to get a detail view of this material. How do I get back the table line, the user has clicked to show

  • Safari vs. Firefox and Other Browsers

    As already posted in these Safari forums, a number of people can not visit certain web pages using Safari under Leopard, while Firefox and similar browsers, and also Safari under Tiger, can. Some people can not visit certain pages at all, and some pe

  • Tracks in nwdi

    Hi, there are tracks in nwdi and need to do mofification if requriement and want to  deploy the trackinto new server from old server? how to deploy the tracks in new server from old server?