Path to AIR

Is there some function that will return the path to my air
app/exe as a String?

File.applicationDirectory

Similar Messages

  • Installing a LARGE AIR application

    Hello,
    I am attempting to create an installer for Windows that installs the AIR runtime, our application, and all the content required such that any user can log in and use the application. Our application is an educational tool for autistic children, and will be installed in lab environments in schools.
    Our AIR application by itself is not large - about 5MB. However, it relies upon about 600MB of external assets. These include various forms of media: images, audio clips, SWFs etc. If I try to bundle all of this into a single AIR file using FlashBuilder 4, FlashBuilder dies due to lack of memory to the JVM. I have tried to increase memory to the JVM, but even given the maximum it still does not work. I then attempted to package and sign the AIR file using the command line tools. That appears to work, however that operation results in a bloated AIR file that is over 1GB in size, almost double the size of the content packaged into it. If I attempt to use the sidecar installer provided by Adobe to install this AIR file the installer dies. Further investigation shows that others have hit this same size limitation with AIR files, but there is no resolution in site to this problem.
    Since it seemed impossible to package the entire application into a single AIR file my next attempt was to keep the content separate from the AIR application. I have experimented with Installshield, but have found no way to chain together the sidecar installer MSI with another MSI that installs the content to the same location. I could install the AIR application, and then let the application itself finish the installation by copying the content to app-storage://, but then the application is only usable by the user who installed it. In a lab environment in a school this doesn't work, because typically the person who is installing the application is an administrator, not the end user. app-storage:// resides under a user's directory, not in a shared location. The application is unable to copy files to the app:// location due to the security model of AIR.
    I know that I can do a silent install from the command line using the sidecar installer, but I haven't found a way to chain this together with another MSI that installs the content. It could be that I am too limited by what Installshield Express offers. I am now attempting to use NSIS.
    Any advice anyone may have on how to do this is very appreciated. Surely others have needed to install large media rich AIR applications on Windows. AIR is a great platform for us in many respects, but I must be able to create an easy seamless install process for end users. Our product will be going into use over the next 6 months by over 1000 users, and that number will grow quickly. I would be willing to pay for a support incident from Adobe if that is warranted.
    Thanks
    Kevin MacDonald

    After much gnashing of teeth I I came up with what appears to be a workable solution. I am posting my solution here for the benefit of others. I was able to use NSIS to create an installer that first installs my AIR application via Adobe silent install feature (http://help.adobe.com/en_US/AIR/1.5/air_runtime_redist/air_runtime_redist.pdf), and then proceeds to install the content in the same folder. The end result is an application that should work for all users and is a reasonably seamless installation experience . The only downside is that you wind up with a total of 3 new items in the Programs & Features control panel: one for Adobe AIR, one for the NSIS installer, and one for the AIR application. The uninstaller only removes the NSIS installer, but that zaps all the content off the disk so it's not terrible. Another little gotcha is that the install folder in this script needs to match the folder in the descriptor file of the AIR application, because everything needs to wind up in the same folder.
    This also assumes you have permission from Adobe to redistribute the AIR runtime.
    My NSIS script is below.
    ; Script generated by the HM NIS Edit Script Wizard.
    ; HM NIS Edit Wizard helper defines
    !define PRODUCT_NAME "My Product Install Kit"
    !define PRODUCT_VERSION "2.0"
    !define PRODUCT_PUBLISHER "mycompany"
    !define PRODUCT_WEB_SITE "http://www.mycompany.com"
    !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\Adobe AIR Application Installer.exe"
    !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
    !define PRODUCT_UNINST_ROOT_KEY "HKLM"
    ; MUI 1.67 compatible ------
    !include "MUI.nsh"
    ; MUI Settings
    !define MUI_ABORTWARNING
    !define MUI_ICON "..\..\..\..\..\__staging\InstallerResources\TT.ico"
    !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
    ; Welcome page
    ; License page
    !insertmacro MUI_PAGE_LICENSE "..\..\..\..\..\__staging\InstallerResources\License.txt"
    ; Directory page
    !insertmacro MUI_PAGE_DIRECTORY
    ; Instfiles page
    !insertmacro MUI_PAGE_INSTFILES
    ; Finish page
    ; NOTE: This provides an option to run the AIR application. This depends upon the Client.air file creating this executable. It doesn't get created by this installer.
    ;       Also, The directory 'My Product 2.0' shown anywhere in this script must match the installation directory created by Client.air or nothing will be in the right spot.
    !define MUI_FINISHPAGE_RUN "$INSTDIR\My Product 2.0\My Product 2.0.exe"
    !insertmacro MUI_PAGE_FINISH
    ; Uninstaller pages
    !insertmacro MUI_UNPAGE_INSTFILES
    ; Language files
    !insertmacro MUI_LANGUAGE "English"
    ; MUI end ------
    Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
    OutFile "Setup.exe"
    InstallDir "$PROGRAMFILES\mycompany"
    InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
    ShowInstDetails show
    ShowUnInstDetails show
    var removePreviousInstall
    Section "MainSection" SEC01
      StrCpy $removePreviousInstall "A previously installed version of My Product 2.0 has been detected at $INSTDIR\My Product 2.0 that must be un-installed before proceeding. Please go to Control Panel --> Programs and Features and fully un-install any mycompany components. Also, make sure that this folder is deleted. Then, you may attempt to re-install. The installer will quit now."
      SetOutPath "$APPDATA\mycompanyAIRInstaller"
      SetOverwrite try
      File /r "..\..\..\..\..\__staging\mycompanyAIRInstaller\*.*"
      ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe AIR" "DisplayVersion"
      IfErrors installAIRRuntime
      Goto installAIRFile
      installAIRRuntime:
      MessageBox MB_OK "NOTE: The Adobe AIR Runtime will now be installed. Please accept the AIR license agreement in the following dialog and allow the installation to complete."
      ExecWait '"$APPDATA\mycompanyAIRInstaller\AdobeAIRInstaller.exe"' $0
      ${If} $0 != '0'
        MessageBox MB_OK|MB_ICONSTOP 'Adobe AIR Installer returned error code ("$0"). Adobe AIR must be installed for this installation to complete.'
        Quit
      ${EndIf}
      installAIRFile:
      ;Check for existence of a previous installation
      IfFileExists "$INSTDIR\My Product 2.0" ExistingInstallDetected NoExistingInstallDetected
      ExistingInstallDetected:
         MessageBox MB_OK $removePreviousInstall
         Quit
      NoExistingInstallDetected:
    ;  MessageBox MB_OK "Installing Adobe AIR Runtime and Application via silent installation"
      ExecWait '"$APPDATA\mycompanyAIRInstaller\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe" -silent -eulaAccepted -location "$INSTDIR" -desktopShortcut -programMenu "$APPDATA\mycompanyAIRInstaller\Client.air"' $0
      ${Switch} $0
      ${Case} '0'
        ${Break}
      ${Case} '1'
        MessageBox MB_OK 'A restart is required to complete this installation'
        ${Break}
      ${Case} '3'
        MessageBox MB_OK 'The Adobe AIR runtime was not found. Please try fulling un-installing any intalled components and attempt to re-install.'
        ${Break}
      ${Case} '4'
        MessageBox MB_OK 'Failed to load the Adobe AIR runtime. Please try fulling un-installing any intalled components and attempt to re-install.'
        ${Break}
      ${Case} '7'
      ${Case} '9'
        MessageBox MB_OK $removePreviousInstall
        Quit
        ${Break}
      ${Default}
        MessageBox MB_OK 'Unknown error ("$0") installing the Adobe AIR runtime. Please try fully un-installing any installed components and attempt to re-install.'
        ${Break}
      ${EndSwitch}
      SetOutPath "$INSTDIR\My Product 2.0\assets\abagale"
      File /r "..\..\..\..\..\__staging\Client_abagale\*.*"
    SectionEnd
    Section -AdditionalIcons
      SetOutPath $INSTDIR
    ;  WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}"
      CreateShortCut "$SMPROGRAMS\mycompany\Uninstall My Product 2.0.lnk" "$INSTDIR\Uninstall My Product 2.0.exe"
    SectionEnd
    Section -Post
      WriteUninstaller "$INSTDIR\Uninstall My Product 2.0.exe"
      WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$APPDATA\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$APPDATA\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
    SectionEnd
    Function un.onUninstSuccess
      HideWindow
      MessageBox MB_ICONINFORMATION|MB_OK "My Product 2.0 Install Kit was successfully removed from your computer."
    FunctionEnd
    Function un.onInit
      MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove My Product 2.0?" IDYES +2
      Abort
    FunctionEnd
    Section Uninstall
      RMDir /r "$INSTDIR\My Product 2.0\*.*"
      RMDir /r "$APPDATA\mycompanyAIRInstaller\*.*"
      ;Deletes the link put there by the AIR app installer.
      Delete "$SMPROGRAMS\mycompany\My Product 2.0.lnk"
      DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
      DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
      SetAutoClose true
    SectionEnd

  • AIR applications will not install on Super OS (Ubuntu 9.04) 32-bit

    I was able to install Adobe Air on my system fine, but no
    AIR apps will install. Anything I try to install, it just pops up a window for a millisecond and refuses to install. If I download an AIR app, the AIR app installer pops up and gives the option to open or save and I can't install apps either way.
    Thanks for any help,
    Rob Steel

    Hey Rob
    Thanks for reporting the issue. In order for us to find out the cause of the behaviour you see on you system we would like you to provide some more information.
    1. Execute the following from terminal: touch ~/.airappinstall.log
    2. Try to install the air app and provide us the contents of this file.
    In case the contents of the log file is empty, try installing the app from command line:
    Adobe\ AIR\ Application\ Installer /path/to/AIR/file.air
    If there is a crash, can you provide us the crash log generated.
    Thanks for your time
    Sundeep

  • Export Mobile App to Air Exe/Dmg

    I have an application for mobile devices that I want to export as an exe or dmg.
    I found online to use ADT. Problem is is that I get errors (different ones depending on if air SDK i use)
    If i use air 3.0:
    AIR file at [app path]/app.air could not be converted.
    The error was ""
    If I use air 3.1 or air 3.2 sdk
    SDK is missing file [my path to air]\lib\nai\bin\naip.exe
    I'm running
    java -jar [path to air]\lib\adt.jar" -package -target native app.dmg app.air
    I've also tried
    java -jar [path to air]\lib\adt.jar" -package -target native app.exe app.air
    Any ideas? Apparently there is an integrated Flash Builder 4.6 tool, but for some reason the option under export release doesn't exist for mobile projects - strange...

    What I ended up doing was creating a new Air for Desktop projects that used the source from the mobile project.   

  • Air application Need to download a folder

    Hi,
    I am able to download a file from anyplace to my system(usgin URLStream). But i want to download a folder and its content to local path on Air scripting. Is it possible to do this.
    Example:
    In my server i have a folder called "Samp" in side that i have 1.exe,2.swf,3.swf,4.air.
    I am able to download them one by one and stored in the local machine.Insted of downloading one by one can i able to download the Entire "Samp" folder to my local machine?.
    Note:
    I used this for updating the .swf files on each client.The download will be happen automatic .So in this case there is no user interaction for save the file.
    Thanks,
    Siva

    Your best option is to communicate with the server you're downloading from, asking it to create a single compressed (.zip) file. Download that single file containing the whole folder, uncompress and overwrite as needed. There is no such thing as downloading a "folder" without typical traversal techniques.

  • Errors during packaging AIR mobile application.

    I have two problems with AIR 3.7.
    First problem is the same as described in topic http://forums.adobe.com/message/5211842
    If I compile with flah -debug=true it is ok. But with -debug=false I can't package my .apk/ipa file because of error:
    "error 304: Initial window content is invalid"
    I tried with newest AIR SDK beta (downloaded from http://labs.adobe.com/downloads/air.html) dated as "Apr 16 2013" (build number 1680) but the same result.
    Second problem is when I try to use .swf file compiled with -debug=true flag. Here is output:
    '/opt/adobe_sdks/AIR_3.7/bin/adt' -package -target ipa-ad-hoc -provisioning-profile 'Profil_Radek_B.mobileprovision' -storetype pkcs12 -keystore 'Iphone Developer Radoslaw Bulat.p12' -storepass XXXX test.ipa test-app.xml icons/icon114.png icons/icon128.png icons/icon16.png icons/icon32.png icons/icon36.png icons/icon48.png icons/icon512.png icons/icon57.png icons/icon72.png test.swf
    Exception in thread "main" java.lang.Error: Unable to find named traits: org.papervision3d.core.geom::Pixels
              at adobe.abc.Domain.resolveTypeName(Domain.java:232)
              at adobe.abc.Domain.resolveTypeName(Domain.java:149)
              at adobe.abc.GlobalOptimizer$InputAbc.resolveTypeName(GlobalOptimizer.java:273)
              at adobe.abc.GlobalOptimizer$InputAbc.resolveSlotType(GlobalOptimizer.java:956)
              at adobe.abc.GlobalOptimizer$InputAbc.resolveType(GlobalOptimizer.java:536)
              at adobe.abc.GlobalOptimizer$InputAbc.resolveTypes(GlobalOptimizer.java:449)
              at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:332)
              at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler.java:611)
              at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:104)
    If I try to package .apk file everything is ok.
    Here are additional commands I use:
    $ /opt/adobe_sdks/AIR_3.7/bin/mxmlc -version
    Version 2.0.0 build 353448
    $ /opt/adobe_sdks/AIR_3.7/bin/amxmlc -compiler.source-path project-air/src/ flash/src/ flash/lib/GreenSock/ flash/lib/HiResStats/lib/ flash/lib/as3corelib/ flash/lib/asunit/ flash/lib/mochi/src/ flash/lib/starling/src/ flash/lib/starling-imagebatch/src/ flash/lib/feathersui/src/ -swf-version=20 -static-link-runtime-shared-libraries=true -locale en_US -define=CONFIG::DEBUG,false -frame start "App" -define=CONFIG::CLASSIC,true -compiler.include-libraries flash/lib/assets.swc flash/lib/flash.swc flash/lib/analytics.swc flash/lib/as3crypto.swc flash/lib/CJSignals\ 1.0.32.swc flash/lib/Stardust\ 1.3.186.swc flash/lib/PNGEncoder2.swc -managers flash.fonts.AFEFontManager -debug=true -o test.swf project-air/src/AirMain.as

    I checked attached project from https://bugbase.adobe.com/index.cfm?event=bug&id=3532285 and my results are as follows:
    If I compile it as it was stated in compile_and_package.bat file ($AIR_HOME/bin/amxmlc +configname=airmobile -swf-version=$SWF_VERSION -debug=false -output out/Main_non_debug.swf src/Main.as) it works ok
    But if I change "+configname=airmobile" to "+configname=air" (which I believe is default) it will produce bad .swf file (which I cannot package with adt).
    I've tried it with my project and results are the same: with +configname=airmobile it works ok but with +configname=air it produce bad .swf.
    Could you please verify if it behaves the same for you?

  • Launching an Adobe AIR file from Director 11

    I am not much of a Lingo programmer and am trying to figure out how to launch an external application from within Director 11.  Have done alot of searching and reading on the internet and everything I found points to using the following script or BuddyAPI
    I am using the following
    open the moviePath & "cme_managingpain.air"
    This is part of a canned "RollOver Graphic Change" script.  On mouseUp it calls that line.
    I also looked at BuddyAPI but don't know enough lingo to understand how to use it.
    Any ideas on what is wrong with my line of script?
    Has anyone tried lauching an AIR file within Director?
    The air file is in the same folder as my .dir file.

    The problem with using the native 'open()' command you posted is that you probably also need to provide the full path to the executable that will open the .air file, and what's more if something goes wrong there is no way for you, the developer, to programatically determine this. In that sense it is better to use the Buddy API xtra - just be sure to remember to distribute it with your projector:
    on mouseUp me
      OK = baOpenFile(_movie.path & "cme_managingpain.air", "normal")
      if OK < 32 then
        -- an error occurred, check the BudAPI docs for numbers and their meaning
        alert "Error opening file:" && OK
      end if
    end

  • Photoshop CS6 crashed in OSX 10.8

    The splash screen stuck at "Measuring Memory..." and there were a lot of crash reports generated for dynamiclinkmanager
    Aug 22 18:32:22 PoPPaP-MBP com.apple.launchd.peruser.502[211] ([0x0-0xcd0cd].com.adobe.dynamiclinkmanager[1297]): Job appears to have crashed: Abort trap: 6
    Aug 22 18:32:22 PoPPaP-MBP com.apple.launchd.peruser.502[211] ([0x0-0xce0ce].com.adobe.dynamiclinkmanager[1301]): Job appears to have crashed: Abort trap: 6
    Aug 22 18:32:22 PoPPaP-MBP.local ReportCrash[1298]: Saved crash report for dynamiclinkmanager[1297] version 6.0.0 (6.0.0) to /Users/pongsak/Library/Logs/DiagnosticReports/dynamiclinkmanager_2012-08-22-183222_PoPPaP-MBP.crash
    Aug 22 18:32:22 PoPPaP-MBP.local ReportCrash[1298]: Removing excessive log: file://localhost/Users/pongsak/Library/Logs/DiagnosticReports/dynamiclinkmanager_2012-08-22-182700_PoPPaP-MBP.crash
    Aug 22 18:32:23 PoPPaP-MBP.local ReportCrash[1298]: Saved crash report for dynamiclinkmanager[1301] version 6.0.0 (6.0.0) to /Users/pongsak/Library/Logs/DiagnosticReports/dynamiclinkmanager_2012-08-22-183223_PoPPaP-MBP.crash
    Aug 22 18:32:23 PoPPaP-MBP.local ReportCrash[1298]: Removing excessive log: file://localhost/Users/pongsak/Library/Logs/DiagnosticReports/dynamiclinkmanager_2012-08-22-182702_PoPPaP-MBP.crash
    Aug 22 18:32:23 PoPPaP-MBP com.apple.launchd.peruser.502[211] ([0x0-0xcf0cf].com.adobe.dynamiclinkmanager[1302]): Job appears to have crashed: Abort trap: 6
    Aug 22 18:32:23 PoPPaP-MBP.local ReportCrash[1298]: Saved crash report for dynamiclinkmanager[1302] version 6.0.0 (6.0.0) to /Users/pongsak/Library/Logs/DiagnosticReports/dynamiclinkmanager_2012-08-22-183223-1_PoPPaP-MBP.crash
    Aug 22 18:32:23 PoPPaP-MBP.local ReportCrash[1298]: Removing excessive log: file://localhost/Users/pongsak/Library/Logs/DiagnosticReports/dynamiclinkmanager_2012-08-22-182703_PoPPaP-MBP.crash
    and this is the content of one
    Process:         dynamiclinkmanager [1297]
    Path:            /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/MacOS/dynamiclinkmanager
    Identifier:      com.adobe.dynamiclinkmanager
    Version:         6.0.0 (6.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [211]
    User ID:         502
    Date/Time:       2012-08-22 18:32:21.278 -0500
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Sleep/Wake UUID: A638DD09-9EC9-4EC2-8232-69D990052090
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminate called without an active exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x95574a6a __pthread_kill + 10
    1   libsystem_c.dylib                       0x9820aacf pthread_kill + 101
    2   libsystem_c.dylib                       0x98241508 abort + 168
    3   libc++abi.dylib                         0x9260fd68 abort_message + 151
    4   libc++abi.dylib                         0x9260d7df default_terminate() + 48
    5   libstdc++.6.dylib                       0x99cf44b2 std::terminate() + 21
    6   com.adobe.dynamiclinkmanager            0x00006714 main + 772
    7   com.adobe.dynamiclinkmanager            0x00003c26 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x955759ae kevent + 10
    1   libdispatch.dylib                       0x94351cc5 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x943517fd _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x955750ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9820c04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9820be19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x981f3cca start_wqthread + 30
    Thread 3:
    0   libc++abi.dylib                         0x9260e46c parse_lsda_header(_Unwind_Context*, unsigned char const*, lsda_header_info*) + 35
    1   libc++abi.dylib                         0x9260e0e3 __gxx_personality_v0 + 235
    2   libunwind.dylib                         0x90b9ad0f _Unwind_RaiseException + 179
    3   libc++abi.dylib                         0x9260e961 __cxa_throw + 97
    4   com.adobe.dvacore.framework             0x001d8903 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::TerminateCurrentWorkerThread() + 51
    5   com.adobe.dvacore.framework             0x001d960d dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 189
    6   com.adobe.dvacore.framework             0x001da6fa boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, void (*)(boost::shared_ptr<dvacore::threads::ThreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&), boost::_bi::list2<boost::_bi::value<boost::shared_ptr<dvacore::threads::ThreadSafeDelayQueue> >, boost::_bi::value<boost::shared_ptr<dvacore::threads::Gate> > > >, void>::invoke(boost::detail::function::function_buffer&) + 26
    7   com.adobe.dvacore.framework             0x001d7047 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 151
    8   com.adobe.dvacore.framework             0x001d7158 boost::detail::thread_data<boost::_bi::bind_t<void, void (*)(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&), boost::_bi::list5<boost::_bi::value<std::string>, boost::_bi::value<boost::function<void ()> >, boost::_bi::value<dvacore::threads::ThreadPriority>, boost::_bi::value<boost::function<void ()> >, boost::_bi::value<boost::function<void ()> > > > >::run() + 64
    9   com.adobe.boost_threads.framework          0x0010c737 thread_proxy + 167
    10  libsystem_c.dylib                       0x98209557 _pthread_start + 344
    11  libsystem_c.dylib                       0x981f3cee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xbffff814  ecx: 0xbffff78c  edx: 0x95574a6a
      edi: 0xacb2fa28  esi: 0x00000006  ebp: 0xbffff7a8  esp: 0xbffff78c
       ss: 0x00000023  efl: 0x00000206  eip: 0x95574a6a   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xacb34000
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x53ff3 +com.adobe.dynamiclinkmanager (6.0.0 - 6.0.0) <182DDE06-F536-C156-6D32-4C0725A3C4E2> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/MacOS/dynamiclinkmanager
       0xe5000 -    0xebff7 +com.adobe.boost_date_time.framework (6.0.0 - 6.0.0.0) <09A2FC8A-015D-10D9-E24E-31E02B370F7F> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
      0x10b000 -   0x119ff3 +com.adobe.boost_threads.framework (6.0.0 - 6.0.0.0) <E64D388C-A773-3232-BF7C-7A822E5C919D> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
      0x13d000 -   0x2f7fef +com.adobe.dvacore.framework (6.0.0 - 6.0.0.0) <7B46AC03-C7A1-4647-C60A-764C1CD2FC43> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
      0x50d000 -   0x510fff +com.adobe.boost_system.framework (6.0.0 - 6.0.0.0) <FFA9E16A-F75C-0926-6A9A-454E173B2906> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
      0x518000 -   0x541ff3 +com.adobe.dvamediatypes.framework (6.0.0 - 6.0.0.0) <99FECDBB-2293-8336-9EB9-C5E7903F1006> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvamediatypes.framework/Versions/A/dvamediatypes
      0x578000 -   0x5d5ffb +com.adobe.dvatransport.framework (6.0.0 - 6.0.0.0) <4EAE9BF9-5CBC-A2C4-2F15-C39E4A178F12> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvatransport.framework/Versions/A/dvatransport
      0x655000 -   0x68dfff +com.adobe.dvamarshal.framework (6.0.0 - 6.0.0.0) <75D2CE81-FEED-DD94-3028-AAC6B79A8DAA> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dvamarshal.framework/Versions/A/dvamarshal
      0x726000 -   0x906fe7 +com.adobe.dynamiclink.framework (6.0.0 - 6.0.0.0) <D57C61FB-C2D2-836D-8AB7-5C2C84B3066B> /Library/Application Support/Adobe/*/dynamiclinkmanager.app/Contents/Frameworks/dynamiclink.framework/Versions/A/dynamiclink
    0x8fea7000 - 0x8fed9e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x90027ff7  com.apple.ChunkingLibrary (2.0 - 132) <172C3F7F-CB49-323F-932F-35340999979E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x90280000 - 0x902cfff6  libTIFF.dylib (843) <AA81BA16-8026-35DA-8193-2C8715ACD435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x902d0000 - 0x902d8fff  com.apple.DiskArbitration (2.5 - 2.5) <E49427B0-5317-3DFD-B12E-117402BB19CB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x902d9000 - 0x902dafff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x902db000 - 0x902e2fff  libsystem_dnssd.dylib (379.27) <4B3700EA-F14D-3994-BAAB-79BBD33D7305> /usr/lib/system/libsystem_dnssd.dylib
    0x9031b000 - 0x90374ff7  com.apple.AE (645 - 645) <D4919967-EF16-36BA-9E8A-DA110DE8BB4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x903b6000 - 0x903ccfff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x904a4000 - 0x904b9fff  com.apple.speech.synthesis.framework (4.1.10 - 4.1.10) <20E394D6-D9BA-3C1D-993A-533B60EF3B63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x904ba000 - 0x904cdff9  com.apple.MultitouchSupport.framework (235.27 - 235.27) <75D9C0FD-6A40-3A9E-8861-C74DBE137CF3> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x904ce000 - 0x90509fe7  libGLImage.dylib (8.5) <E5F2D8DE-3053-361A-982B-9BB2AE73E324> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x905ff000 - 0x9061cfff  libxpc.dylib (140.37) <F61095FA-B2CF-3CD8-9088-9D9FC18B38BC> /usr/lib/system/libxpc.dylib
    0x9061d000 - 0x90699ffb  com.apple.Metadata (10.7.0 - 707.1) <E18350AD-CAA9-3323-BDE9-63A688792C6C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x9069e000 - 0x906a9fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x906aa000 - 0x906b4fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x906b5000 - 0x906b9fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x906ba000 - 0x90764ff7  com.apple.LaunchServices (539 - 539) <4C026504-5420-35D7-912E-A584C6F9FFC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x90765000 - 0x90823ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x90992000 - 0x9099afff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
    0x9099b000 - 0x90a49ff3  com.apple.CoreText (260.0 - 275.14) <3CC31B7F-5560-364A-ADFC-31861C3C2328> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x90a4a000 - 0x90b3bffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x90b40000 - 0x90b8effb  com.apple.SystemConfiguration (1.12 - 1.12) <F3C87D17-D5F3-39D3-B6F1-1DF3DBECCBDE> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x90b8f000 - 0x90b8fffd  libOpenScriptingUtil.dylib (148) <6B34E8E4-EE31-3E2B-AEB3-8714C3102AED> /usr/lib/libOpenScriptingUtil.dylib
    0x90b90000 - 0x90b99ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x90b9a000 - 0x90ba1ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x90bf9000 - 0x90c3aff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x90c3b000 - 0x90c3cfff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x90c9e000 - 0x91857fff  com.apple.AppKit (6.8 - 1187) <5E13B150-4096-3B61-9DC0-6ABA48F6515B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x918a4000 - 0x9199cff2  libsqlite3.dylib (138) <AA00F27E-B72D-31DE-8EE4-985227CC9912> /usr/lib/libsqlite3.dylib
    0x919a8000 - 0x919c5ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x919c6000 - 0x91da8ff7  com.apple.HIToolbox (2.0 - 624) <04C20B6A-FE3D-396E-BCAF-AC4DBAB3747E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x91de2000 - 0x91dfbfff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91e6c000 - 0x92129ff3  com.apple.security (7.0 - 55163.44) <798A1E51-3030-35BD-B5E6-4B6F65469357> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9215b000 - 0x921d5ff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9249f000 - 0x924a0ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x9259e000 - 0x925a8ffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <D3112172-D3A7-3C9A-825D-5630D47327D1> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x92603000 - 0x92603fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x9260c000 - 0x9262eff3  libc++abi.dylib (24.2) <4C064BFE-B8B4-35CA-AB3C-F6A47D47A0F2> /usr/lib/libc++abi.dylib
    0x92679000 - 0x9267afff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x9275d000 - 0x927c5fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x927c6000 - 0x92812fff  libcorecrypto.dylib (106) <FAAD1A30-0D84-3A17-AC40-288EF0F529AA> /usr/lib/system/libcorecrypto.dylib
    0x92813000 - 0x9281aff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9281b000 - 0x92881fff  com.apple.print.framework.PrintCore (8.0 - 387) <84DFC4F0-3186-3C59-9EBD-9EF2C3561A43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x92882000 - 0x928aeff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x928af000 - 0x92909fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x9290a000 - 0x9294cff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x9294d000 - 0x9295bff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x929d6000 - 0x929fffff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x92a00000 - 0x92a0efff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x92a3c000 - 0x92a69ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x93b36000 - 0x93b42ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x93bcc000 - 0x93c64ff7  com.apple.CoreServices.OSServices (557 - 557) <219C11A8-8446-336E-B518-F52D1571420F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x93c65000 - 0x93c8aff7  com.apple.CoreVideo (1.8 - 99.0) <7A90C337-4493-3393-9C56-75EB52112D75> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93c8b000 - 0x93c94ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
    0x93c95000 - 0x93cc6ff7  com.apple.DictionaryServices (1.2 - 184) <9199E88F-2477-3596-9F56-B8E317A7164D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x93cc7000 - 0x93ec7ffb  com.apple.CoreData (106 - 407.5) <B4386286-5C67-3134-A5BD-852447DA696E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93ec8000 - 0x942e5ff3  FaceCoreLight (2.0.1) <3EF03B25-C361-31A6-8704-3FBFFBD0E10B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x942e6000 - 0x94302ff7  libPng.dylib (843) <43C3DD20-4BB2-3429-A40A-7FF9BC50E5FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94303000 - 0x94348ff5  com.apple.opencl (2.1.17 - 2.1.17) <921C1549-637A-33D7-A891-834FB9F582C7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9434d000 - 0x9435fff7  libdispatch.dylib (228.18) <833C83BE-278C-353E-AC6D-9B85FAC50A1D> /usr/lib/system/libdispatch.dylib
    0x94360000 - 0x943c2fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x943c3000 - 0x943c5fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x943c6000 - 0x94405ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94406000 - 0x944a0fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x944d2000 - 0x944dafff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x9451e000 - 0x9451effd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <B688A998-93B5-3D9B-BAE4-E49947AA82B4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94cd1000 - 0x94ce1ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x94ce2000 - 0x94ce2fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95560000 - 0x9557affc  libsystem_kernel.dylib (2050.7.9) <81E269C6-0F96-3075-9589-D35657D23CDD> /usr/lib/system/libsystem_kernel.dylib
    0x955bb000 - 0x95777ffd  libicucore.A.dylib (491.11.1) <DB04A8FD-9BBE-3CBC-869F-8FA855FB43D2> /usr/lib/libicucore.A.dylib
    0x95778000 - 0x9578afff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x9578b000 - 0x957f2ff7  com.apple.framework.IOKit (2.0 - 755.9.7) <CB976A7C-2601-3054-BC41-C3AD6896327C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x957fe000 - 0x95895fff  com.apple.ink.framework (1.4 - 110) <C01F2572-E7E4-3A6C-B4F2-2F97B4AD43D5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x95896000 - 0x958a4ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x95cba000 - 0x95dc7ffb  com.apple.ImageIO.framework (3.2.0 - 843) <4BFEFB05-3EE3-36A7-891D-CE03D1DF8125> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x95dc8000 - 0x95e1eff3  com.apple.HIServices (1.20 - 416) <B23E2C58-A6A5-32B6-811C-0F0551E14483> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x95e21000 - 0x95f6dffb  com.apple.CFNetwork (596.0.1 - 596.0.1) <0EC65BE8-5775-37C8-B6C7-8BC7CAECB222> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x95f6e000 - 0x95f6ffff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x95f70000 - 0x96275fff  com.apple.CoreServices.CarbonCore (1037 - 1037) <92494ADA-2ED1-3141-81B9-23F2C27E779C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x96276000 - 0x96374ff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9637c000 - 0x963a0fff  libJPEG.dylib (843) <04383F74-067F-3E98-882F-21F5B9578984> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x963a1000 - 0x966befff  com.apple.Foundation (6.8 - 945) <B6F00754-C3F7-3E33-B708-CCEA2AA3E969> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x967e5000 - 0x968ceff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x968cf000 - 0x968d0fff  libDiagnosticMessagesClient.dylib (7) <B2BC685E-C129-3F6B-9222-AF3CF4F186AC> /usr/lib/libDiagnosticMessagesClient.dylib
    0x96bc8000 - 0x96bccffc  libGIF.dylib (843) <355B672B-D07D-36FE-B6B9-142406ACFBA2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96bcd000 - 0x96c42ff7  com.apple.ApplicationServices.ATS (332 - 341) <472F564A-BD46-30C3-92F5-87273A512910> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x96ec2000 - 0x96ef8ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x96ef9000 - 0x96f1dff2  com.apple.framework.familycontrols (4.0 - 400) <A313D83E-5A03-3174-A213-1F7D379040D1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x96f68000 - 0x96f6bff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x971f1000 - 0x97233ff7  com.apple.RemoteViewServices (2.0 - 80.3) <EE36AF6C-E574-3F48-9AC3-E8C8295739FF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x97234000 - 0x97235ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x97236000 - 0x9723dfff  liblaunch.dylib (442.21) <349330F8-1BBF-3B78-AFB2-4F32413CE971> /usr/lib/system/liblaunch.dylib
    0x97cc2000 - 0x97cf5ff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x97cf6000 - 0x97cf8ffb  libRadiance.dylib (843) <6C2B92DB-A537-3618-9E68-F006DF427D2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97cfd000 - 0x97cfdfff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x97cfe000 - 0x98140ff3  com.apple.CoreGraphics (1.600.0 - 322) <2E04AAAD-8403-3819-BD6C-9836D42F58B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x98141000 - 0x9819efff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x981f3000 - 0x982b0ffb  libsystem_c.dylib (825.24) <7D90CAC5-EC98-35F8-A52E-81B54F0C7DCC> /usr/lib/system/libsystem_c.dylib
    0x982b1000 - 0x983ecff7  libBLAS.dylib (1073.3) <804B5AF7-2646-31D1-8875-FCCF158476D4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x983ed000 - 0x983f9ffc  libkxld.dylib (2050.7.9) <D2892FF5-C00D-3493-8945-5C36733FE9A3> /usr/lib/system/libkxld.dylib
    0x983fa000 - 0x983fafff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x983fb000 - 0x98584ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x98585000 - 0x98588ffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x98589000 - 0x9858afff  libdnsinfo.dylib (453.16) <6441AEC9-3916-3BF6-BE54-9C25E2BE61E1> /usr/lib/system/libdnsinfo.dylib
    0x9858b000 - 0x9858bfff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9858c000 - 0x9881dffb  com.apple.CoreImage (8.0.17 - 1.0.1) <CE54EC11-1C41-3857-B82D-F8B7D1798F42> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x9881e000 - 0x9883bfff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x98843000 - 0x98917ff7  com.apple.backup.framework (1.4 - 1.4) <12123FB8-B42D-38B0-8463-6BA375C3C643> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98b82000 - 0x98b90fff  com.apple.opengl (1.8.5 - 1.8.5) <AA14FBC0-8AF3-3CCB-A390-C8F9AE81E1E9> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98b91000 - 0x98be8ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
    0x98d03000 - 0x98d27fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x98db3000 - 0x98db6ffb  com.apple.TCC (1.0 - 1) <C1B2A1EB-9EA2-3340-8611-F788C87A951F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x98ff2000 - 0x98ff2fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x992e6000 - 0x9934afff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x9934b000 - 0x99351fff  libGFXShared.dylib (8.5) <D2D214E8-A243-3FFD-BA70-D695FF5BD040> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x99352000 - 0x9935effd  com.apple.CrashReporterSupport (10.8 - 411) <62036837-CFEC-37FD-AEB1-040EF573C2B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x99397000 - 0x993e5ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9943e000 - 0x99441ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x99442000 - 0x995baff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x995bb000 - 0x995fffff  libGLU.dylib (8.5) <E4F932FD-A644-354D-8D4E-F337C93AAFC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x99600000 - 0x99604ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x99605000 - 0x997ecffb  com.apple.CoreFoundation (6.8 - 744) <A2BB4949-264A-302B-897E-713860894FE6> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x997ed000 - 0x998f8ff7  libJP2.dylib (843) <D8FE1E1C-D4DC-3465-95C4-AEADD6C2611C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x998f9000 - 0x99905ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9992c000 - 0x999ccff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x999eb000 - 0x999f8fff  libGL.dylib (8.5) <930067EA-F131-336E-BE31-49DD7F6DFB81> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x999fd000 - 0x99b0a15f  libobjc.A.dylib (532) <9663A040-F232-3E2A-8318-AA40B940AF6F> /usr/lib/libobjc.A.dylib
    0x99b0b000 - 0x99b9dffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x99b9e000 - 0x99ba2ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x99be5000 - 0x99be9fff  com.apple.IOSurface (86.0.2 - 86.0.2) <BDF93CE4-9F14-3747-9CD5-FFE71D488BDA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x99bea000 - 0x99c01fff  com.apple.GenerationalStorage (1.1 - 132.1) <4E0F0C47-7796-3152-A77D-F6456287498A> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x99c02000 - 0x99c71ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99cb0000 - 0x99d14ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x99d15000 - 0x99e30ff3  com.apple.desktopservices (1.7.0 - 1.7.0) <62495AB3-8FD5-39D0-A881-07BA77139EAA> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x99e31000 - 0x99e4fffb  com.apple.Ubiquity (1.2 - 234.2) <BEFF43DE-CF72-3E66-90C8-CAECAFD5F3ED> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x99e7c000 - 0x99e86fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x99e87000 - 0x99e94ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x99e95000 - 0x99e97fff  libCVMSPluginSupport.dylib (8.5) <9043B315-4E68-3262-A310-76E64F0409C9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x99e98000 - 0x99fefff7  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <6856CA9B-BF08-341B-AEE9-91CC258D4534> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x99ff0000 - 0x9a0a3ff7  com.apple.coreui (2.0 - 181) <4F071012-F857-367D-B0B8-EAD088A05740> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9a0dc000 - 0x9a0dcfff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x9a0e4000 - 0x9a0e4fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x9a1f9000 - 0x9a5b1ffa  libLAPACK.dylib (1073.3) <0F813868-D84F-365D-8A7B-67FDA169F19C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x9a5b7000 - 0x9a63cff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 135505
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=123.5M resident=55.1M(45%) swapped_out_or_unallocated=68.4M(55%)
    Writable regions: Total=32.0M written=696K(2%) resident=1020K(3%) swapped_out=0K(0%) unallocated=31.0M(97%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             21.3M
    MALLOC guard page                    48K
    Memory tag=35                      7416K
    Stack                              65.5M
    VM_ALLOCATE                         916K
    __DATA                             5264K
    __DATA/__OBJC                       240K
    __IMAGE                             528K
    __IMPORT                              4K
    __LINKEDIT                         37.1M
    __OBJC                             1496K
    __OBJC/__DATA                        40K
    __PAGEZERO                            4K
    __TEXT                             86.4M
    __UNICODE                           544K
    mapped file                        84.8M
    shared memory                       308K
    ===========                      =======
    TOTAL                             311.5M
    also, there is a hang report generated as well
    Date/Time:       2012-08-22 18:32:28 -0500
    OS Version:      10.8 (Build 12A269)
    Architecture:    x86_64
    Report Version:  11
    Command:         Photoshop
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Version:         13.0.0 (20120315.r.428)
    Parent:          launchd [211]
    PID:             1293
    Event:           hang
    Duration:        0.91s
    Steps:           9 (100ms sampling interval)
    Hardware model:  MacBookPro5,1
    Active cpus:     2
    Free pages:      35701 pages (-2316)
    Pageins:         757 pages
    Pageouts:        0 pages
    Process:         Adobe Photoshop CS6 [1293]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Architecture:    x86_64
    Parent:          launchd [211]
    UID:             502
    Task size:       17157 pages
    CPU Time:        0.379s
      Thread 0x97d7     DispatchQueue 1          priority <multiple> cpu time   0.379s
      9 ??? (Adobe Photoshop CS6 + 5550668) [0x10054b24c]
        9 boost::system::system_error::what() const + 1999769 (Adobe Photoshop CS6) [0x1007b0999]
          9 boost::system::system_error::what() const + 1998427 (Adobe Photoshop CS6) [0x1007b045b]
            9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4177427 (Adobe Photoshop CS6) [0x100c51f73]
              9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 3559653 (Adobe Photoshop CS6) [0x100bbb245]
                9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17771246 (Adobe Photoshop CS6) [0x101948c4e]
                  9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8318281 (Adobe Photoshop CS6) [0x101044ea9]
                    9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8353496 (Adobe Photoshop CS6) [0x10104d838]
                      9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 19819640 (Adobe Photoshop CS6) [0x101b3cdd8]
                        9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 19819560 (Adobe Photoshop CS6) [0x101b3cd88]
                          9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 19816263 (Adobe Photoshop CS6) [0x101b3c0a7]
                            9 MediaCoreIF::MediaCoreFunctionImpl(MediaCoreSel, void*, void*, void*, void (*)(_MCResult*, MCStatusEnum), void*) + 10819 (mediacoreif) [0x10e5f19f3]
                              9 MediaCoreIF::MediaCoreIF::MediaCoreIFFactory(MCHostInfo const*, void (*)(_MCResult*, MCStatusEnum), void*) + 344 (mediacoreif) [0x10e5eef48]
                                9 MediaCoreIF::MediaCoreIF::MediaCoreIF(void (*)(_MCResult*, MCStatusEnum), void*, int, int) + 985 (mediacoreif) [0x10e5ee7d9]
                                  9 MediaCoreIF::MediaCoreIF::CreateSourceServer() + 254 (mediacoreif) [0x10e5ea62e]
                                    9 dynamiclink::DynamicLinkMediaServer::CreateDynamicLinkServer(boost::function2<void, dynamiclink::ConnectionStatus, boost::shared_ptr<dynamiclink::DynamicLinkMediaServer> > const&, bool, unsigned int) + 63 (dynamiclink) [0x10ef153bf]
                                      9 dynamiclink::LaunchDynamiclinkManagerRPC() + 493 (dynamiclink) [0x10efdc0dd]
                                        6 dynamiclink::LaunchDynamiclinkManager(boost::shared_ptr<dvatransport::SocketTransport> const&) + 769 (dynamiclink) [0x10efdb0b1]
                                          6 dynamiclink::(anonymous namespace)::GetDynamicLinkManagerProcessList(std::vector<long long, dvacore::utility::SmallBlockAllocator::STLAllocator<long long> >&) + 68 (dynamiclink) [0x10efd88c4]
                                            4 __sysctl + 10 (libsystem_kernel.dylib) [0x7fff8a9bd5f2]
                                             *2 thread_exception_return + 0 (mach_kernel) [0xffffff80002b196b]
                                             *2 hndl_unix_scall64 + 19 (mach_kernel) [0xffffff80002cecf3]
                                               *2 unix_syscall64 + 522 (mach_kernel) [0xffffff80005e17da]
                                                 *2 __sysctl + 688 (mach_kernel) [0xffffff800056a920]
                                                   *2 userland_sysctl + 187 (mach_kernel) [0xffffff800056e6ab]
                                                     *2 ??? (mach_kernel + 3597487) [0xffffff800056e4af]
                                                       *2 ??? (mach_kernel + 3587202) [0xffffff800056bc82]
                                                         *1 return_to_iret + 308 (mach_kernel) [0xffffff80002ce7ac]
                                                           *1 i386_astintr + 35 (mach_kernel) [0xffffff80002b8123]
                                                             *1 ast_taken + 157 (mach_kernel) [0xffffff800021b67d]
                                                               *1 thread_block_reason + 300 (mach_kernel) [0xffffff800022d9dc]
                                                                 *1 ??? (mach_kernel + 190225) [0xffffff800022e711]
                                                                   *1 machine_switch_context + 366 (mach_kernel) [0xffffff80002b3d3e]
                                                         *1 proc_iterate + 607 (mach_kernel) [0xffffff80005606ff]
                                                           *1 sysdoproc_callback + 667 (mach_kernel) [0xffffff800056b68b]
                                                             *1 proc_session + 168 (mach_kernel) [0xffffff800055ee08]
                                                               *1 lck_mtx_unlock + 192 (mach_kernel) [0xffffff80002ad1b0]
                                            1 dvacore::threads::GetProcessIDsForName(std::string const&, std::vector<long long, dvacore::utility::SmallBlockAllocator::STLAllocator<long long> >&) + 582 (dvacore) [0x10e99c546]
                                              1 std::vector<char, std::allocator<char> >::erase(__gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > >) + 80 (dvacore) [0x10e99ca20]
                                                1 <executing in user space>
                                            1 dvacore::threads::GetProcessIDsForName(std::string const&, std::vector<long long, dvacore::utility::SmallBlockAllocator::STLAllocator<long long> >&) + 496 (dvacore) [0x10e99c4f0]
                                             *1 return_from_trap + 156 (mach_kernel) [0xffffff80002ce47c]
                                               *1 i386_astintr + 35 (mach_kernel) [0xffffff80002b8123]
                                                 *1 ast_taken + 157 (mach_kernel) [0xffffff800021b67d]
                                                   *1 thread_block_reason + 300 (mach_kernel) [0xffffff800022d9dc]
                                                     *1 ??? (mach_kernel + 190225) [0xffffff800022e711]
                                                       *1 machine_switch_context + 366 (mach_kernel) [0xffffff80002b3d3e]
                                        2 dynamiclink::LaunchDynamiclinkManager(boost::shared_ptr<dvatransport::SocketTransport> const&) + 1045 (dynamiclink) [0x10efdb1c5]
                                          2 swtch_pri + 10 (libsystem_kernel.dylib) [0x7fff8a9bb752]
                                           *2 ??? (mach_kernel + 215264) [0xffffff80002348e0]
                                        1 dynamiclink::LaunchDynamiclinkManager(boost::shared_ptr<dvatransport::SocketTransport> const&) + 839 (dynamiclink) [0x10efdb0f7]
                                          1 dynamiclink::(anonymous namespace)::GetPortGivenAProcessIDTryOnce(long long const&) + 43 (dynamiclink) [0x10efd9f6b]
                                            1 dynamiclink::GetDynamicLinkManagerPortFileName(long long const&) + 174 (dynamiclink) [0x10efd9c4e]
                                              1 free + 199 (libsystem_c.dylib) [0x7fff905fe8c8]
                                                1 szone_free_definite_size + 2108 (libsystem_c.dylib) [0x7fff90604865]
                                                  1 <executing in user space>
      Thread 0x97ea     DispatchQueue 2          priority <multiple>
      9 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8c04da2a]
        9 kevent + 10 (libsystem_kernel.dylib) [0x7fff8a9bdd16]
         *9 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x97eb     priority <multiple>
      9 start_wqthread + 13 (libsystem_c.dylib) [0x7fff905d21b1]
        9 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff905e7cf3]
          9 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff8a9bd6d6]
           *9 ??? (mach_kernel + 3911152) [0xffffff80005badf0]
      Thread 0x97ec     priority <multiple>
      9 start_wqthread + 13 (libsystem_c.dylib) [0x7fff905d21b1]
        9 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff905e7cf3]
          9 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff8a9bd6d6]
           *9 ??? (mach_kernel + 3911152) [0xffffff80005badf0]
      Thread 0x9816     priority <multiple>
      9 thread_start + 13 (libsystem_c.dylib) [0x7fff905d21c1]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x7fff905e5782]
          9 main + 126768 (MultiProcessor Support) [0x10c482f50]
            9 main + 8592 (MultiProcessor Support) [0x10c4661b0]
              9 main + 8403 (MultiProcessor Support) [0x10c4660f3]
                9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8a9bd0fa]
                 *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5cb0]
      Thread 0x9822     priority <multiple>
      9 thread_start + 13 (libsystem_c.dylib) [0x7fff905d21c1]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x7fff905e5782]
          9 thread_proxy + 133 (boost_threads) [0x10e355f25]
            9 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 99 (dvacore) [0x10e9902f3]
              9 boost::function0<void>::operator()() const + 51 (dvacore) [0x10e9818b3]
                9 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193 (dvacore) [0x10e99a1e1]
                  9 MPWaitOnQueue + 252 (CarbonCore) [0x7fff8ba2cb44]
                    9 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x7fff8baca3e3]
                      9 TSWaitOnCondition + 108 (CarbonCore) [0x7fff8baca20c]
                        9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8a9bd0fa]
                         *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5cb0]
      Thread 0x9823     priority <multiple>
      9 thread_start + 13 (libsystem_c.dylib) [0x7fff905d21c1]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x7fff905e5782]
          9 thread_proxy + 133 (boost_threads) [0x10e355f25]
            9 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 99 (dvacore) [0x10e9902f3]
              9 boost::function0<void>::operator()() const + 51 (dvacore) [0x10e9818b3]
                9 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193 (dvacore) [0x10e99a1e1]
                  9 MPWaitOnQueue + 252 (CarbonCore) [0x7fff8ba2cb44]
                    9 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x7fff8baca3e3]
                      9 TSWaitOnCondition + 108 (CarbonCore) [0x7fff8baca20c]
                        9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8a9bd0fa]
                         *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5cb0]
      Thread 0x9824     priority <multiple>
      9 thread_start + 13 (libsystem_c.dylib) [0x7fff905d21c1]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x7fff905e5782]
          9 thread_proxy + 133 (boost_threads) [0x10e355f25]
            9 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9 (dvatransport) [0x10ed31b19]
              9 SkyConnectionEnv::MainLoop() + 117 (dvatransport) [0x10ed31ab5]
                9 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 1167 (dvatransport) [0x10ed494df]
                  9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8a9bd0fa]
                   *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5cb0]
      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
             0x10c421000 -        0x10c4a6fff  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
             0x10e353000 -        0x10e35ffff  com.adobe.boost_threads.framework 6.0.0 (6.0.0.0) <F5939D5C-7281-3337-354D-534EBE0CB434> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
             0x10e500000 -        0x10e68bff7  com.adobe.mediacoreif.framework 6.0.0 (6.0.0.0) <2A8D7169-E2DD-ED34-91AB-DB015DDCAA90> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/mediacoreif.framework/mediacoreif
             0x10e8b3000 -        0x10ea86fff  com.adobe.dvacore.framework 6.0.0 (6.0.0.0) <741CA228-A4C0-46D7-EAE5-7B27A8830365> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
             0x10ed15000 -        0x10ed75fff  com.adobe.dvatransport.framework 6.0.0 (6.0.0.0) <CFFA02DF-01D5-72D6-5F62-14DD50375A89> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/dvatransport.framework/Versions/A/dvatransport
             0x10eecb000 -        0x10f109fff  com.adobe.dynamiclink.framework 6.0.0 (6.0.0.0) <EFBA7CE2-62B1-908B-8628-C835891855C2> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/dynamiclink.framework/Versions/A/dynamiclink
          0x7fff8a9ab000 -     0x7fff8a9c6ff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ba1d000 -     0x7fff8bd34ff7  com.apple.CoreServices.CarbonCore 1037 (1037) <5127E2AB-AE98-3393-AEF6-CA8C1090F921> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
          0x7fff8c049000 -     0x7fff8c05eff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff905d1000 -     0x7fff9069dfef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         1Password [246]
    Path:            /Applications/1Password.app/Contents/MacOS/1Password
    Architecture:    x86_64
    Parent:          launchd [211]
    UID:             502
    Task size:       5926 pages
    Process:         1PasswordAgent [531]
    Path:            /Users/USER/Library/Application Support/1Password/*/1PasswordAgent.app/Contents/MacOS/1PasswordAgent
    Architecture:    x86_64
    Parent:          launchd [211]
    UID:             502
    Task size:       8076 pages
    CPU Time:        0.001s
    Process:         Adium [231]
    Path:            /Applications/Adium.app/Contents/MacOS/Adium
    Architecture:    x86_64
    Parent:          launchd [211]
    UID:             502
    Task size:       12562 pages
    CPU Time:        0.001s
    Process:         AdobeCrashDaemon [1295]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Required/AdobeCrashDaemon.app/Contents/MacOS/AdobeCrashDaemon
    Architecture:    x86_64
    Parent:          Adobe Photoshop CS6 [1293]
    UID:             502
    Task size:       1033 pages
    Process:         Air Video Server [442]
    Path:            /Applications/Air Video Server.app/Contents/MacOS/Air Video Server
    Architecture:    i386
    Parent:          launchd [211]
    UID:             502
    Task size:       8920 pages
    Process:         AirDisplayStatusItem [455]
    Path:            /Library/PreferencePanes/Air Display Preferences.prefPane/Contents/Resources/AirDisplayStatusItem.app/Contents/MacOS/AirDisplayStatusItem
    Architecture:    x86_64
    Parent:          launchd [211]
    UID:             502
    Task size:       2815 pages
    Process:         AirPort Base Station Agent [485]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    Parent:          launchd [211]
    UID:             502
    Sudden Term:     Clean
    Task size:       503 pages
      Thread 0x154a     DispatchQueue 1          priority 31       
      9 start + 1 (libdyld.dylib) [0x7fff934287e1]
        9 ??? (AirPort Base Station Agent + 71957) [0x1040a7915]
          9 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8b406a81]
            9 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8b3f7dd2]
              9 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8b3f8606]
                9 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8b3f2f23]
                  9 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8a9bb686]
                   *9 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x154e     DispatchQueue 2          priority 33       
      9 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8c04da2a]
        9 kevent + 10 (libsystem_kernel.dylib) [0x7fff8a9bdd16]
         *9 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x1554     priority 31       
      9 thread_start + 13 (libsystem_c.dylib) [0x7fff905d21c1]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x7fff905e5782]
          9 __select + 10 (libsystem_kernel.dylib) [0x7fff8a9bd322]
           *9 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Thread 0x1555     priority 31       
      9 thread_start + 13 (libsystem_c.dylib) [0x7fff905d21c1]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x7fff905e5782]
          9 ??? (AirPort Base Station Agent + 72800) [0x1040a7c60]
            9 ??? (AirPort Base Station Agent + 10633) [0x104098989]
              9 ??? (AirPort Base Station Agent + 73571) [0x1040a7f63]
                9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8a9bd0fa]
                 *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5cb0]
      Binary Images:
             0x104096000 -        0x1040acff7  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <F3A0627B-7620-3A09-A390-3FEBA3DE9CCD> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff8a9ab000 -     0x7fff8a9c6ff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8b3c3000 -     0x7fff8b5acfff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8c049000 -     0x7fff8c05eff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff905d1000 -     0x7fff9069dfef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
          0x7fff93426000 -     0x7fff93429ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         Alfred [444]
    Path:            /Applications/Alfred.app/Contents/MacOS/Alfred
    Architecture:    x86_64
    Parent:          launchd [211]
    UID:             502
    Task size:       4323 pages
    Process:         aosnotifyd [95]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1915 pages
      Thread 0x2b9      DispatchQueue 1          priority 31       
      9 start + 1 (libdyld.dylib) [0x7fff934287e1]
        9 ??? (aosnotifyd + 36447) [0x100db6e5f]
          9 ??? (aosnotifyd + 35537) [0x100db6ad1]
            9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8ea00ace]
              9 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8b3f7dd2]
                9 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8b3f8606]
                  9 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8b3f2f23]
                    9 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8a9bb686]
                     *9 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x33c      DispatchQueue 2          priority 33       
      9 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8c04da2a]
        9 kevent + 10 (libsystem_kernel.dylib) [0x7fff8a9bdd16]
         *9 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x407      priority 63       
      9 thread_start + 13 (libsystem_c.dylib) [0x7fff905d21c1]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x7fff905e5782]
          9 __NSThread__main__ + 1345 (Foundation) [0x7fff8e9fb842]
            9 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff8e99d7d6]
              9 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8b3f7dd2]
                9 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8b3f8606]
                  9 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8b3f2f23]
                    9 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8a9bb686]
                     *9 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x530      priority 31       
      9 thread_start + 13 (libsystem_c.dylib) [0x7fff905d21c1]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x7fff905e5782]
          9 __select + 10 (libsystem_kernel.dylib) [0x7fff8a9bd322]
           *9 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Binary Images:
             0x100dae000 -        0x100df5ff7  aosnotifyd <A9359981-2023-3781-93F1-89D423F0F712> /usr/sbin/aosnotifyd
          0x7fff8a9ab000 -     0x7fff8a9c6ff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8b3c3000 -     0x7fff8b5acfff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8c049000 -     0x7fff8c05eff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff8e966000 -     0x7fff8ecc2ff7  com.apple.Foundation 6.8 (945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff905d1000 -

    Dynamic Link Manager (video code) crashed because it appears that something is wrong with the install, or your OS install.
    Photoshop hung because it was waiting for the OS to launch the Dynamic Link Manager, and the OS waited while it gathered a crash report.

  • G3 iMac SEDV (Graphite) .... intermittent power

    Hi guys. We've a G3 iMac (SEDV) that we've had since '99. Love this machine. Anyway, about a month ago, the mouse control strarted getting intermittent and there was the need to unplug and plug the mouse back in to get the machine to recognize it.
    And now, the power to the machine is intermittent as well. You can use using it and it will just shut down. Pressing the on off key will cause the machine to start back up again.
    Any ideas or suggestions if this repair will be more costly than the thing is worth?
    I'm concerned that it may be time for this one to hit the 'ol apple recycling program...

    Probably not worth the repair cost, since the whole iMac is worth about $50.
    The most likely cause is a failing PAV board. This is the component that supplies power and the high voltage needed to run the the CRT.
    You can try resetting the PMU (power management) following this procedure.
    http://mrjcd.com/junk/PMU.jpg
    Also, it is possible that a buildup of heat is causing the unexpected shut down. So be sure to check the vents at the bottom to make sure it is not being blocked by dust. Those slot-loader iMac G3's are cooled by heat convection, so the path of air flowing up needs to be unrestricted.

  • TimeMachineFSCTL Failed?

    Everything seems to be working all right since the 10.5.6 update, but I am getting this "TimeMachineFSCTL failed" in console. Any thoughts?
    Thanks.
    16/12/08 5:54:58 PM /System/Library/CoreServices/backupd[1776] Starting standard backup
    16/12/08 5:54:58 PM /System/Library/CoreServices/backupd[1776] Backup destination alias resolved to path: /Volumes/air disk-1
    16/12/08 5:54:58 PM /System/Library/CoreServices/backupd[1776] Backup destination alias resolved to path: /Volumes/air disk-1
    16/12/08 5:54:59 PM /System/Library/CoreServices/backupd[1776] Disk image /Volumes/air disk-1/MacBook_0019e33b9848.sparsebundle mounted at: /Volumes/Backup of MacBook
    16/12/08 5:54:59 PM /System/Library/CoreServices/backupd[1776] Backing up to: /Volumes/Backup of MacBook/Backups.backupdb
    16/12/08 5:54:59 PM /System/Library/CoreServices/backupd[1776] Backing up to: /Volumes/Backup of MacBook/Backups.backupdb
    16/12/08 5:55:41 PM /System/Library/CoreServices/backupd[1776] No pre-backup thinning needed: 153.1 MB requested (including padding), 222.06 GB available
    16/12/08 5:55:41 PM /System/Library/CoreServices/backupd[1776] No pre-backup thinning needed: 153.1 MB requested (including padding), 222.06 GB available
    16/12/08 5:56:34 PM /System/Library/CoreServices/backupd[1776] Copied 421 files (559 KB) from volume Macintosh HD.
    16/12/08 5:56:34 PM /System/Library/CoreServices/backupd[1776] No pre-backup thinning needed: 152.5 MB requested (including padding), 222.06 GB available
    16/12/08 5:56:34 PM /System/Library/CoreServices/backupd[1776] No pre-backup thinning needed: 152.5 MB requested (including padding), 222.06 GB available
    16/12/08 5:56:50 PM /System/Library/CoreServices/backupd[1776] Copied 210 files (8 KB) from volume Macintosh HD.
    16/12/08 5:56:50 PM /System/Library/CoreServices/backupd[1776] Copied 210 files (8 KB) from volume Macintosh HD.
    16/12/08 5:56:56 PM /System/Library/CoreServices/backupd[1776] Starting post-backup thinning
    16/12/08 5:56:56 PM /System/Library/CoreServices/backupd[1776] No post-back up thinning needed: no expired backups exist
    16/12/08 5:56:56 PM /System/Library/CoreServices/backupd[1776] Backup completed successfully.
    16/12/08 5:56:56 PM /System/Library/CoreServices/backupd[1776] Backup completed successfully.
    16/12/08 5:57:00 PM /System/Library/CoreServices/backupd[1776] Ejected Time Machine disk image.
    16/12/08 5:57:00 PM /System/Library/CoreServices/backupd[1776] Ejected Time Machine disk image.
    16/12/08 5:57:07 PM kernel AFP_VFS afpfs_unmount: /Volumes/air disk-1, flags 0, pid 1805
    16/12/08 5:57:07 PM /System/Library/CoreServices/backupd[1776] Ejected Time Machine network volume.
    16/12/08 5:57:07 PM kernel ASP_TCP HoldPendingReqs: holding slot 12 reqID 38070 flags 0x9 afpCmd 16 so 0x68bd000
    16/12/08 5:57:07 PM kernel ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 0 on so 0x68bd000
    16/12/08 5:57:07 PM kernel AFP_VFS afpfs_DoReconnect started /Volumes/air disk-1 prevTrigger 0 currTrigger 1
    16/12/08 5:57:07 PM kernel AFP_VFS afpfs_DoReconnect: already in unmount /Volumes/air disk-1
    16/12/08 5:57:07 PM kernel ASP_TCP CancelOneRequest: cancelling slot 12 error 89 reqID 38070 flags 0x19 afpCmd 16 so 0x68bd000
    16/12/08 5:57:07 PM kernel ASP_TCP CancelOneRequest: cancelling slot 12 error 89 reqID 38070 flags 0x19 afpCmd 16 so 0x68bd000

    same, except mine won't complete a backup. Has been awake since noon today and nada.
    Dec 20 20:31:45 PKMAir-2 kernel[0]: ASP_TCP HoldPendingReqs: holding slot 22 reqID 9326 flags 0x9 afpCmd 60 so 0x4f63198
    Dec 20 20:31:45 PKMAir-2 kernel[0]: ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 0 on so 0x4f63198
    Dec 20 20:31:45 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect started /Volumes/Kitty Heaven-1 prevTrigger 0 currTrigger 1
    Dec 20 20:31:45 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: doing reconnect on /Volumes/Kitty Heaven-1
    Dec 20 20:31:45 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: soft mounted and hidden volume so do not notify KEA for /Volumes/Kitty Heaven-1
    Dec 20 20:31:45 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Max reconnect time: 30 secs, Connect timeout: 15 secs for /Volumes/Kitty Heaven-1
    Dec 20 20:31:45 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: connect to the server /Volumes/Kitty Heaven-1
    Dec 20 20:31:45 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Logging in with uam 10 /Volumes/Kitty Heaven-1
    Dec 20 20:31:45 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Restoring session /Volumes/Kitty Heaven-1
    Dec 20 20:31:45 PKMAir-2 kernel[0]: ASP_TCP CancelOneRequest: cancelling slot 22 error 35 reqID 9326 flags 0x19 afpCmd 60 so 0x4f63198
    Dec 20 20:31:45 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: get the reconnect token
    Dec 20 20:42:28 PKMAir-2 kernel[0]: ASP_TCP HoldPendingReqs: holding slot 9 reqID 1440 flags 0x9 afpCmd 4 so 0x4f63198
    Dec 20 20:42:28 PKMAir-2 kernel[0]: ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 1 on so 0x4f63198
    Dec 20 20:42:28 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect started /Volumes/Kitty Heaven-1 prevTrigger 1 currTrigger 2
    Dec 20 20:42:28 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: doing reconnect on /Volumes/Kitty Heaven-1
    Dec 20 20:42:28 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: soft mounted and hidden volume so do not notify KEA for /Volumes/Kitty Heaven-1
    Dec 20 20:42:28 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Max reconnect time: 30 secs, Connect timeout: 15 secs for /Volumes/Kitty Heaven-1
    Dec 20 20:42:28 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: connect to the server /Volumes/Kitty Heaven-1
    Dec 20 20:42:28 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Logging in with uam 10 /Volumes/Kitty Heaven-1
    Dec 20 20:42:29 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Restoring session /Volumes/Kitty Heaven-1
    Dec 20 20:42:29 PKMAir-2 kernel[0]: ASP_TCP CancelOneRequest: cancelling slot 9 error 35 reqID 1440 flags 0x19 afpCmd 4 so 0x4f63198
    Dec 20 20:42:29 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: get the reconnect token
    Dec 20 22:10:15 PKMAir-2 kernel[0]: ASP_TCP HoldPendingReqs: holding slot 18 reqID 11289 flags 0x9 afpCmd 11 so 0x4f63198
    Dec 20 22:10:15 PKMAir-2 kernel[0]: ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 2 on so 0x4f63198
    Dec 20 22:10:15 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect started /Volumes/Kitty Heaven-1 prevTrigger 2 currTrigger 3
    Dec 20 22:10:15 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: doing reconnect on /Volumes/Kitty Heaven-1
    Dec 20 22:10:15 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: soft mounted and hidden volume so do not notify KEA for /Volumes/Kitty Heaven-1
    Dec 20 22:10:15 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Max reconnect time: 30 secs, Connect timeout: 15 secs for /Volumes/Kitty Heaven-1
    Dec 20 22:10:15 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: connect to the server /Volumes/Kitty Heaven-1
    Dec 20 22:10:15 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Logging in with uam 10 /Volumes/Kitty Heaven-1
    Dec 20 22:10:15 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Restoring session /Volumes/Kitty Heaven-1
    Dec 20 22:10:15 PKMAir-2 kernel[0]: ASP_TCP CancelOneRequest: cancelling slot 18 error 35 reqID 11289 flags 0x19 afpCmd 11 so 0x4f63198
    Dec 20 22:10:15 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: get the reconnect token
    Dec 20 23:05:50 PKMAir-2 kernel[0]: ASP_TCP HoldPendingReqs: holding slot 15 reqID 7812 flags 0x9 afpCmd 34 so 0x4f63198
    Dec 20 23:05:50 PKMAir-2 kernel[0]: ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 3 on so 0x4f63198
    Dec 20 23:05:50 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect started /Volumes/Kitty Heaven-1 prevTrigger 3 currTrigger 4
    Dec 20 23:05:50 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: doing reconnect on /Volumes/Kitty Heaven-1
    Dec 20 23:05:50 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: soft mounted and hidden volume so do not notify KEA for /Volumes/Kitty Heaven-1
    Dec 20 23:05:50 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Max reconnect time: 30 secs, Connect timeout: 15 secs for /Volumes/Kitty Heaven-1
    Dec 20 23:05:50 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: connect to the server /Volumes/Kitty Heaven-1
    Dec 20 23:05:50 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Logging in with uam 10 /Volumes/Kitty Heaven-1
    Dec 20 23:05:50 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: Restoring session /Volumes/Kitty Heaven-1
    Dec 20 23:05:51 PKMAir-2 kernel[0]: ASP_TCP CancelOneRequest: cancelling slot 15 error 35 reqID 7812 flags 0x19 afpCmd 34 so 0x4f63198
    Dec 20 23:05:51 PKMAir-2 kernel[0]: AFP_VFS afpfs_DoReconnect: get the reconnect token
    Dec 20 23:29:37 PKMAir-2 [0x0-0x1c01c].com.apple.iChat[202]: socket() failed (48)
    Dec 20 23:30:48 PKMAir-2 diskarbitrationd[32]: ATSServer [87]:19203 not responding.
    Dec 20 23:30:48 PKMAir-2 diskarbitrationd[32]: mds [22]:12803 not responding.
    Dec 20 23:30:54 PKMAir-2 kernel[0]: AFP_VFS afpfs_ioctl: TimeMachineFSCTL failed uid 0x1F5, afpfs_uid 0x1F5

  • How do I submit a complaint to Verizon?

    Does anyone know if there is a way - other than posts in this forum - to submit a complaint to Verizon about its customer service?  Or am I doomed to wander Verizon's barren wasteland of customer service for eternity? Several weeks ago, I called to order a premium channel and was offered a 50% discount.  I accepted, the channel was turned on, and yesterday I received my bill, with the channel charged at full price.  I called the same number again tonight to get the discount applied, and was told it could not be applied because the Verizon system did not show that I made any calls to Verizon...since 2012.  Had it all been a dream?, I asked myself.  But no, there on my bill it showed that I had clearly called to order the premium channel on March 27th.  Looking back now, I'm not sure why, but I spent several minutes trying to understand how this could have happened, and why it could not be easily remedied by simply honoring the discount, but I had no success.  I asked to escalate this with a supervisor, who I hoped would be able to solve the mystery of the missing discount for me.  Wouldn't you know it, the rep informed me, the supervisors are all in a meeting!  And, miraculously, it was scheduled to end exactly when the customer service office closes, so I would not be getting a return call tonight.  I asked to submit a complaint, upon which I was told I could not submit a complaint about the discount, because there was no notation of the call on which I was offered said discount.  Before my mind had a chance to explode, I asked if there were any other avenues for submitting a complaint about this. Surely that customer service rep is cackling to herself now, having delivered me into the kafkaesque hell that is the Verizon customer service website.  Initially presuming some reasonableness in the design of a major website, I began by clicking on the "Contact Us" link for billing questions, and was rewarded with reams of options for registering my complaint; alas, they appear to have been written in white font on the white Verizon backdrop:Forging ahead, I imposed upon the friendly looking avatar in the upper right to ask the question, "How do I make a complaint?"  The response was vexing indeed: I wondered, am I . . . the first one ever to complain to Verizon?  How else to explain the machine's inability to comprehend such a simple request?  Excited now, I pressed on for a solution, and found that I could try the Verizon support "community."  So here I am, asking why Verizon would lead me on this path to air my complaint for all to see, my criticism snowballing, rather than provide an easy way to seek an answer to my original question. Unfortunately, unlike fictional travelers of an infinite loop, attempting to navigate Verizon's "customer support" has cost me an hour of my night and fair amount of my sanity.  If anyone has any ideas how to escape this, they would be very much appreciated.

    Two days now, I have been attempting to get an answer. Yes, I have a complaint. And, the documentation to support it exists. Have been a long time FiOS customer in Newton, MA (must be over 15 years). We were one of the first on our street to pioneer with Verizon. And, we have had nothing but great things to say about the product service, technical support (when needed) and the customer support (when needed). We are in the process of retiring to Virginia and on our list of "needs" was a FiOS wired home.On July 28th, Verizon confirmed FiOS was available in the actual UNIT we were looking to buy (this knowledge led us to seal the deal on the condo -- that's how important FiOS quality and service is to us!). Here is a copy of our resulting online Verizon FiOS order for service at the condo that we purchased on August 4th. I also have an accompanying transcript of the Chat discussion where an actual (as in "alive") customer service agent walked me through this order. We ordered all the same FiOS services as we had in Newton, FiOS to FiOS. (Note the titles "FiOS" that appear below on our actual order ).Service Address[address redacted]
    RICHMOND, VA, 23231Order InfoOrder number: VA111... [redacted]
    Order date: Jul 28, 2015View a copy of your Billing EstimateIncluded in this order:FiOS Internet 30 Mbps/ 5 MbpsFiOS TV Ultimate HDVoiceView Channel LineupOn August 5th, the Verizon technician arrived as scheduled to complete the hook up to FiOS. Let's get to the point. What we have in our condo is internet, cable tv, and phone (yep, the bundle) delivered over a DSL phone line! Yes, FiOS fiber optic is connected to the building's basement. And ends there. From that point on, a telephone wire is used to connect the condo down to the FiOS line in the basement. A DSL telephone wire (from the stone ages!!) that is incapable of providing FiOS quality and speed. This deception has led us to purchasing a home that does not have the Verizon services promised by Verizon. To say we're disappointed does not even BEGIN to capture the emotions we are experiencing.VERIZON: Will someone there, with authority, contact us about running coax cable instead of telephone wire and make this right? 

  • Dual RAP Mesh Network vs PTP Wireless Ethernet Bridging to provide link redundancy

    Currently looking at a few options to optimize a current point-to-point wireless LAN-to-LAN connectivity shot for a wired customer site for better redundancy (hardware diversity and/or logical path diversity). Currently the customer is fed via an older solution, using two Cisco 1522 APs with Cisco Aironet 14-dBi Path Antennas (AIR-ANT5114P-N) for a 5-GHz PTP wireless ethernet bridge (under 3km), in which one 1552AP hangs off a L3/L2 Distro switch and the customer's 1522AP hangs off a 3750X switch, which has another access switch hanging off it via a fiber run of about 2km, which is exposed in parts and can't be re-run again due some limitations.The customer doesn't utilize any wireless services. Due to their location, we can't connect them to our wired distro infrastructure directly via fiber.
    Looking at setting up two wireless shots (instead of just one currently used); 5-GHz point-to-point bridges using upgraded gear: Cisco 1552EU APs with Cisco Aironet 14-dBi Path Antennas (AIR-ANT5114P2M-N) or straight Exalt r5005 solution. The PTP shot will hang off two seperate distro switches for redundancy purposes, pointing toward the customer site at two seperate locations, spaced apart by approximately 1 to 1.5 km, so that they aren't at the mercy of being isolated on one side if they have another fiber cut which connects their two main access switches together. If need be, we can hang two main APs on one distro facing two APs at the customer site, since this would create some redundancy, just not the same level as above.
    The below is what I'm really unsure on.
    Possibly looking at setting up a mesh network using Cisco 1552E APs with 2.4 GHz Omni-directional antennas (either a 2.4/5GHz Terrawave MIMO Omnidirectional antenna or Cisco AIR-ANT2547V-N antennas, which ever is best) with two RAPs, one RAP hanging off one distro and the other RAP hanging off another distro for hardware diversity, both under the same bridge group name and both RAPs hanging off the same WLAN management SVI subnet on the distros. The customer site will have two 1552E MAPs located at two seperate sites, as pointed out above. I don't think a third AP would be needed, since they don't use wireless services. Since there would be only two RAPs, not three, would it be best two set-up this with both RAPs on the same channel to minimize convergence time should the mesh transfer from one RAP to the other RAP, as long as both RAPs are spaced apart under ???? distance to avoid interference/other issues? Looking at some documenation, it appears you can have a MESH network, as long as your MAPs and RAPs fall within a 2 mile range area, preferably closer to a 1 mile range area (for better bandwidth & reliability). This solution has been brought up as possible dual-homed solution in theory, by virtue of having two more more MESH APs fall within the range listed above, to the RAPs. From a layer 3 perspective, I'm not sure what the most optimal idea to run with in this scenario set-up would be. Possibly set-up two seperate user SVI VLANs (for their data services), one placed on each access switches these MAPs will hang off at the customer site, & using the same management SVI subnets as the RAPs for the wireless managment side (for accessing the APs). From my understanding, the user data SVI doesn't matter from the perspective of when the mesh transfers from one RAP to another, it should be transparent to them. The distro switches will just have the management SVIs placed on them for the RAPs, the user SVIs will be placed local on the access switches only. And all APs will hang off access ports set to the management VLAN ID.
    In my opinion, the PTP 5-GHz, dual distro homed solution makes the most since for wired client access, but since the latter option was brought up, it has to be weighed - plus I'm curious if it can work.

    The Exalt r5005 works great for redundancy PTP links. You have to use the sync cable between the two co-located bridges and also set the polarization on the bridges.  You can then use routing or spanning tree to decide traffic path.  With mesh, you will have to make sure you set the parent or else the maps will keep switching perhaps. 

  • Itunes keeps crashing when I open it...

    Running OSX Version 10.9.2 - 3.4 GHz Intel Core i7 - crash report below....can anyone help?
    Date/Time:       2014-05-20 21:48:51 +0100
    OS Version:      10.9.2 (Build 13C1021)
    Architecture:    x86_64
    Report Version:  18
    Command:         iTunes
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Version:         11.2.1 (11.2.1)
    Build Version:   1
    Project Name:    iTunes
    Source Version:  1121011002001001
    Parent:          launchd [185]
    PID:             11126
    Event:           hang
    Duration:        1.49s
    Steps:           16 (100ms sampling interval)
    Hardware model:  iMac12,2
    Active cpus:     8
    Fan speed:       1147 rpm
    Free pages:      19574 pages (-1139)
    Pageins:         1 pages
    Pageouts:        0 pages
    Swapins:         0 pages
    Swapouts:        0 pages
    Process:         iTunes [11126]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Architecture:    x86_64
    Parent:          launchd [185]
    UID:             501
    Task size:       87564 pages (-2)
    CPU Time:        0.001s
      Thread 0x182143   DispatchQueue 1          priority 47       
      16 ??? (iTunes + 3657824) [0x104ee4060]
        16 ??? (iTunes + 9687376) [0x1054a4150]
          16 -[NSApplication run] + 553 (AppKit) [0x7fff8d117b2c]
            16 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 (AppKit) [0x7fff8d123a2b]
              16 _DPSNextEvent + 1434 (AppKit) [0x7fff8d1243de]
                16 _BlockUntilNextEventMatchingListInModeWithFilter + 65 (HIToolbox) [0x7fff8b79b5bc]
                  16 ReceiveNextEventCommon + 173 (HIToolbox) [0x7fff8b79b685]
                    16 RunCurrentEventLoopInMode + 226 (HIToolbox) [0x7fff8b79ba0d]
                      16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                        16 __CFRunLoopRun + 831 (CoreFoundation) [0x7fff8632d49f]
                          16 __CFRunLoopDoSources0 + 242 (CoreFoundation) [0x7fff8632dd12]
                            16 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 (CoreFoundation) [0x7fff8633c661]
                              16 ??? (iTunes + 91314) [0x104b7d4b2]
                                16 ??? (iTunes + 91454) [0x104b7d53e]
                                  16 ??? (iTunes + 91780) [0x104b7d684]
                                    16 ??? (iTunes + 91906) [0x104b7d702]
                                      16 ??? (iTunes + 1042120) [0x104c656c8]
                                        16 ??? (iTunes + 9082215) [0x105410567]
                                          16 ??? (iTunes + 9084206) [0x105410d2e]
                                            16 ??? (iTunes + 9115150) [0x10541860e]
                                              16 ??? (iTunes + 9124734) [0x10541ab7e]
                                                16 ??? (iTunes + 9116447) [0x105418b1f]
                                                  16 ??? (iTunes + 9119024) [0x105419530]
                                                    16 ??? (iTunes + 9120956) [0x105419cbc]
                                                      16 ??? (iTunes + 9121284) [0x105419e04]
                                                        16 ??? (iTunes + 3284217) [0x104e88cf9]
                                                          16 ??? (iTunes + 3594990) [0x104ed4aee]
                                                            16 ??? (iTunes + 9607067) [0x10549079b]
                                                              16 ??? (iTunes + 3604199) [0x104ed6ee7]
                                                                16 ??? (iTunes + 551741) [0x104bedb3d]
                                                                  16 FSDeleteObject + 24 (CarbonCore) [0x7fff9012281b]
                                                                    16 PBDeleteObjectSync + 11 (CarbonCore) [0x7fff901252dd]
                                                                      16 PBRemoveObjectInternal(FSRefParam*, unsigned char) + 190 (CarbonCore) [0x7fff901253a0]
                                                                        16 BasicDelete(FSMount*, unsigned int, char const*, unsigned char, unsigned char) + 43 (CarbonCore) [0x7fff90110d1a]
                                                                          16 FSMount::remove(unsigned int, char const*, unsigned int) + 363 (CarbonCore) [0x7fff90184f09]
                                                                            16 FileIDTreeBeginTransaction + 194 (CarbonCore) [0x7fff900f4141]
                                                                              16 FileIDTreeBeginTransactionBridge + 452 (CarbonCore) [0x7fff900f2f8b]
                                                                                16 usleep + 54 (libsystem_c.dylib) [0x7fff8f114cb2]
                                                                                  16 __semwait_signal + 10 (libsystem_kernel.dylib) [0x7fff8e709a3a]
                                                                                   *16 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b5a0]
      Thread 0x182221   DispatchQueue 2          priority 49       
      16 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff881ff152]
        16 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e70a662]
         *16 ??? (mach_kernel + 3949840) [0xffffff80005c4510]
      Thread 0x182220   DispatchQueue 6          priority 47       
      16 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff892fefb9]
        16 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff892fbef8]
          16 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff88200193]
            16 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff881ff09e]
              16 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff881fd2ad]
                16 __thr_AMRegisterForCallbacks + 217 (MobileDevice) [0x10c0ad701]
                  16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                    16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                      16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                        16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                          16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                           *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x18223b   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x182339   priority 56       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 4667034) [0x104fda69a]
                16 ??? (iTunes + 4665195) [0x104fd9f6b]
                  16 ??? (iTunes + 18315) [0x104b6b78b]
                    16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                     *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x18236c   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 __select + 10 (libsystem_kernel.dylib) [0x7fff8e7099aa]
             *16 ??? (mach_kernel + 4069952) [0xffffff80005e1a40]
      Thread 0x1823c1   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 5446123) [0x1050989eb]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x1845fa   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 2513539) [0x104dcca83]
                16 ??? (iTunes + 2513580) [0x104dccaac]
                  16 ??? (iTunes + 18149) [0x104b6b6e5]
                    16 ??? (iTunes + 18315) [0x104b6b78b]
                      16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                       *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x1845fb   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 18555) [0x104b6b87b]
              16 ??? (iTunes + 14606975) [0x10595527f]
                16 ??? (iTunes + 1427342) [0x104cc378e]
                  16 ??? (iTunes + 99074) [0x104b7f302]
                    16 ??? (iTunes + 93048) [0x104b7db78]
                      16 ??? (iTunes + 93720) [0x104b7de18]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x1845fc   priority 0        
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 517538) [0x104be55a2]
                16 ??? (iTunes + 517941) [0x104be5735]
                  16 ??? (iTunes + 518039) [0x104be5797]
                    16 ??? (iTunes + 18376) [0x104b6b7c8]
                      16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                       *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x18460f   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 13224788) [0x105803b54]
                16 ??? (iTunes + 13224977) [0x105803c11]
                  16 __accept + 10 (libsystem_kernel.dylib) [0x7fff8e708e02]
                   *16 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f3b76]
                     *16 unix_syscall64 + 499 (mach_kernel) [0xffffff800063e413]
                       *16 accept_nocancel + 442 (mach_kernel) [0xffffff800061eb1a]
                         *16 msleep + 114 (mach_kernel) [0xffffff80005e1852]
                           *16 ??? (mach_kernel + 4068901) [0xffffff80005e1625]
                             *16 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d1be]
                               *16 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d8c]
                                 *16 ??? (mach_kernel + 223627) [0xffffff800023698b]
                                   *16 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7e92]
      Thread 0x184610   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 13224788) [0x105803b54]
                16 ??? (iTunes + 13224977) [0x105803c11]
                  16 __accept + 10 (libsystem_kernel.dylib) [0x7fff8e708e02]
                   *16 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f3b76]
                     *16 unix_syscall64 + 499 (mach_kernel) [0xffffff800063e413]
                       *16 accept_nocancel + 442 (mach_kernel) [0xffffff800061eb1a]
                         *16 msleep + 114 (mach_kernel) [0xffffff80005e1852]
                           *16 ??? (mach_kernel + 4068901) [0xffffff80005e1625]
                             *16 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d1be]
                               *16 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d8c]
                                 *16 ??? (mach_kernel + 223627) [0xffffff800023698b]
                                   *16 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7e92]
      Thread 0x184619   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x184687   priority 48       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 517670) [0x104be5626]
                16 ??? (iTunes + 13290014) [0x105813a1e]
                  16 ??? (iTunes + 13291184) [0x105813eb0]
                    16 ??? (iTunes + 18149) [0x104b6b6e5]
                      16 ??? (iTunes + 18315) [0x104b6b78b]
                        16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                         *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x18468e   priority 48       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 517670) [0x104be5626]
                16 ??? (iTunes + 13290014) [0x105813a1e]
                  16 ??? (iTunes + 13291184) [0x105813eb0]
                    16 ??? (iTunes + 18149) [0x104b6b6e5]
                      16 ??? (iTunes + 18315) [0x104b6b78b]
                        16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                         *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x1846fb   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 18555) [0x104b6b87b]
              16 ??? (iTunes + 6592947) [0x1051b09b3]
                16 ??? (iTunes + 6546240) [0x1051a5340]
                  16 ??? (iTunes + 99074) [0x104b7f302]
                    16 ??? (iTunes + 93048) [0x104b7db78]
                      16 ??? (iTunes + 93720) [0x104b7de18]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x1846fd   priority 63       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 __NSThread__main__ + 1318 (Foundation) [0x7fff8c71f76b]
              16 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348 (Foundation) [0x7fff8c71f967]
                16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                  16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                    16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                      16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                       *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x1846fe   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x18475d   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x18475f   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x184761   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x184763   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x184767   priority 48       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 517670) [0x104be5626]
                16 ??? (iTunes + 13290014) [0x105813a1e]
                  16 ??? (iTunes + 13291184) [0x105813eb0]
                    16 ??? (iTunes + 18149) [0x104b6b6e5]
                      16 ??? (iTunes + 18315) [0x104b6b78b]
                        16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                         *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x184774   priority 48       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 517670) [0x104be5626]
                16 ??? (iTunes + 13290014) [0x105813a1e]
                  16 ??? (iTunes + 13291184) [0x105813eb0]
                    16 ??? (iTunes + 18149) [0x104b6b6e5]
                      16 ??? (iTunes + 18315) [0x104b6b78b]
                        16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                         *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x184779   priority 48       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 517670) [0x104be5626]
                16 ??? (iTunes + 13289854) [0x10581397e]
                  16 ??? (iTunes + 13291614) [0x10581405e]
                    16 __select + 10 (libsystem_kernel.dylib) [0x7fff8e7099aa]
                     *16 ??? (mach_kernel + 4069952) [0xffffff80005e1a40]
      Thread 0x1847d9   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x1847eb   priority 48       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 517670) [0x104be5626]
                16 ??? (iTunes + 13290014) [0x105813a1e]
                  16 ??? (iTunes + 13291184) [0x105813eb0]
                    16 ??? (iTunes + 18149) [0x104b6b6e5]
                      16 ??? (iTunes + 18315) [0x104b6b78b]
                        16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                         *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x1847ec   priority 48       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 517670) [0x104be5626]
                16 ??? (iTunes + 13290014) [0x105813a1e]
                  16 ??? (iTunes + 13291184) [0x105813eb0]
                    16 ??? (iTunes + 18149) [0x104b6b6e5]
                      16 ??? (iTunes + 18315) [0x104b6b78b]
                        16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                         *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x1848d8   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x1848d9   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x184929   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 1018975) [0x104c5fc5f]
                16 ??? (iTunes + 1038644) [0x104c64934]
                  16 ??? (iTunes + 9100466) [0x105414cb2]
                    16 ??? (iTunes + 1041197) [0x104c6532d]
                      16 ??? (iTunes + 1041601) [0x104c654c1]
                        16 ??? (iTunes + 518039) [0x104be5797]
                          16 ??? (iTunes + 18315) [0x104b6b78b]
                            16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                             *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x184f0c   priority 47         cpu time   0.001s
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 _NSEventThread + 144 (AppKit) [0x7fff8d2c416e]
              16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                  16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                    16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                     *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x1857f5   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x1857f6   priority 47       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 111915) [0x104b8252b]
                16 CFRunLoopRun + 97 (CoreFoundation) [0x7fff863e2811]
                  16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                    16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                      16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                        16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                         *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x1860e0   priority 0        
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 ??? (iTunes + 21618) [0x104b6c472]
              16 ??? (iTunes + 517538) [0x104be55a2]
                16 ??? (iTunes + 517941) [0x104be5735]
                  16 ??? (iTunes + 518039) [0x104be5797]
                    16 ??? (iTunes + 18315) [0x104b6b78b]
                      16 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e709716]
                       *16 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b4d940]
      Thread 0x1877e7   priority 0        
      3 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff892fefb9]
        3 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff8e709e6a]
         *3 wq_unpark_continue + 0 (pthread) [0xffffff7f80b4b6ae]
      Binary Images:
             0x104b67000 -        0x1062bffef  com.apple.iTunes 11.2.1 (11.2.1) <00736FA9-3EEA-39C4-A524-E00C8C7DD2F2> /Applications/iTunes.app/Contents/MacOS/iTunes
             0x10c028000 -        0x10c119ff7  com.apple.mobiledevice 710.5 (710.5) <C250816A-3B97-329D-9F6B-38DACA981CED> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
          0x7fff862bd000 -     0x7fff864a2fff  com.apple.CoreFoundation 6.9 (855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff881fc000 -     0x7fff88216fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
          0x7fff892f9000 -     0x7fff89300ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff8b76d000 -     0x7fff8ba17ff5  com.apple.HIToolbox 2.1 <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8c6b9000 -     0x7fff8c9b7fff  com.apple.Foundation 6.9 (1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8d100000 -     0x7fff8dc76fff  com.apple.AppKit 6.9 (1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8e6f4000 -     0x7fff8e710ff7  libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f099000 -     0x7fff8f122ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
          0x7fff900b9000 -     0x7fff903a3fff  com.apple.CoreServices.CarbonCore 1077.17 (1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    *0xffffff7f80b48000 - 0xffffff7f80b4ffff  com.apple.kec.pthread 1.0 (1) <619F6A5D-FFA2-3B59-9993-958FD7154B83> /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80007a494a  mach_kernel (2422.92.1) <E9CF78E2-1E9F-3B6F-81A4-FEE6C6D0E4D5> /mach_kernel
    Process:         accountsd [262]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [185]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       711 pages
    Importance:      Adaptive, Background Priority
    IO Policy:       Utility
    Timers:          Coalesced
      Thread 0x921      DispatchQueue 1          priority 4        
      16 start + 1 (libdyld.dylib) [0x7fff8f7765fd]
        16 ??? (accountsd + 6850) [0x10a0eaac2]
          16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
            16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
              16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                 *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x977      DispatchQueue 2          priority 4        
      16 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff881ff152]
        16 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e70a662]
         *16 ??? (mach_kernel + 3949840) [0xffffff80005c4510]
      Binary Images:
             0x10a0e9000 -        0x10a0eafff  accountsd (336.9) <806AD9DD-23C7-3DB5-BE2F-C3E4D3E27EA9> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff862bd000 -     0x7fff864a2fff  com.apple.CoreFoundation 6.9 (855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff881fc000 -     0x7fff88216fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
          0x7fff8e6f4000 -     0x7fff8e710ff7  libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f773000 -     0x7fff8f776ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a494a  mach_kernel (2422.92.1) <E9CF78E2-1E9F-3B6F-81A4-FEE6C6D0E4D5> /mach_kernel
    Process:         Air Video Server [264]
    Path:            /Applications/Air Video Server.app/Contents/MacOS/Air Video Server
    Architecture:    i386
    Parent:          launchd [185]
    UID:             501
    Task size:       7534 pages
    Process:         AirPlayUIAgent [1010]
    Path:            /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
    Architecture:    x86_64
    Parent:          launchd [185]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       668 pages
    Importance:      Adaptive, Donating
      Thread 0x9dc6     DispatchQueue 1          priority 46       
      16 start + 1 (libdyld.dylib) [0x7fff8f7765fd]
        16 NSApplicationMain + 940 (AppKit) [0x7fff8d102913]
          16 -[NSApplication run] + 553 (AppKit) [0x7fff8d117b2c]
            16 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 (AppKit) [0x7fff8d123a2b]
              16 _DPSNextEvent + 1434 (AppKit) [0x7fff8d1243de]
                16 _BlockUntilNextEventMatchingListInModeWithFilter + 65 (HIToolbox) [0x7fff8b79b5bc]
                  16 ReceiveNextEventCommon + 479 (HIToolbox) [0x7fff8b79b7b7]
                    16 RunCurrentEventLoopInMode + 226 (HIToolbox) [0x7fff8b79ba0d]
                      16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                        16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                          16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                            16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                             *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x9dee     DispatchQueue 2          priority 48       
      16 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff881ff152]
        16 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e70a662]
         *16 ??? (mach_kernel + 3949840) [0xffffff80005c4510]
      Thread 0x9e08     priority 46       
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 _NSEventThread + 144 (AppKit) [0x7fff8d2c416e]
              16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                  16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                    16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                     *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Binary Images:
             0x10fcb2000 -        0x10fcb7ff3  com.apple.AirPlayUIAgent 2.0 (200.34.4) <0E216F6D-BD52-38DA-BED6-DDF3BA3B34D2> /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
          0x7fff862bd000 -     0x7fff864a2fff  com.apple.CoreFoundation 6.9 (855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff881fc000 -     0x7fff88216fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
          0x7fff892f9000 -     0x7fff89300ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff8b76d000 -     0x7fff8ba17ff5  com.apple.HIToolbox 2.1 <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8d100000 -     0x7fff8dc76fff  com.apple.AppKit 6.9 (1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8e6f4000 -     0x7fff8e710ff7  libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f773000 -     0x7fff8f776ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a494a  mach_kernel (2422.92.1) <E9CF78E2-1E9F-3B6F-81A4-FEE6C6D0E4D5> /mach_kernel
    Process:         airportd [64]
    Path:            /usr/libexec/airportd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       842 pages
    Importance:      Adaptive, Background Priority
    IO Policy:       Utility
    Timers:          Coalesced
      Thread 0x167      DispatchQueue 1          priority 4        
      16 start + 1 (libdyld.dylib) [0x7fff8f7765fd]
        16 ??? (airportd + 86548) [0x106cb8214]
          16 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8c80a4aa]
            16 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253 (Foundation) [0x7fff8c721adc]
              16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                  16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                    16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                     *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x32a      DispatchQueue 2          priority 4        
      16 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff881ff152]
        16 _dispatch_mgr_invoke + 177 (libdispatch.dylib) [0x7fff881ff3ff]
          16 __select_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8e7099c2]
           *16 ??? (mach_kernel + 4069952) [0xffffff80005e1a40]
      Thread 0x338      priority 4        
      16 __select + 10 (libsystem_kernel.dylib) [0x7fff8e7099aa]
       *16 ??? (mach_kernel + 4069952) [0xffffff80005e1a40]
      Binary Images:
             0x106ca3000 -        0x106d12fff  airportd (931.58) <D2D103C7-91C2-3DA0-89B3-91D2E11F261A> /usr/libexec/airportd
          0x7fff862bd000 -     0x7fff864a2fff  com.apple.CoreFoundation 6.9 (855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff881fc000 -     0x7fff88216fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
          0x7fff8c6b9000 -     0x7fff8c9b7fff  com.apple.Foundation 6.9 (1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8e6f4000 -     0x7fff8e710ff7  libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f773000 -     0x7fff8f776ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a494a  mach_kernel (2422.92.1) <E9CF78E2-1E9F-3B6F-81A4-FEE6C6D0E4D5> /mach_kernel
    Process:         AirVideoServerHD [268]
    Path:            /Applications/Air Video Server HD.app/Contents/MacOS/AirVideoServerHD
    Architecture:    x86_64
    Parent:          launchd [185]
    UID:             501
    Task size:       29285 pages
    Process:         aosnotifyd [63]
    Path:            /usr/libexec/aosnotifyd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean (allows idle exit)
    Task size:       706 pages
    Importance:      Adaptive, Background Priority
    IO Policy:       Utility
    Timers:          Coalesced
      Thread 0x166      DispatchQueue 1          priority 4        
      16 start + 1 (libdyld.dylib) [0x7fff8f7765fd]
        16 ??? (aosnotifyd + 61205) [0x1016fef15]
          16 ??? (aosnotifyd + 173664) [0x10171a660]
            16 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8c80a4aa]
              16 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253 (Foundation) [0x7fff8c721adc]
                16 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8632cf25]
                  16 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8632d5e9]
                    16 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8632dfc5]
                      16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e705a1a]
                       *16 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000216800]
      Thread 0x30d      DispatchQueue 2          priority 4        
      16 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff881ff152]
        16 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e70a662]
         *16 ??? (mach_kernel + 3949840) [0xffffff80005c4510]
      Thread 0x562      priority 4        
      16 thread_start + 13 (libsystem_pthread.dylib) [0x7fff892fefc9]
        16 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff892fa72a]
          16 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff892fa899]
            16 __NSThread__main__ + 1318 (Foundation) [0x7fff8c71f76b]
              16 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348 (Foundation) [0x7fff8c71f967]
                16

    Hi d_wil,
    Welcome to the Apple Support Communities! I understand that iTunes on your computer is shutting down after you open it. I suggest the steps in the following article for trying to isolate what may be happening.
    iTunes: Troubleshooting issues with third-party iTunes plug-ins
    http://support.apple.com/kb/ts3430
    I hope this helps,   
    -Joe

  • CPU running hot

    Sorry guys to repost the same topic, but the original thread seems to have gone dead and I'd like to get some more information from you guys before I make another move like trying to RMA hardware. Original post here. https://forum-en.msi.com/index.php?topic=104304.0
    The basics: CPU is running hot. ~60C +/- 3C at idle. I have done the following to try and correct the problem...
    1. Replace both stock 37CFM fans with 94.5CFM Thermaltake fans.
    2. Rewired the case so that no wires except SATA cables are in the direct path of air from front fan to rear fan.
    3. Removed thermal compound from the stock Intel heatsink/fan and applied some Antec Formula 5 thermal compound.
    Temps are still in the 60C area at first idle shortly after starting PC.
    I just finished playing Quake 4 online for about an hour and temps were approximately 77C when finished.
    I cranked both case fans up to 2800 RPMs (according to system information viewer) and opened the case. I even have the front of the case open so that the front fan filter isn't restricting airflow. I have been surfing the web with the case open and fans at full speed for 15 minutes and my temps are between 73C and 75C. The CPU fan is only running about 1400 RPMs.
    I am not overclocking.
    I am using System Information Viewer v3.19 to monitor fan speed and temps. Core Temp shows similar temp readings.
    I am convinced that something is wrong whether or not it is the heat sensors or the CPU I am not for certain, but the heatsink is firmly seated, I am confident in that. I have checked several times. The heatsink is also slightly warm, but no where near hot to the touch. It barely feels warmer than body heat temperature. The computer has never turned off or been unstable. The air coming from the rear fan feels cool to my hand.
    What would you guys do in this situation? I am hopelessly lost in trying to figure this out and I would like to get some good data before the return period has expired on my hardware. I have a Zalman 9700 cooler arriving on Friday, but from what I have read on this forum I don't see where the Zalman is going to make the life changing adjustment that it seems that I need. I have pics of the case in the original thread.
    Thanks.

    Hmm....
    Sorry that I never noticed your first posts...
    I will try to read them when I get a free min or two ...
    I did glance at one of your pictures...
    Ummm....
    If you are using a matched set of memory they should not be in banks A and B as shown in your pictures...
    you should have one in a green slot and another in an orange slot...
    This will allow them to run dual channel...
    I also noticed that you mentioned checking the seating of the heatsink on the CPU, a "million times"
    I know you didn't check it that many times but ...
    Checking it more than once or twice, your run the risk of creating air pockets between the cooler and the cpu...
    Just so you know ..
    Even with the intel cooler (it is a decent cooler) your temps shouldn't be as high as your are experiencing...
    I know you are going to groan when I make my suggestion but ..
    You need to download the pdf for using artic silver with a dual core Intel processor..
    read it... print it .. tattoo it to your chest .. but follow its instructions...
    clean the cooler surface, it should be smooth and clean ...
    remove the cpu from the motherboard, clean the surface (and make sure there is no plastic film on it from the factory)
    put the chip back in its socket and lock it in ...
    put the artic silver on the cpu as directed... should be just a small line as shown in the pdf..
    mate the cooler to the cpu and lock the cooler in place, click in diagonal opposite corners first, listen for the snaps
    You have decent case .. a decent power supply...
    Since you have large fans, there shouldn't be a reason for you to run them at high speed...
    Reading your posts, all that comes back to me is your high cpu and core temps..
    Since your aren't overclocking the only cause for that would be a poor heat transfer between the cooler and the cpu...
    So reinstalling your cpu and cooler is the only logical thing to do...
    Also, after you move your memory into the correct slots (one in a green slot and one in an orange slot...
    go into your bios, make sure your:
    FSB is 266
    for testing put the the memory speed, timings, and all voltages to their default (or auto) setting then turn the power switch on your power supply to off..
    Please ... reinstall your cpu and cooler ...

  • How to get the full path of a specific programe(flash media live encoder in my case) in air?

    I need to call it in air,but first of all how can I figure out where it's installed programatically?

    If you are using the d2kwutil library, then you can use the win_api_environment.Get_Working_Directory() function.
    If not, I doubt that there is anyway to get it since the get_application_property(current_form) does not return the full path of the form as it used to in prior versions of Oracle forms such as 4.5.

Maybe you are looking for

  • How to manage different load frequencies in OWB?

    How to manage different load frequencies in OWB? We are using OWB repository 10.2.0.1.0 and OWB client 10.2.0.1.31. The Oracle version is 10 G (10.2.0.3.0). OWB is installed on Linux. We have situation to bring data feed into database using OWB on di

  • Creating Stock Transport Order with Delivery

    Hi All, I am trying to create an STO with delivery option. I have been able to complete STO cycle without Delivery - both one step and two step. However, after choosing Delivery Type NL in SPRO, the ME21n for STO creation gives error - Unable to dete

  • How to manipulate Informix's collection columns in JDBC ?

    Howdy, Please does anyone have any examples of how to use informix's collection columns via JDBC? (I'm specifically interested in list) IBM (the worlds third? largest computer company) has the worst website on the planet. It's near impossible to find

  • How do I load older version 6/03 on win 8.1

    I have an older version of pr it cam with a bundle, photo shop and illstrator work but when I start PR it gets to open new or existing project and then a box comes up saying windows is working on your problem and dies. Is there a work around or a fil

  • Can we create new customer site for existing customers using custm interfc

    Hi , I have a requirement : version -- R12 . We need to add new customer site for existing customers , is it possible to create it through customer interface with insert_update_flag set as U / I . Any help in this is grate . regards , Azzu .