Timeouts with RAS OpenDocument: CORBA Error reported

I am trying to code a .net application using the Report Application Server in a Crystal Enterprise 10 environment.  My code so far is very simple:
s = mgr.Logon("user", "pw", "server", "secEnterprise");
ReportAppFactory factory = (ReportAppFactory)s.GetService("", "RASReportFactory").Interface;
EnterpriseService esvc = s.GetService("InfoStore");
rcd = factory.OpenDocument(201, 0);
This works fine when I run it against a test server (Windows Server 2003) running in a VM on my local machine.  However, when I run this against my production server (also Windows Server 2003) it fails.  The exception I get on the client side says that the request has timed out because the server has not responded in 600000ms.  On the server side, I see the following error in the RAS server's log:
ErrorLog 2010  3  4 20:39:51.156 8464 9368 (Y:\servers\ras\crystalras\dts\corbaclientrequestcommadapter.cpp:340): EXCEPTION: IDL:omg.org/CORBA/COMM_FAILURE:1.0: Corba client dropped connection prematurely. reqType=154 agentId=""
I've tried shutting off the firewalls on both the client and the server, to no avail. I've also tried using the -port <ipaddress>:<port> switch in the CMS command line and the -ns <cmsip>:<cmsport> switch in the RAS command line, also to no avail.  My only other obvious move at this point is to sacrifice a fatted calf to the CORBA gods, but before I make that much of a mess I should probably see if anyone has solved a similar problem. 
Any advice, anyone?  Thanks in advance,
David

So does the report take longer than 10 minutes to process?
If not, then you'd best do some network snooping (using something like Wireshark), to see what's blocking the access.
If firewall is indeed blocking, then you'd need to reference the following document here:
[Configuring The Crystal Enterprise SDK to Work With Firewalls|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/0047e5f4-3140-2b10-1bae-de175e4c741c]
Sincerely,
Ted Ueda

Similar Messages

  • Error With Export/Print from Crystal Report Viewer

    Hello there,
    I've searched through the web and SAP discussion boards with not much luck with this issue.
    After working through this for some days now I've decided to look here for help.
    Environment:
    I have created a web Crystal Report viewer application(Developed with SBOP BI Platform 4.0 SP06 .NET SDK Runtime) that communicates with a managed Cyrstal Server 2011 SP4 (Product 14.0)
    I am able to connect and authenticate with the server, retrieve a token for communication and display reports in the Crystal report Viewer successfully.
    Problem:
    When I attempt to export, I receive the prompt to select format and pages.
    When I click export after selections most times I receive an error with the text
    Unable to cast COM object of type 'System.__ComObject' to interface type 'CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{74EEBC42-6C5D-11D3-9172-00902741EE7C}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
    Other times the page simply refreshes on export.
    When I click to print, no print dialog is displayed the page always refreshes and no error is displayed.
    No Print or Export document is ever created.
    As many print/export issues seems to be related, I'm guessing this two issues are as well.
    Notes:
    I am utilizing the ReportClientDocument model
    I am storing this in session to use as the crystal report viewer report source on postbacks
    I am assigning a subset of export formats to the crystal report viewer
    I am setting particular parameters as well on the report source
    At this point I would appreciate every assistance I may receive on this issue
    Thanks in advance,
    Below is the pertinent code
    Code:
    <aspx>
       <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
       AutoDataBind="true" EnableDatabaseLogonPrompt="False"
       BestFitPage="False" ReuseParameterValuesOnRefresh="True"
      CssClass="reportFrame" Height="1000px" Width="1100px" EnableDrillDown="False"
      ToolPanelView="None" PrintMode="Pdf"/>
    <Codebehind>
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using CrystalDecisions.Enterprise;
    using CrystalDecisions.ReportAppServer.ClientDoc;
    using CrystalDecisions.ReportAppServer.CommonObjectModel;
    using CrystalDecisions.ReportAppServer.Controllers;
    using CrystalDecisions.ReportAppServer.DataDefModel;
    using CrystalDecisions.ReportAppServer.ReportDefModel;
    using CrystalDecisions.Shared;
    namespace ClassicInternalReportPage
        public partial class Reports : System.Web.UI.Page
            protected override void OnInit(EventArgs e)
                base.OnInit(e);
                if (!String.IsNullOrEmpty(Convert.ToString(Session["LogonToken"])) && !IsPostBack)
                    SessionMgr sessionMgr = new SessionMgr();
                    EnterpriseSession enterpriseSession = sessionMgr.LogonWithToken(Session["LogonToken"].ToString());
                    EnterpriseService reportService = enterpriseSession.GetService("RASReportFactory");
                    InfoStore infoStore = new InfoStore(enterpriseSession.GetService("InfoStore"));
                    if (reportService != null)
                        string queryString = String.Format("Select SI_ID, SI_NAME, SI_PARENTID From CI_INFOOBJECTS "
                           + "Where SI_PROGID='CrystalEnterprise.Report' "
                           + "And SI_ID = {0} "
                           + "And SI_INSTANCE = 0", Request.QueryString["rId"]);
                        InfoObjects infoObjects = infoStore.Query(queryString);
                        ReportAppFactory reportFactory = (ReportAppFactory)reportService.Interface;
                        if (infoObjects != null && infoObjects.Count > 0)
                            ISCDReportClientDocument reportSource = reportFactory.OpenDocument(infoObjects[1].ID, 0);
                            Session["ReportClDocument"] = AssignReportParameters(reportSource) ? reportSource : null;
                            CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                            CrystalReportViewer1.DataBind();
                //Viewer options
                // Don't enable prompting for Live and Custom
                CrystalReportViewer1.EnableParameterPrompt = !(Request.QueryString["t"] == "1" || Request.QueryString["t"] == "4");
                CrystalReportViewer1.HasToggleParameterPanelButton = CrystalReportViewer1.EnableParameterPrompt;
                CrystalReportViewer1.AllowedExportFormats = (int)(ViewerExportFormats.PdfFormat | ViewerExportFormats.ExcelFormat | ViewerExportFormats.XLSXFormat | ViewerExportFormats.CsvFormat);
            protected void Page_Load(object sender, EventArgs e)
                if (IsPostBack && CrystalReportViewer1.ReportSource == null)
                    CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                    CrystalReportViewer1.DataBind();
            private bool AssignReportParameters(ISCDReportClientDocument reportSource)
                bool success = true;
                if (Request.QueryString["t"] == "1" || Request.QueryString["t"] == "2" || Request.QueryString["t"] == "4" )
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "STORE", Session["storeParam"]);
                    if (Request.QueryString["t"] == "2")
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "FromDate", Request.QueryString["fromdate"]);
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "ToDate", Request.QueryString["todate"]);
                else if (Request.QueryString["t"] == "3")
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "SKU", Request.QueryString["sku"]);
                else
                    //Unknown report type alert
                    success = false;
                return success;

    Thanks Don for your response,
    I'm new to the SCN spaces and my content has been moved a couple of times already.
    In response to your questions
    The runtime is installed on the web application server, if by that you mean the machine hosting the created .NET SDK application.
    My question was whether it was also required on the Crystal Server 2011 (I.E. the main enterprise server with CMS and Report management and I guess RAS and all that). I figured this would remain untouched and queries would simply be made against it to retrieve/view reports e.t.c
    If install of the SDK on Crystal Server 2011 is indeed required should I expect any interruption to any of the core services after a restart. I.E. I'm hoping that none of the SDK objects would interfere with the existing server objects (in SAP Business Objects)Reason I ask is I note that much of the SDK install directories are similar to the existing Crystal Enterprise Server 2011 (Product 14.0.0)
    Is this temp folder to be manually created/configured or is it created by the application automatically to perform tasks. Or are you referring to the default C:\Windows\Temp directory and so saying that the application would try to use this for print and export tasks?Once I'm sure which I'd give the app pool user permission
    Printing is to be client side but I figured by default (with the Crystal Report Viewer) it would simply pool and print from the user's printer. This is how it works with the previously used URL reporting approach (viewrpt.cwr). Therefore a user can print the document from wherever they are with their own printer.We don't intend on printing from the server machine, but are you suggesting that a printer must be installed on server (which one web or enterprise server) for any client side printing to work.
    App pool is running in 32 bit mode
    Initially didn't get anything useful from fiddler but I'd try and look closer on your suggestion.
    It's also possible that some of my questions are a misunderstanding of APP vs RAS vs WEB, so please feel free to clarify. Currently I see the Web server as simply the created .NET SDK Application and RAS (Crystal Server 2011 e.t.c) as the existing fully established Application server which I simply pool for information.
    Thank you for your patience and advice,

  • Can anyone tell me if this error report information points to something specific wrong with my MacBook Pro?

    Hi All,
    I pasted the error report info below that the most recent error brought up. My MacBook Pro will, on occasion, freeze up on me and usually turn the monitor completely black. This also happens occasionally when trying to boot up from a Standby mode, the system just never recovers and the monitor stays black. A couple times the monitor has stayed up displaying the last screen before the freeze and the system will just be frozen. The keyboard stays lit up however. I end up having to hard power down the laptop (by holding the power button for 4 seconds) and booting it back up.
    I'm assuming it's a hardware issue, if the below info has any indicators as to what might actually be the problem it would be greatly appreciated if you could share that with me =)
    Thanks!
    Adam
    Interval Since Last Panic Report:  177745 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    C1B7CA34-113F-4559-8D9D-301FCAB6248D
    Tue Sep 18 20:12:14 2012
    panic(cpu 2 caller 0xffffff7f80918947): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff809f41b000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 2), Frame : Return Address
    0xffffff807ba73b10 : 0xffffff8000220792
    0xffffff807ba73b90 : 0xffffff7f80918947
    0xffffff807ba73c20 : 0xffffff7f80a08aa4
    0xffffff807ba73c70 : 0xffffff7f80a08b64
    0xffffff807ba73cd0 : 0xffffff7f80cb5749
    0xffffff807ba73e10 : 0xffffff7f80a27bed
    0xffffff807ba73e40 : 0xffffff7f809222c2
    0xffffff807ba73ef0 : 0xffffff800063c5b6
    0xffffff807ba73f30 : 0xffffff800063b330
    0xffffff807ba73f70 : 0xffffff800063b1d4
    0xffffff807ba73fb0 : 0xffffff8000820057
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(7.1.8)[560E1257-BF5E-3B0B-95F0-15033A0D1B97]@0xffffff7f808 b8000->0xffffff7f80b91fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.8)[F63D4ABE-42DA-33EF-BADD-3415B0CB0179]@0xffff ff7f80843000
                dependency: com.apple.iokit.IONDRVSupport(2.3.2)[D05CFB53-FB72-3613-8162-2D188DB04738]@0xff ffff7f808a6000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.2)[2D2A4A31-EB4F-3730-BE3A-76C061685FC5]@0 xffffff7f8086e000
             com.apple.nvidia.nv50hal(7.1.8)[7596DB8C-AE9D-3C87-B11A-0ED8F940CAF8]@0xffffff7 f80b92000->0xffffff7f80eb3fff
                dependency: com.apple.NVDAResman(7.1.8)[560E1257-BF5E-3B0B-95F0-15033A0D1B97]@0xffffff7f808 b8000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11E53
    Kernel version:
    Darwin Kernel Version 11.4.0: Mon Apr  9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64
    Kernel UUID: A8ED611D-FB0F-3729-8392-E7A32C5E7D74
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 8984322430299
    last loaded kext at 60863374826: com.apple.driver.AppleHWSensor          1.9.5d0 (addr 0xffffff7f81efb000, size 28672)
    last unloaded kext at 238694679502: com.apple.driver.AppleUSBUHCI          4.4.5 (addr 0xffffff7f81101000, size 65536)
    loaded kexts:
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.filesystems.autofs          3.0
    com.apple.filesystems.ntfs          3.10.1
    com.apple.driver.AGPM          100.12.42
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.2.0f3
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.driver.AppleMikeyDriver          2.2.0f3
    com.apple.driver.AppleIntelHDGraphics          7.1.8
    com.apple.driver.AppleIntelHDGraphicsFB          7.1.8
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleSMCPDRC          5.0.0d0
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d0
    com.apple.GeForce          7.1.8
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.5f11
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.2
    com.apple.driver.AppleLPC          1.5.8
    com.apple.driver.AppleMuxControl          3.0.16
    com.apple.driver.AppleUSBTCButtons          225.2
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.5f11
    com.apple.driver.AppleUSBCardReader          3.0.1
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.AppleUSBTCKeyboard          225.2
    com.apple.iokit.SCSITaskUserClient          3.2.0
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCISerialATAPI          2.0.3
    com.apple.iokit.IOAHCIBlockStorage          2.0.3
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.driver.AirPort.Brcm4331          530.4.20
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.iokit.AppleBCM5701Ethernet          3.1.2b2
    com.apple.driver.AppleAHCIPort          2.3.0
    com.apple.driver.AppleUSBEHCI          4.5.8
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.8
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          193.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.3
    com.apple.driver.AppleIntelCPUPowerManagement          193.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.2.0f3
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d0
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.driver.AppleSMC          3.1.3d8
    com.apple.iokit.IOAudioFamily          1.8.6fc17
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.driver.AppleHDAController          2.2.0f3
    com.apple.iokit.IOHDAFamily          2.2.0f3
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.IOPlatformPluginFamily          5.1.0d17
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.nvidia.nv50hal          7.1.8
    com.apple.NVDAResman          7.1.8
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.5f11
    com.apple.iokit.IOBluetoothFamily          4.0.5f11
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.2.0
    com.apple.iokit.IOUSBMassStorageClass          3.0.1
    com.apple.driver.AppleUSBMultitouch          227.1
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.driver.AppleUSBComposite          4.5.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.0
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.0
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IO80211Family          420.3
    com.apple.iokit.IOUSBUserClient          4.5.8
    com.apple.iokit.IOEthernetAVBController          1.0.1b1
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOUSBFamily          4.5.8
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.5
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331.6
    com.apple.iokit.IOStorageFamily          1.7.1
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.6.8
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.198.4.20)
    Bluetooth: Version 4.0.5f11, 2 service, 11 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545032B9SA02, 320.07 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

    Nevermind, I found my answer... http://support.apple.com/kb/TS4088

  • Macbook froze while online. hard shutdown. when it restarted, an error message appeared saying finder shut down unexpectedly containing a message box with a long list of technical jibberish.  after clicking OK that it would send an error report to Apple,

    macbook froze while online. hard shutdown. when it restarted, an error message appeared saying finder shut down unexpectedly containing a message box with a long list of technical jibberish.  after clicking OK that it would send an error report to Apple, the same error message box appeared again and again every time OK was clicked.  Now the macbook will not turn on at all

    If you're able to boot, launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Console in the page that opens.
    Select the most recent panic log under System Diagnostic Reports. Post the contents — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post "shutdownStall" or "hang" reports.
    If you can't boot in the usual way, try a safe boot. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    During startup, you’ll see a progress bar, and then the login screen, which appears even if you normally log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Safe mode is slower than normal, and some things won’t work at all.
    Note: If FileVault is enabled under Mac OS X 10.7 or later, you can’t boot in safe mode.

  • Do browser send a error report to the website if browser fail in set up communication channel first time with that site

    Suppose i want to open some site using mozilla but first time browser fail to set up communication channel. When I attempt second time it successfully set up a connection then my question is that on the second time will browser send error report of first time to that site

    What was the specific problem with the first request? For example:
    * The server reset the connection
    * Page didn't load (blank)
    * Security certificate error
    * et cetera
    In some of these cases, the destination server might not know you sent a first request. And in other cases, that will be in the log. But I do not think Firefox sends any notification of problems with previous connections, the site would have to make an educated guess about the problem based on getting two sequential requests from the same IP address.

  • HT5639 windows 7 starts with an error report

    hi,can anyone help me to get windows back on to my imac.,i have a problem with uploading windows,it starts with an error report saying there is a problem
    and gives me two options the 1st it tries to repair the problem and then tells me it cant repair it and when i click finish it closes down,the 2nd option
    is start windows normally but when i scroll down to this option nothing happens.i used to have parallels but got so frustrated at this doing nothing i removed it
    from my imac,but that did not help,can anybody help.
    thanks

    Hi Paul,
    You don'y say what version of WMP you currently have, but I would strongly recommend installing the latest version from the Microsoft web site. It is possible that your current version has become corrupted in some way.
    HTH

  • SQLDeveloper tool script execution aborts with Error report: No more data to read from socket

    Hello,
    Strange behaviour of  the SQLdeveloper tool while executing script with typical DDLs like:
    Create Table,
    Alter Table
    Create Trigger ( use of :new and : old attributes in tehe body of trigger ).
    Insert Into....
    Scripts works ok from time to time.
    But sometimes coincidentally aborts with the error :
    Error report:
    No more data to read from socket
    Do not understand where is the problem.
    Scripts works ok when executed in SQL*Plus on server ( where Oracle RDBMS resides ).
    The version of SQLDeveloper is
    Version 3.2.20.09 Build MAIN-09.87
    The version of RDBMS is  11.2.0.2.0 .
    Thanx for any reference or direction or hint for upgrade or experience.
    Greetings,

    Welcome to the forum!
    Please provide the 4 digit Oracle version (result of SELECT * FROM V$VERSION) for the source and target servers; 10g and 11g are not versions. You also mention sql developer so what is the exact version you are using?
    >
    If delete the "OF out_a.ALLOCATION_ID" of the for update clause of CURSOR exist_allocation, this prolbem will not happen, and the code is comple succesfully on sql developer for oracle 10g.
    >
    Please clarify what works and what doesn't work because your statements are both incorrect and misleading.
    You can't delete the "OF out_a.ALLOCATION_ID" of the for update clause or you would get a syntax error by leaving FOR UPDATE OF with nothing specified after it.
    Also you original statement said
    >
    But when compile a package which is fine on oracle 10g
    >
    But now you say that if you delete the "OF..." the problem doesn't happen and the code compiles on 10g.
    Does the original code compile on 10g or not? Does it compile on 11g or not? After the original code is migrated to 11g does it compile? That is, the code is there can you manually compile it?

  • When I sync with my iphone i get an error reporting message but the sync still works.  After trying to download 10.6.3 Mac OSX Snow Leopard, this message appears every few seconds until I quit Entourage.  How do I turn this message off?.

    Question: 
    When I sync with my iphone I get an error reporting message but the sync still works.  After trying to download 10.6.3 Mac OSX Snow Leopard, this message appears every few seconds as long as Entourage is open.  This continues until I quit Entourage.  How do I turn this message off? It interferes with any other work I am doing.   I appreciate any suggestions.

    I only have one video project that I ever published to iDisk. It didn't have any music or photo files attatched to it, just a few clips stitched together. I can play these clips right now in the Event Library (so I know the source files are on my computer), but strangely, under the Project Library, the project is not there. I'm almost certain that I didn't store the project on iDisk; I just completed the video and published it to iDisk (as a .mov file I think) for family to see. I've tried to figure out how to get iDisk to stop looking for this project to no avail.
    I don't know if others have experienced this, but if I click on any project and on the menu bar select Share --> Remove From --> Media Browser... it lists iPod, iPhone, iPad, tv, Computer and MobileMe. Why would MobileMe be an option here? This is the case for any video project I select. Didn't iLife '11 and/or OSX 10.8 remove all mention of MobileMe? I wonder if this is part of the problem too.
    Edit: I just removed every project I have from the Media Browser. Still no luck.

  • I need help with a Safari error report.r

    Hello community,
    I have had reoccurring safari crashes for several months. I have tried all the resets and clearing out of files, etc. Nothing seems to work. It's hard to say for sure when the safari problems truly started, but it has increased since I installed 4 gigs of RAM. I also started using time machine/time capsule a couple months after the RAM upgrade. The RAM I bought was approved and specific for my late model macbook. And the crashes seem to occur when time machine starts, stops or running.
    Here is a copy of my latest error report.
    Process: Safari [127]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.1.2 (5525.20.1)
    Build Info: WebBrowser-55252001~1
    Code Type: X86 (Native)
    Parent Process: launchd [64]
    Date/Time: 2008-08-02 16:01:25.629 -0700
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.WebCore 0x956e1080 WebCore::IntRect::unite(WebCore::IntRect const&) + 256
    1 com.apple.WebCore 0x9573f3c0 WebCore::RenderLayer::boundingBox(WebCore::RenderLayer const*) const + 864
    2 com.apple.WebCore 0x956fa110 WebCore::RenderLayer::intersectsDamageRect(WebCore::IntRect const&, WebCore::IntRect const&, WebCore::RenderLayer const*) const + 128
    3 com.apple.WebCore 0x956f89d6 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, bool, WebCore::PaintRestriction, WebCore::RenderObject*) + 1142
    4 com.apple.WebCore 0x956f8b64 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, bool, WebCore::PaintRestriction, WebCore::RenderObject*) + 1540
    5 com.apple.WebCore 0x956f8df4 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, bool, WebCore::PaintRestriction, WebCore::RenderObject*) + 2196
    6 com.apple.WebCore 0x956f8559 WebCore::RenderLayer::paint(WebCore::GraphicsContext*, WebCore::IntRect const&, WebCore::PaintRestriction, WebCore::RenderObject*) + 57
    7 com.apple.WebCore 0x956f833d WebCore::Frame::paint(WebCore::GraphicsContext*, WebCore::IntRect const&) + 173
    8 com.apple.WebCore 0x956f7f2d -[WebCoreFrameBridge drawRect:] + 141
    9 com.apple.WebKit 0x94d4a18c -[WebHTMLView drawSingleRect:] + 412
    10 com.apple.WebKit 0x94d49fad -[WebHTMLView drawRect:] + 381
    11 com.apple.AppKit 0x92261984 -[NSView _drawRect:clip:] + 3853
    12 com.apple.AppKit 0x9225f1f5 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1819
    13 com.apple.WebKit 0x94d6e65e -[WebHTMLView(WebPrivate) _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 286
    14 com.apple.AppKit 0x9225fc2b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    15 com.apple.AppKit 0x9225fc2b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    16 com.apple.AppKit 0x9225fc2b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    17 com.apple.AppKit 0x9225fc2b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    18 com.apple.AppKit 0x9225fc2b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    19 com.apple.AppKit 0x9225fc2b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    20 com.apple.AppKit 0x9225fc2b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    21 com.apple.AppKit 0x9225fc2b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    22 com.apple.AppKit 0x9225e713 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 306
    23 com.apple.AppKit 0x9225b237 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    24 com.apple.AppKit 0x9219bc8f -[NSView displayIfNeeded] + 933
    25 com.apple.AppKit 0x9219b83d -[NSWindow displayIfNeeded] + 189
    26 com.apple.Safari 0x00021889 0x1000 + 133257
    27 com.apple.AppKit 0x9219b660 _handleWindowNeedsDisplay + 436
    28 com.apple.CoreFoundation 0x96f579c2 __CFRunLoopDoObservers + 466
    29 com.apple.CoreFoundation 0x96f58d1c CFRunLoopRunSpecific + 844
    30 com.apple.CoreFoundation 0x96f59cf8 CFRunLoopRunInMode + 88
    31 com.apple.HIToolbox 0x90e94da4 RunCurrentEventLoopInMode + 283
    32 com.apple.HIToolbox 0x90e94bbd ReceiveNextEventCommon + 374
    33 com.apple.HIToolbox 0x90e94a31 BlockUntilNextEventMatchingListInMode + 106
    34 com.apple.AppKit 0x92199505 _DPSNextEvent + 657
    35 com.apple.AppKit 0x92198db8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    36 com.apple.Safari 0x000086be 0x1000 + 30398
    37 com.apple.AppKit 0x92191df3 -[NSApplication run] + 795
    38 com.apple.AppKit 0x9215f030 NSApplicationMain + 574
    39 com.apple.Safari 0x000ba4d6 0x1000 + 758998
    Thread 1:
    0 libSystem.B.dylib 0x91d8468e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91daf36d pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x9563511f WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x955ed885 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    5 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x91d7d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x91d84c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96f590ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f59cf8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x90c96a32 CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x91d7d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x91d84c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96f590ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f59cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x91f4b460 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x91ee7f1d -[NSThread main] + 45
    6 com.apple.Foundation 0x91ee7ac4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    8 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x91dcd5e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    2 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x91d7d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x91d84c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96f590ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f59cf8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x9192c464 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x9192c300 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x91d8468e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91daf36d pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x93686460 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x93698d92 CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    5 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x91de707a _workqops + 10
    1 libSystem.B.dylib 0x91de70aa start_wqthread + 30
    Thread 8:
    Thread 9:
    0 libSystem.B.dylib 0x91d7d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x91d84c9c mach_msg + 72
    2 ...romedia.Flash Player.plugin 0x1abd0959 memcopy_mmx + 709497
    3 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    4 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x91d7d4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91daf866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x91df5371 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1aa97928 0x1a705000 + 3746088
    4 ...romedia.Flash Player.plugin 0x1aacf230 Flash_EnforceLocalSecurity + 125000
    5 ...romedia.Flash Player.plugin 0x1aa97bd2 0x1a705000 + 3746770
    6 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x91d7d4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91daf866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x91df5371 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1aa97928 0x1a705000 + 3746088
    4 ...romedia.Flash Player.plugin 0x1aacf230 Flash_EnforceLocalSecurity + 125000
    5 ...romedia.Flash Player.plugin 0x1aa97bd2 0x1a705000 + 3746770
    6 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x91d7d506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x91daf84f pthread_condwait + 1244
    2 libSystem.B.dylib 0x91dfa89b pthreadcondtimedwait + 47
    3 ...romedia.Flash Player.plugin 0x1aa978d4 0x1a705000 + 3746004
    4 ...romedia.Flash Player.plugin 0x1a9704a3 0x1a705000 + 2536611
    5 ...romedia.Flash Player.plugin 0x1aa97bd2 0x1a705000 + 3746770
    6 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x91d7d4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91daf866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x91df5371 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1aa97928 0x1a705000 + 3746088
    4 ...romedia.Flash Player.plugin 0x1a999564 0x1a705000 + 2704740
    5 ...romedia.Flash Player.plugin 0x1aa97bd2 0x1a705000 + 3746770
    6 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x91d7d506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x91daf84f pthread_condwait + 1244
    2 libSystem.B.dylib 0x91db10d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x9193ba47 CAGuard::WaitFor(unsigned long long) + 213
    4 com.apple.audio.CoreAudio 0x9193d602 CAGuard::WaitUntil(unsigned long long) + 70
    5 com.apple.audio.CoreAudio 0x9193bda7 HP_IOThread::WorkLoop() + 759
    6 com.apple.audio.CoreAudio 0x9193baab HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x9192c300 CAPThread::Entry(CAPThread*) + 96
    8 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    9 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x0000270f ebx: 0x956f829f ecx: 0x00000000 edx: 0xbfffc920
    edi: 0x0000001d esi: 0x00000000 ebp: 0xbfffc8a8 esp: 0xbfffc86c
    ss: 0x0000001f efl: 0x00010246 eip: 0x956e1080 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x29016404
    Binary Images:
    0x1000 - 0x133fef com.apple.Safari 3.1.2 (5525.20.1) <b8911db3c9f4e89257f40775a27be7c6> /Applications/Safari.app/Contents/MacOS/Safari
    0x17b000 - 0x18aff8 SyndicationUI ??? (???) <edde0133829971dbd8a0f3473cdb85fc> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x586000 - 0x6a4ff7 com.apple.RawCamera.bundle 2.0.8 (2.0.8) <56067945130800a348eb076676d41e92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x71c000 - 0x71ffff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9028f8fa35b10a573818bf4600d90fdf> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x757000 - 0x75cfff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1483e000 - 0x1483fff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x148a6000 - 0x148abff3 libCGXCoreImage.A.dylib ??? (???) <b6cf72d9cbd5312d4ec435e298954ade> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16290000 - 0x16291ffc com.apple.JavaPluginCocoa 12.1.0 (12.1.0) <d21a12c5668d4d89bfe492a5223a75cc> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x16843000 - 0x16848ffd com.apple.JavaVM 12.1.0 (12.1.0) <25c546c36e5bed978579d281080ab4c8> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1a3f9000 - 0x1a3faffd com.apple.BluetoothMenu 2.1 (2.1f17) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x1a4fe000 - 0x1a500ffe com.apple.AutomatorCMM 1.1 (160) <650079fd95a57e8131e79409a00b2aed> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x1a705000 - 0x1ad05ffb +com.macromedia.Flash Player.plugin 9.0.124 (1.0.4f60) <8355dcf076564b6784c517fd0eccb2f2> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1ae46000 - 0x1ae65fed com.apple.audio.CoreAudioKit 1.5 (1.5) <82f2e52c502db7f3b32349a54209a0fe> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1bf11000 - 0x1bf14fff com.apple.BezelServicesFW 1.4.832 (1.4.832) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x1bf1b000 - 0x1bf20fff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9ba69ef0bec96264a79fa28b3a5f058b> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x1c49c000 - 0x1c4aafeb libSimplifiedChineseConverter.dylib ??? (???) <a506528715475cff6c623675f3a72bf8> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1c4af000 - 0x1c4c1fff libTraditionalChineseConverter.dylib ??? (???) <62db211c07419a0432254a86fcc96587> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1c800000 - 0x1c86eff7 com.apple.Bluetooth 2.1 (2.1f17) <29ab5843bb608c155d4d7353320c2194> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x222a3000 - 0x222a3ffd liblangid.dylib ??? (???) <4310e568d617f1ce7178266630e1b71a> /usr/lib/liblangid.dylib
    0x24558000 - 0x2467ffe7 libmecab.1.0.0.dylib ??? (???) <7b38ea21924f2d04b3aa6c75b0ddcb29> /usr/lib/libmecab.1.0.0.dylib
    0x70000000 - 0x700e3ff2 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <7af47d3b00b2268947563c7fa8c59a07> /usr/lib/dyld
    0x90003000 - 0x90060ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x90061000 - 0x90185fe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90186000 - 0x9018bfff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9018c000 - 0x90522fff com.apple.QuartzCore 1.5.3 (1.5.3) <1b65c05f89e81a499302fd63295b242d> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90537000 - 0x90539fff com.apple.CrashReporterSupport 10.5.0 (156) <a9cf092be7a554b3cda00fe946d1c1a7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9053a000 - 0x9094afef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x909a7000 - 0x90a21ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90c8b000 - 0x90d0dff3 com.apple.CFNetwork 330.4 (330.4) <ce5b085df34a78b7f198aff9db5b52ec> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90d5f000 - 0x90d62fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90d63000 - 0x90d63ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90d64000 - 0x90d9efff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90dd9000 - 0x90e64fff com.apple.framework.IOKit 1.5.1 (???) <60cfc4b175c4ef60bb8e9036716a29f4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90e65000 - 0x9116cff7 com.apple.HIToolbox 1.5.3 (???) <e36f5c553e5a32f64b7eb458dadadc71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91372000 - 0x913b0ff7 libGLImage.dylib ??? (???) <093b1b698ca93a0380f5fa262459ea28> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x913b1000 - 0x91401ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91402000 - 0x917c0fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x917c1000 - 0x918a0fff libobjc.A.dylib ??? (???) <a53206274b6c2d42691f677863f379ae> /usr/lib/libobjc.A.dylib
    0x918f0000 - 0x918f7ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x918f8000 - 0x918fcfff libGIF.dylib ??? (???) <b8f61e346fa243a7138910bed3dcdb6b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9190f000 - 0x9198bfeb com.apple.audio.CoreAudio 3.1.0 (3.1) <483e0d3879d52ba9ac10b4bcfb0728d6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91a2f000 - 0x91a66fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91a67000 - 0x91a73fe7 com.apple.opengl 1.5.6 (1.5.6) <125de77ea2434a91364e79a0905a7771> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91a74000 - 0x91c42fff com.apple.security 5.0.4 (34102) <f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91c43000 - 0x91d37ff4 libiconv.2.dylib ??? (???) <c508c60fafca17824c0017b2e4369802> /usr/lib/libiconv.2.dylib
    0x91d38000 - 0x91d7afef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91d7c000 - 0x91edcff3 libSystem.B.dylib ??? (???) <a12f397abf2285077b89bd726bff5b18> /usr/lib/libSystem.B.dylib
    0x91edd000 - 0x92158fe7 com.apple.Foundation 6.5.5 (677.19) <bfd4ebea1a7739dd6b523f15dca01a37> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92159000 - 0x92956fef com.apple.AppKit 6.5.3 (949.33) <84b236f43802f4c15011513d18efa101> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92957000 - 0x9297bfff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x9297c000 - 0x9298bffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x929bc000 - 0x92a16ff7 com.apple.CoreText 2.0.2 (???) <9fde11f84a72e890bbf2aa8b0b13b79a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92a17000 - 0x92a27ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92a28000 - 0x92a2fff7 libCGATS.A.dylib ??? (???) <fbc59d0e1eccf907396563568d5cd872> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x92a30000 - 0x92a30ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92a5c000 - 0x92a8bfe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92a8c000 - 0x92aaafff libresolv.9.dylib ??? (???) <0629b6dcd71f4aac6a891cbe26253e85> /usr/lib/libresolv.9.dylib
    0x92aab000 - 0x92ab2fe9 libgcc_s.1.dylib ??? (???) <a9ab135a5f81f6e345527df87f51bfc9> /usr/lib/libgcc_s.1.dylib
    0x92acb000 - 0x92ad2fff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92ad3000 - 0x92ba1ff3 com.apple.JavaScriptCore 5525.18 (5525.18) <672d1c7f16a4300addabeff4830f5024> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92ba2000 - 0x92cdaff7 libicucore.A.dylib ??? (???) <5031226ea28b371d8dfdbb32acfb48b5> /usr/lib/libicucore.A.dylib
    0x92cdb000 - 0x92cdbffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x92de2000 - 0x92e5ffef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92e60000 - 0x92e65fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92e66000 - 0x92eb0fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92fef000 - 0x92fefff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9305e000 - 0x93060fff com.apple.securityhi 3.0 (30817) <72cb8b012603370e904b31a24a91121b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93061000 - 0x93534ffe libGLProgrammability.dylib ??? (???) <475db64244e011cd8811e076035b2632> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93616000 - 0x93621fe7 libCSync.A.dylib ??? (???) <3f58eb487099bff0476ec79974d0ad4d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93622000 - 0x93632fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93633000 - 0x93633ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93634000 - 0x93652ff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <fe27e80e1a9e86403fd9ed16dcfe4e11> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93653000 - 0x9371efff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9371f000 - 0x9377bff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x937b9000 - 0x937b9ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93884000 - 0x93898ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93899000 - 0x938c4fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x938c5000 - 0x93be6fea com.apple.QuickTime 7.5.0 (861) <4e1161b204b3b1f1047412c16483c39a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94d33000 - 0x94df0fff com.apple.WebKit 5525.18 (5525.18) <7e41e38368974ed048c2f027a961dbd4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94df1000 - 0x94e30fef libTIFF.dylib ??? (???) <76301b3506f310fb454b58897c8d0a9f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94e31000 - 0x94eb8ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x94eb9000 - 0x94ed8ffa libJPEG.dylib ??? (???) <0dd7e9d7fb22174b78205a944144f9c3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94ed9000 - 0x94ee8fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x94ee9000 - 0x94f11ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94f17000 - 0x94f4dfef libtidy.A.dylib ??? (???) <f1d1742e06280444baa5637b209fd0af> /usr/lib/libtidy.A.dylib
    0x94f4e000 - 0x94f4effa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94f4f000 - 0x94f95fef com.apple.Metadata 10.5.2 (398.18) <adbb3a14e8f7da444e16d2fd61862771> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94f96000 - 0x95270ff3 com.apple.CoreServices.CarbonCore 786.6 (786.6) <bc7c12c84fe21ae2626bdd17070aaafa> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95271000 - 0x95304ff3 com.apple.ApplicationServices.ATS 3.3 (???) <064eb6d96417afa38a80b1735c4113aa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95305000 - 0x9544bff7 com.apple.ImageIO.framework 2.0.2 (2.0.2) <77dfee73f4c0d230425a5151ee0bce05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9546b000 - 0x955eafff com.apple.AddressBook.framework 4.1.1 (695) <24a448ba4f9f784189bd3183e3474d81> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x955eb000 - 0x95c3bfff com.apple.WebCore 5525.18.1 (5525.18.1) <9fcf69305c5b48dd8a5cb77107f66c7a> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95c3c000 - 0x95cf6fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <7e10d25c615a39fe1ab4d48e24a3b555> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95cf7000 - 0x95df8fef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95df9000 - 0x95e19ff2 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95e1a000 - 0x95e5bfe7 libRIP.A.dylib ??? (???) <8c2cd4f044b3413d770ca8ad740f7645> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95e5c000 - 0x95eb5ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95eb6000 - 0x95eccfff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95ecd000 - 0x95ed5fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95ed6000 - 0x95edafff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x95edb000 - 0x95f8bfff edu.mit.Kerberos 6.0.12 (6.0.12) <1dc515ebe407292db8e603938c72d4e8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95f8c000 - 0x95f8cffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95f8d000 - 0x95f93fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95f94000 - 0x95f94fff com.apple.Carbon 136 (136) <9961570a497d79f13b8ea159826af42d> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95fd4000 - 0x96086ffb libcrypto.0.9.7.dylib ??? (???) <01109b36b445b3e8698ef87f814f7fd4> /usr/lib/libcrypto.0.9.7.dylib
    0x960ae000 - 0x9613aff7 com.apple.LaunchServices 289.2 (289.2) <3577886e3a6d56ee3949850c4fde76c9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9613b000 - 0x961cefff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x961cf000 - 0x962b0ff7 libxml2.2.dylib ??? (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
    0x962b1000 - 0x962c9fff com.apple.openscripting 1.2.8 (???) <d85d82af796d1df9bce7b1db8f6c846c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x962ca000 - 0x96349ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9634a000 - 0x96358ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x96515000 - 0x965dcff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9668c000 - 0x96695fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96696000 - 0x9677bff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9677c000 - 0x967a9feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x967aa000 - 0x967dcfff com.apple.LDAPFramework 1.4.3 (106) <94a26abfc0a5d88c752763b44a10ae51> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x967dd000 - 0x96816ffe com.apple.securityfoundation 3.0 (32989) <e9171eda22c69c884a04a001aeb526e0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96817000 - 0x96eb3fef com.apple.CoreGraphics 1.351.32 (???) <793d7ceb9e1880818e03c1f1b10df04b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96ec2000 - 0x96ee6feb libssl.0.9.7.dylib ??? (???) <3512c4a8198f0e964748bf6acbf359b4> /usr/lib/libssl.0.9.7.dylib
    0x96ee7000 - 0x97019fff com.apple.CoreFoundation 6.5.3 (476.14) <7ef7f5db09ff6dd0135a6165872803cc> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9701a000 - 0x9701bffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x9701c000 - 0x97027ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x97028000 - 0x97043ff3 libPng.dylib ??? (???) <c0484bec6e2432b406755591924fe664> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97044000 - 0x9706cfff libcups.2.dylib ??? (???) <ece20dff2a2c8ed3ae6ef735ef440c37> /usr/lib/libcups.2.dylib
    0x9706d000 - 0x97083fe7 com.apple.CoreVideo 1.5.1 (1.5.1) <ed7bb95fb94817ea3212090aac5c65f3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97084000 - 0x9710efe3 com.apple.DesktopServices 1.4.6 (1.4.6) <94d1a28b351b7dff77becadab0967772> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9710f000 - 0x97119feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9711a000 - 0x971c1feb com.apple.QD 3.11.52 (???) <c72bd7bd2ce12694c3640a731d1ad878> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x97207000 - 0x97209ff5 libRadiance.dylib ??? (???) <b9e04afa91e4b597a00797d67a7268fb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9720a000 - 0x97270ffb com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <1e92e348e73fc6fce723936c11e4b25c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <2f3be93c8c0872958b681397ee09c9f1> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    I ran the disk repair utility and still had safari crash multiple times today. It just crashed while running time machine. Nothing else was running except safari. I think it's time for an appointment with apple unless anyone else has suggestions. I have tried everything on the support pages.
    Thanks in advance.
    Process: Safari [311]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.1.2 (5525.20.1)
    Build Info: WebBrowser-55252001~1
    Code Type: X86 (Native)
    Parent Process: launchd [64]
    Date/Time: 2008-08-04 21:32:09.381 -0700
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000009fe96fd6
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.AppKit 0x9265f397 -[NSMenuItem encodeWithCoder:] + 585
    1 com.apple.AppKit 0x9225fc2b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    2 com.apple.AppKit 0x9225fc2b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    3 com.apple.AppKit 0x9225e713 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 306
    4 com.apple.AppKit 0x9225b237 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    5 com.apple.AppKit 0x9219bc8f -[NSView displayIfNeeded] + 933
    6 com.apple.AppKit 0x9219b83d -[NSWindow displayIfNeeded] + 189
    7 com.apple.Safari 0x00021889 0x1000 + 133257
    8 com.apple.AppKit 0x9219b660 _handleWindowNeedsDisplay + 436
    9 com.apple.CoreFoundation 0x96f579c2 __CFRunLoopDoObservers + 466
    10 com.apple.CoreFoundation 0x96f58d1c CFRunLoopRunSpecific + 844
    11 com.apple.CoreFoundation 0x96f59cf8 CFRunLoopRunInMode + 88
    12 com.apple.HIToolbox 0x90e94da4 RunCurrentEventLoopInMode + 283
    13 com.apple.HIToolbox 0x90e94bbd ReceiveNextEventCommon + 374
    14 com.apple.HIToolbox 0x90e94a31 BlockUntilNextEventMatchingListInMode + 106
    15 com.apple.AppKit 0x92199505 _DPSNextEvent + 657
    16 com.apple.AppKit 0x92198db8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    17 com.apple.Safari 0x000086be 0x1000 + 30398
    18 com.apple.AppKit 0x92191df3 -[NSApplication run] + 795
    19 com.apple.AppKit 0x9215f030 NSApplicationMain + 574
    20 com.apple.Safari 0x000ba4d6 0x1000 + 758998
    Thread 1:
    0 libSystem.B.dylib 0x91d8468e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91daf36d pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x9563511f WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x955ed885 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    5 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x91d7d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x91d84c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96f590ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f59cf8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x90c96a32 CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x91d7d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x91d84c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96f590ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f59cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x91f4b460 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x91ee7f1d -[NSThread main] + 45
    6 com.apple.Foundation 0x91ee7ac4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    8 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x91dcd5e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    2 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x91de707a _workqops + 10
    1 libSystem.B.dylib 0x91de70aa start_wqthread + 30
    Thread 6:
    Thread 7:
    0 libSystem.B.dylib 0x91d7d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x91d84c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96f590ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f59cf8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x9192c464 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x9192c300 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x91d7d4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x91d84c9c mach_msg + 72
    2 ...romedia.Flash Player.plugin 0x1c220959 memcopy_mmx + 709497
    3 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    4 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x91d7d4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91daf866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x91df5371 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1c0e7928 0x1bd55000 + 3746088
    4 ...romedia.Flash Player.plugin 0x1c11f230 Flash_EnforceLocalSecurity + 125000
    5 ...romedia.Flash Player.plugin 0x1c0e7bd2 0x1bd55000 + 3746770
    6 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x91d7d4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91daf866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x91df5371 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1c0e7928 0x1bd55000 + 3746088
    4 ...romedia.Flash Player.plugin 0x1c11f230 Flash_EnforceLocalSecurity + 125000
    5 ...romedia.Flash Player.plugin 0x1c0e7bd2 0x1bd55000 + 3746770
    6 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x91d7d506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x91daf84f pthread_condwait + 1244
    2 libSystem.B.dylib 0x91dfa89b pthreadcondtimedwait + 47
    3 ...romedia.Flash Player.plugin 0x1c0e78d4 0x1bd55000 + 3746004
    4 ...romedia.Flash Player.plugin 0x1bfc04a3 0x1bd55000 + 2536611
    5 ...romedia.Flash Player.plugin 0x1c0e7bd2 0x1bd55000 + 3746770
    6 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x91d7d506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x91daf84f pthread_condwait + 1244
    2 libSystem.B.dylib 0x91db10d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x9193ba47 CAGuard::WaitFor(unsigned long long) + 213
    4 com.apple.audio.CoreAudio 0x9193d602 CAGuard::WaitUntil(unsigned long long) + 70
    5 com.apple.audio.CoreAudio 0x9193bda7 HP_IOThread::WorkLoop() + 759
    6 com.apple.audio.CoreAudio 0x9193baab HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x9192c300 CAPThread::Entry(CAPThread*) + 96
    8 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    9 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x91d7d4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x91daf866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x91df5371 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1c0e7928 0x1bd55000 + 3746088
    4 ...romedia.Flash Player.plugin 0x1bfe9564 0x1bd55000 + 2704740
    5 ...romedia.Flash Player.plugin 0x1c0e7bd2 0x1bd55000 + 3746770
    6 libSystem.B.dylib 0x91dae6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x91dae5b2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x0029bcb9 ebx: 0x9225eae5 ecx: 0x917f67f8 edx: 0x00000001
    edi: 0xbfffe120 esi: 0x18643ce0 ebp: 0xbfffe2d8 esp: 0xbfffe070
    ss: 0x0000001f efl: 0x00010286 eip: 0x9265f397 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x9fe96fd6
    Binary Images:
    0x1000 - 0x133fef com.apple.Safari 3.1.2 (5525.20.1) <b8911db3c9f4e89257f40775a27be7c6> /Applications/Safari.app/Contents/MacOS/Safari
    0x17b000 - 0x18aff8 SyndicationUI ??? (???) <edde0133829971dbd8a0f3473cdb85fc> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x586000 - 0x6a4ff7 com.apple.RawCamera.bundle 2.0.8 (2.0.8) <56067945130800a348eb076676d41e92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14024000 - 0x14025ff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1407c000 - 0x1407cffd liblangid.dylib ??? (???) <4310e568d617f1ce7178266630e1b71a> /usr/lib/liblangid.dylib
    0x14e3b000 - 0x14e40ff3 libCGXCoreImage.A.dylib ??? (???) <b6cf72d9cbd5312d4ec435e298954ade> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x14eea000 - 0x14eecffe com.apple.AutomatorCMM 1.1 (160) <650079fd95a57e8131e79409a00b2aed> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x14ef2000 - 0x14ef3ffd com.apple.BluetoothMenu 2.1 (2.1f17) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x16655000 - 0x16656ffc com.apple.JavaPluginCocoa 12.1.0 (12.1.0) <d21a12c5668d4d89bfe492a5223a75cc> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x1670c000 - 0x16711ffd com.apple.JavaVM 12.1.0 (12.1.0) <25c546c36e5bed978579d281080ab4c8> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x17442000 - 0x17445fff com.apple.BezelServicesFW 1.4.832 (1.4.832) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x1744c000 - 0x17451fff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9ba69ef0bec96264a79fa28b3a5f058b> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x18a49000 - 0x18b70fe7 libmecab.1.0.0.dylib ??? (???) <7b38ea21924f2d04b3aa6c75b0ddcb29> /usr/lib/libmecab.1.0.0.dylib
    0x18be0000 - 0x18c4eff7 com.apple.Bluetooth 2.1 (2.1f17) <29ab5843bb608c155d4d7353320c2194> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x18fb8000 - 0x18fbbfff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9028f8fa35b10a573818bf4600d90fdf> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x18fe2000 - 0x18fe7fff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x190f2000 - 0x19100feb libSimplifiedChineseConverter.dylib ??? (???) <a506528715475cff6c623675f3a72bf8> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x19105000 - 0x19117fff libTraditionalChineseConverter.dylib ??? (???) <62db211c07419a0432254a86fcc96587> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x19740000 - 0x1975ffed com.apple.audio.CoreAudioKit 1.5 (1.5) <82f2e52c502db7f3b32349a54209a0fe> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1bd55000 - 0x1c355ffb +com.macromedia.Flash Player.plugin 9.0.124 (1.0.4f60) <8355dcf076564b6784c517fd0eccb2f2> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x70000000 - 0x700e3ff2 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <7af47d3b00b2268947563c7fa8c59a07> /usr/lib/dyld
    0x90003000 - 0x90060ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x90061000 - 0x90185fe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90186000 - 0x9018bfff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9018c000 - 0x90522fff com.apple.QuartzCore 1.5.3 (1.5.3) <1b65c05f89e81a499302fd63295b242d> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90537000 - 0x90539fff com.apple.CrashReporterSupport 10.5.0 (156) <a9cf092be7a554b3cda00fe946d1c1a7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9053a000 - 0x9094afef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x909a7000 - 0x90a21ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90c8b000 - 0x90d0dff3 com.apple.CFNetwork 330.4 (330.4) <ce5b085df34a78b7f198aff9db5b52ec> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90d5f000 - 0x90d62fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90d63000 - 0x90d63ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90d64000 - 0x90d9efff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90dd9000 - 0x90e64fff com.apple.framework.IOKit 1.5.1 (???) <60cfc4b175c4ef60bb8e9036716a29f4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90e65000 - 0x9116cff7 com.apple.HIToolbox 1.5.3 (???) <e36f5c553e5a32f64b7eb458dadadc71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91372000 - 0x913b0ff7 libGLImage.dylib ??? (???) <093b1b698ca93a0380f5fa262459ea28> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x913b1000 - 0x91401ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91402000 - 0x917c0fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x917c1000 - 0x918a0fff libobjc.A.dylib ??? (???) <a53206274b6c2d42691f677863f379ae> /usr/lib/libobjc.A.dylib
    0x918f0000 - 0x918f7ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x918f8000 - 0x918fcfff libGIF.dylib ??? (???) <b8f61e346fa243a7138910bed3dcdb6b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9190f000 - 0x9198bfeb com.apple.audio.CoreAudio 3.1.0 (3.1) <483e0d3879d52ba9ac10b4bcfb0728d6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91a2f000 - 0x91a66fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91a67000 - 0x91a73fe7 com.apple.opengl 1.5.6 (1.5.6) <125de77ea2434a91364e79a0905a7771> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91a74000 - 0x91c42fff com.apple.security 5.0.4 (34102) <f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91c43000 - 0x91d37ff4 libiconv.2.dylib ??? (???) <c508c60fafca17824c0017b2e4369802> /usr/lib/libiconv.2.dylib
    0x91d38000 - 0x91d7afef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91d7c000 - 0x91edcff3 libSystem.B.dylib ??? (???) <a12f397abf2285077b89bd726bff5b18> /usr/lib/libSystem.B.dylib
    0x91edd000 - 0x92158fe7 com.apple.Foundation 6.5.5 (677.19) <bfd4ebea1a7739dd6b523f15dca01a37> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92159000 - 0x92956fef com.apple.AppKit 6.5.3 (949.33) <84b236f43802f4c15011513d18efa101> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92957000 - 0x9297bfff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x9297c000 - 0x9298bffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x929bc000 - 0x92a16ff7 com.apple.CoreText 2.0.2 (???) <9fde11f84a72e890bbf2aa8b0b13b79a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92a17000 - 0x92a27ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92a28000 - 0x92a2fff7 libCGATS.A.dylib ??? (???) <fbc59d0e1eccf907396563568d5cd872> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x92a30000 - 0x92a30ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92a5c000 - 0x92a8bfe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92a8c000 - 0x92aaafff libresolv.9.dylib ??? (???) <0629b6dcd71f4aac6a891cbe26253e85> /usr/lib/libresolv.9.dylib
    0x92aab000 - 0x92ab2fe9 libgcc_s.1.dylib ??? (???) <a9ab135a5f81f6e345527df87f51bfc9> /usr/lib/libgcc_s.1.dylib
    0x92acb000 - 0x92ad2fff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92ad3000 - 0x92ba1ff3 com.apple.JavaScriptCore 5525.18 (5525.18) <672d1c7f16a4300addabeff4830f5024> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92ba2000 - 0x92cdaff7 libicucore.A.dylib ??? (???) <5031226ea28b371d8dfdbb32acfb48b5> /usr/lib/libicucore.A.dylib
    0x92cdb000 - 0x92cdbffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x92de2000 - 0x92e5ffef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92e60000 - 0x92e65fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92e66000 - 0x92eb0fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92fef000 - 0x92fefff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9305e000 - 0x93060fff com.apple.securityhi 3.0 (30817) <72cb8b012603370e904b31a24a91121b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93061000 - 0x93534ffe libGLProgrammability.dylib ??? (???) <475db64244e011cd8811e076035b2632> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93616000 - 0x93621fe7 libCSync.A.dylib ??? (???) <3f58eb487099bff0476ec79974d0ad4d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93622000 - 0x93632fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93633000 - 0x93633ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93634000 - 0x93652ff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <fe27e80e1a9e86403fd9ed16dcfe4e11> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93653000 - 0x9371efff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9371f000 - 0x9377bff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x937b9000 - 0x937b9ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93884000 - 0x93898ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93899000 - 0x938c4fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x938c5000 - 0x93be6fea com.apple.QuickTime 7.5.0 (861) <4e1161b204b3b1f1047412c16483c39a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94d33000 - 0x94df0fff com.apple.WebKit 5525.18 (5525.18) <7e41e38368974ed048c2f027a961dbd4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94df1000 - 0x94e30fef libTIFF.dylib ??? (???) <76301b3506f310fb454b58897c8d0a9f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94e31000 - 0x94eb8ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x94eb9000 - 0x94ed8ffa libJPEG.dylib ??? (???) <0dd7e9d7fb22174b78205a944144f9c3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94ed9000 - 0x94ee8fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x94ee9000 - 0x94f11ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94f17000 - 0x94f4dfef libtidy.A.dylib ??? (???) <f1d1742e06280444baa5637b209fd0af> /usr/lib/libtidy.A.dylib
    0x94f4e000 - 0x94f4effa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94f4f000 - 0x94f95fef com.apple.Metadata 10.5.2 (398.18) <adbb3a14e8f7da444e16d2fd61862771> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94f96000 - 0x95270ff3 com.apple.CoreServices.CarbonCore 786.6 (786.6) <bc7c12c84fe21ae2626bdd17070aaafa> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95271000 - 0x95304ff3 com.apple.ApplicationServices.ATS 3.3 (???) <064eb6d96417afa38a80b1735c4113aa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95305000 - 0x9544bff7 com.apple.ImageIO.framework 2.0.2 (2.0.2) <77dfee73f4c0d230425a5151ee0bce05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9546b000 - 0x955eafff com.apple.AddressBook.framework 4.1.1 (695) <24a448ba4f9f784189bd3183e3474d81> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x955eb000 - 0x95c3bfff com.apple.WebCore 5525.18.1 (5525.18.1) <9fcf69305c5b48dd8a5cb77107f66c7a> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95c3c000 - 0x95cf6fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <7e10d25c615a39fe1ab4d48e24a3b555> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95cf7000 - 0x95df8fef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95df9000 - 0x95e19ff2 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95e1a000 - 0x95e5bfe7 libRIP.A.dylib ??? (???) <8c2cd4f044b3413d770ca8ad740f7645> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95e5c000 - 0x95eb5ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95eb6000 - 0x95eccfff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95ecd000 - 0x95ed5fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95ed6000 - 0x95edafff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x95edb000 - 0x95f8bfff edu.mit.Kerberos 6.0.12 (6.0.12) <1dc515ebe407292db8e603938c72d4e8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95f8c000 - 0x95f8cffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95f8d000 - 0x95f93fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95f94000 - 0x95f94fff com.apple.Carbon 136 (136) <9961570a497d79f13b8ea159826af42d> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95fd4000 - 0x96086ffb libcrypto.0.9.7.dylib ??? (???) <01109b36b445b3e8698ef87f814f7fd4> /usr/lib/libcrypto.0.9.7.dylib
    0x960ae000 - 0x9613aff7 com.apple.LaunchServices 289.2 (289.2) <3577886e3a6d56ee3949850c4fde76c9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9613b000 - 0x961cefff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x961cf000 - 0x962b0ff7 libxml2.2.dylib ??? (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
    0x962b1000 - 0x962c9fff com.apple.openscripting 1.2.8 (???) <d85d82af796d1df9bce7b1db8f6c846c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x962ca000 - 0x96349ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9634a000 - 0x96358ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x96515000 - 0x965dcff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9668c000 - 0x96695fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96696000 - 0x9677bff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9677c000 - 0x967a9feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x967aa000 - 0x967dcfff com.apple.LDAPFramework 1.4.3 (106) <94a26abfc0a5d88c752763b44a10ae51> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x967dd000 - 0x96816ffe com.apple.securityfoundation 3.0 (32989) <e9171eda22c69c884a04a001aeb526e0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96817000 - 0x96eb3fef com.apple.CoreGraphics 1.351.32 (???) <793d7ceb9e1880818e03c1f1b10df04b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96ec2000 - 0x96ee6feb libssl.0.9.7.dylib ??? (???) <3512c4a8198f0e964748bf6acbf359b4> /usr/lib/libssl.0.9.7.dylib
    0x96ee7000 - 0x97019fff com.apple.CoreFoundation 6.5.3 (476.14) <7ef7f5db09ff6dd0135a6165872803cc> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9701a000 - 0x9701bffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x9701c000 - 0x97027ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x97028000 - 0x97043ff3 libPng.dylib ??? (???) <c0484bec6e2432b406755591924fe664> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97044000 - 0x9706cfff libcups.2.dylib ??? (???) <ece20dff2a2c8ed3ae6ef735ef440c37> /usr/lib/libcups.2.dylib
    0x9706d000 - 0x97083fe7 com.apple.CoreVideo 1.5.1 (1.5.1) <ed7bb95fb94817ea3212090aac5c65f3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97084000 - 0x9710efe3 com.apple.DesktopServices 1.4.6 (1.4.6) <94d1a28b351b7dff77becadab0967772> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9710f000 - 0x97119feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9711a000 - 0x971c1feb com.apple.QD 3.11.52 (???) <c72bd7bd2ce12694c3640a731d1ad878> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x97207000 - 0x97209ff5 libRadiance.dylib ??? (???) <b9e04afa91e4b597a00797d67a7268fb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9720a000 - 0x97270ffb com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <1e92e348e73fc6fce723936c11e4b25c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <2f3be93c8c0872958b681397ee09c9f1> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Canoscan 88ooF error report, "Cannot communicate with scanner."

    When I try and use my scanner I get the error report,"Cannot communicate with scanner, check that it is plugged in and truned on." When I go to Windows device manager I can see it and when I click on the properties buttonn it says that the device is working properly. I have downloaded the latest driver software etc., and I have uninstalled everything and re installed again but I still get the same error report.
    I am using Windows 7, 64 bit version.
    Above is the error message I get.
    Solved!
    Go to Solution.

    After two days of fruitless effort I have found my own solution. I have downloaded and installed VueScan  x64 and it works a treat. I think the problem I have been having is due to the fact that the scanner driver is 64 bit and the programs that install are 32 bit and although scanner driver is working perfectly well the 2 bit probrams can't see it.

  • Need help with an error report

    Attached is an error report from a VI that normally crashes with Error Checking set to Default in the VI's LCFN configuration dialog box. Can't debug it when it crashes; LabWindows CVI comes up for debug but CVI crashes too.
    The attached error report was only available after setting Error Checking to 'No Error Checking'.
    Any ideas what's going on with this DLL function called by the LCFN?
    Platform: Windows 7-32 + LV2013 Pro SP1-32.
    Jeff
    Jeffrey Bledsoe
    Electrical Engineer
    Solved!
    Go to Solution.
    Attachments:
    1607b431-02ef-4672-a138-c2ebc4a16c2b.zip ‏20 KB

    Connor,
    Sorry, I meant CLFN.
    This isn't an executable.
    It's good LV2009 code (ran okay with LV2009)  that I'm trying to execute with LV2013. I ran a mass compile on all the VIs.
    I posted this issue a few months ago when using an evaluation copy of LV2013 but have only recently begun looking at it again after I installed our purchased copy of LV2013.
    I can prevent LV crashes from this VI by changing its calling convention from "C" to "StdCall." However, the value returned from the DLL function is invalid. While the DLL function returns an invalild value, I added "unbundle by name" VIs to the error stream on the input and the output of the CLFN. Results: the error 'code' at the input and the output of the CLFN = 0.
    The supplier of the DLL said the DLL functions are written in either C or C++. I've found notes at ni.com that indicate a "Wrapper DLL" (written in C) might be required to provide a "C to C++" translation  interface between the CLFN and the DLL functions.
    Another approach I've found on ni.com appears to be replacing the CLFN with a Code Interface Node (CIN) having C code to interface LV with the C++ code of the DLL function, thus eliminating the CLFN.
    There are also some notes on ni.com concerning CLFN settings causing crashes in the LV2009 to LV2010 transition; apparently, other changes between LV2010 and LV2013 are causing my issue.
    The supplier of the free DLL now has a LV developers kit  (for purchase) that might solve these issues but we can't go that route.
    Thanks,
    Jeff
    Jeffrey Bledsoe
    Electrical Engineer

  • Session completed successfully with errors reported in error tables.

    Which table would contain the errors for this error message?
    "Session completed successfully with errors reported in error tables."
    The Snp_Exp_Txt table?
    Edited by: user8702914 on Mar 2, 2011 11:28 AM

    Sutirtha,
    The FLOW_CONTROL option must be set to 'Yes', as it is the CKM that creates and populates the E$ table. If it was set to 'No' there would not be any 'errors reported in error table' as the error table would not exist.
    Cheers
    Bos

  • ITunes 10.5.3 keeps crashing with error report

    This is the error report (sorry, but I thought it would be most useful to paste it here! ):
    Date/Time:       2012-03-01 22:22:54 +0000
    OS Version:      10.7.3 (Build 11D50b)
    Architecture:    x86_64
    Report Version:  9
    Command:         iTunes
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Version:         10.5.3 (10.5.3)
    Build Version:   1
    Project Name:    iTunes
    Source Version:  10530301
    Parent:          launchd [143]
    PID:             1580
    Event:           hang
    Duration:        0.98s
    Steps:           10 (100ms sampling interval)
    Pageins:         0
    Pageouts:        0
    Process:         iTunes [1580]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Architecture:    x86_64
    UID:             501
      Thread 0x42041      DispatchQueue 1
      User stack:
        10 ??? (in iTunes) [0x107bd0114]
          10 ??? (in iTunes) [0x107bd02ad]
            10 -[NSApplication run] + 470 (in AppKit) [0x7fff96b1719d]
              10 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff96b1a861]
                10 _DPSNextEvent + 659 (in AppKit) [0x7fff96b1af5d]
                  10 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8ee05456]
                    10 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8ee055c9]
                      10 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8edfe31f]
                        10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                          10 __CFRunLoopRun + 1617 (in CoreFoundation) [0x7fff8c5c3001]
                            10 __CFRunLoopDoTimer + 534 (in CoreFoundation) [0x7fff8c5e2776]
                              10 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (in CoreFoundation) [0x7fff8c5e2c24]
                                10 ??? (in iTunes) [0x107cc8c78]
                                  10 ??? (in iTunes) [0x107cc9f63]
                                    10 ??? (in iTunes) [0x107cca74b]
                                      10 ??? (in iTunes) [0x107eb6d97]
                                        10 ??? (in iTunes) [0x1082df02f]
                                          10 ??? (in iTunes) [0x1082d6ff2]
                                            10 ??? (in iTunes) [0x1083fa09a]
                                              10 ??? (in iTunes) [0x1083f9d60]
                                                10 ??? (in iTunes) [0x1083f9b63]
                                                  10 ??? (in iTunes) [0x1083e74ca]
                                                    10 ??? (in iTunes) [0x10829cd03]
                                                      10 ??? (in iTunes) [0x107e6b9f4]
                                                        10 ??? (in iTunes) [0x1081bb92e]
                                                          10 ??? (in iTunes) [0x1081b9969]
                                                            10 ??? (in iTunes) [0x1081b97e4]
                                                              10 ??? (in iTunes) [0x1081b9241]
                                                                10 ??? (in iTunes) [0x1081bc522]
                                                                  10 ??? (in iTunes) [0x1081bb389]
                                                                    10 ??? (in iTunes) [0x107e7748e]
                                                                      10 AVCFAssetImageGeneratorCopyCGImageAtTime + 72 (in AVFoundationCF) [0x108ff95e9]
                                                                        10 generator_copyCGImageAtTime + 215 (in AVFoundationCF) [0x108ffa31d]
                                                                          10 ??? (in MediaToolbox) [0x7fff980da33e]
                                                                            10 ??? (in MediaToolbox) [0x7fff980d9d75]
                                                                              10 FigSemaphoreWaitRelative + 181 (in CoreMedia) [0x7fff9797fd85]
                                                                                10 WaitOnCondition + 14 (in CoreMedia) [0x7fff9797fb8d]
                                                                                  10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4204f      DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff933b414e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8bb907e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x4205e    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x4206a    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107be6b2b]
                10 ??? (in iTunes) [0x107bd649a]
                  10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4206d    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 __select + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fdf2]
      Kernel stack:
        10 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x42070    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107beecaa]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x42097    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 _ZL13startIOThreadPv + 148 (in CoreVideo) [0x7fff91c4785d]
              10 CVDisplayLink::runIOThread() + 710 (in CoreVideo) [0x7fff91c47b3c]
                10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4209f    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x1084af8dd]
                10 ??? (in iTunes) [0x1084af8b8]
                  10 ??? (in iTunes) [0x107bd63d6]
                    10 ??? (in iTunes) [0x107bd649a]
                      10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x420a0    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x107cbc9cd]
              10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x420a1    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6eb6]
                10 ??? (in iTunes) [0x108339db5]
                  10 ??? (in iTunes) [0x1083393c0]
                    10 __select + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fdf2]
      Kernel stack:
        10 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x420a5    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x10832ba9e]
                10 ??? (in iTunes) [0x10832b8fb]
                  10 __accept + 10 (in libsystem_kernel.dylib) [0x7fff8bb8f47a]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 accept_nocancel + 469 (in mach_kernel) [0xffffff80005876f5]
              10 msleep + 119 (in mach_kernel) [0xffffff8000552a27]
                10 wakeup + 267 (in mach_kernel) [0xffffff80005523cb]
                  10 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                    10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                      10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                        10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x420a6    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x10832ba9e]
                10 ??? (in iTunes) [0x10832b8fb]
                  10 __accept + 10 (in libsystem_kernel.dylib) [0x7fff8bb8f47a]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 accept_nocancel + 469 (in mach_kernel) [0xffffff80005876f5]
              10 msleep + 119 (in mach_kernel) [0xffffff8000552a27]
                10 wakeup + 267 (in mach_kernel) [0xffffff80005523cb]
                  10 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                    10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                      10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                        10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x420a9    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x420ce    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x420df    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x420f0    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x4210a    
      User stack:
        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4210b    
      User stack:
        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4210c    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 __NSThread__main__ + 1575 (in Foundation) [0x7fff8ea986c6]
              10 -[NSThread main] + 68 (in Foundation) [0x7fff8ea9874e]
                10 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335 (in Foundation) [0x7fff8eaa3ffb]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x42110    
      User stack:
        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4219e    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6eb6]
                10 ??? (in iTunes) [0x108339d10]
                  10 ??? (in iTunes) [0x108339556]
                    10 ??? (in iTunes) [0x107bd63d6]
                      10 ??? (in iTunes) [0x107bd649a]
                        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x421a1    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6eb6]
                10 ??? (in iTunes) [0x108339d10]
                  10 ??? (in iTunes) [0x108339556]
                    10 ??? (in iTunes) [0x107bd63d6]
                      10 ??? (in iTunes) [0x107bd649a]
                        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x421a2    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6eb6]
                10 ??? (in iTunes) [0x108339d10]
                  10 ??? (in iTunes) [0x108339556]
                    10 ??? (in iTunes) [0x107bd63d6]
                      10 ??? (in iTunes) [0x107bd649a]
                        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x42231    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x423ff    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6e26]
                10 ??? (in iTunes) [0x10837b0e5]
                  10 ??? (in iTunes) [0x10837b03b]
                    10 ??? (in iTunes) [0x10837b1b3]
                      10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x42f91    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x42f92    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        9 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
        1 hndl_mach_scall64 + 19 (in mach_kernel) [0xffffff80002d8383]
          1 thread_set_child + 336 (in mach_kernel) [0xffffff80002aeb80]
            1 mach_msg_overwrite_trap + 442 (in mach_kernel) [0xffffff800021bc5a]
              1 ipc_mqueue_receive + 63 (in mach_kernel) [0xffffff80002157ff]
                1 thread_block_reason + 275 (in mach_kernel) [0xffffff800022f383]
                  1 thread_go + 608 (in mach_kernel) [0xffffff800022dfd0]
                    1 processor_idle + 149 (in mach_kernel) [0xffffff800022d2e5]
                      1 machine_idle + 163 (in mach_kernel) [0xffffff80002c4213]
      Thread 0x42f9a    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6eb6]
                10 ??? (in iTunes) [0x107ebe06b]
                  10 ??? (in iTunes) [0x107ebd43a]
                    10 ??? (in iTunes) [0x107f84bdd]
                      10 ??? (in iTunes) [0x107f86d5d]
                        10 ??? (in iTunes) [0x107bd63d6]
                          10 ??? (in iTunes) [0x107bd649a]
                            10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x42fb6    
      User stack:
        10 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff902a1b85]
          10 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8bb90192]
      Kernel stack:
        10 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x42ffb    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 figThreadMain + 385 (in CoreMedia) [0x7fff97980b22]
              10 ??? (in MediaToolbox) [0x7fff98066e57]
                10 FigSemaphoreWaitRelative + 181 (in CoreMedia) [0x7fff9797fd85]
                  10 WaitOnCondition + 14 (in CoreMedia) [0x7fff9797fb8d]
                    10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x42ffc    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 figThreadMain + 385 (in CoreMedia) [0x7fff97980b22]
              10 ??? (in VideoToolbox) [0x7fff8f7b27a2]
                10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x4300b    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 figThreadMain + 385 (in CoreMedia) [0x7fff97980b22]
              10 ??? (in MediaToolbox) [0x7fff97ffaaa4]
                10 FigSemaphoreWaitRelative + 181 (in CoreMedia) [0x7fff9797fd85]
                  10 WaitOnCondition + 14 (in CoreMedia) [0x7fff9797fb8d]
                    10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x107bcd000 -        0x108c57fef  com.apple.iTunes 10.5.3 (10.5.3) <F2A947DF-4408-401C-43EF-340F966C91CC> /Applications/iTunes.app/Contents/MacOS/iTunes
             0x108fe4000 -        0x109010ff7  com.apple.avfoundationcf 2.0 (63.1) <B36CB7A2-C5EB-3BB6-924B-531868A092EB> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
          0x7fff8bb79000 -     0x7fff8bb99fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8c58a000 -     0x7fff8c75efff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8ea3e000 -     0x7fff8ed57ff7  com.apple.Foundation 6.7.1 (833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8edfc000 -     0x7fff8f126ff7  com.apple.HIToolbox 1.8 (???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8f73e000 -     0x7fff8fb70fef  com.apple.VideoToolbox 1.0 (705.61) <1A70CA82-C849-3033-8598-37C5A72637CC> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
          0x7fff90250000 -     0x7fff9032dfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff91c46000 -     0x7fff91c6eff7  com.apple.CoreVideo 1.7 (70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
          0x7fff933b2000 -     0x7fff933c0fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff96b12000 -     0x7fff97716fff  com.apple.AppKit 6.7.3 (1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff97962000 -     0x7fff979a9ff7  com.apple.CoreMedia 1.0 (705.61) <0C34B0D4-DB8A-33C7-B67B-F443AD86482C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
          0x7fff97f95000 -     0x7fff98333fef  com.apple.MediaToolbox 1.0 (705.61) <F48F2150-0573-354C-BBB2-BA52DD0FD0AB> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    Process:         AirPort Base Station Agent [190]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    UID:             501
      Thread 0x6e0        DispatchQueu

    Turns out the podcast I was downloading was corrupted. Deleted the podcast and all was well.
    Of course I did a complete software reinstall anyway(!) :)

  • Photoshop Extended CS6 Crashes Instantly with no Error Report (Vid Inside)

    Hello,
    I have a single user license for Photoshop Extended CS6 and have never had problems with it until now.  Yesterday I installed the Creative Cloud package and a trial version of Adobe Premiere Pro and since then I have had an issue with Photoshop CS6.  I have uninstalled all Adobe Products on the machine and reinstalled PS Extended but still have the same issue.  I have attached a video where you will see what happens.  I open the program and after a couple of seconds it closes by itself with no warning or error message after.  I did notice however that if I open a menu (in the video the help menu then System Info) the program will remain open until I close said window.  I have tried uninstalling, system restore and the cleaning tool recommended by Adobe.  I'm not sure what else to do at this point.  Any help would be greatly appreciated, thanks.
    System Info from PS:
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: AMD CPU Family:15, Model:1, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 3624 MHz
    Built-in memory: 16365 MB
    Free memory: 12981 MB
    Memory available to Photoshop: 14741 MB
    Memory used by Photoshop: 60 %
    Image tile size: 132K
    Image cache levels: 4
    The GPU Sniffer crashed on 8/1/2013 at 8:07:22 PM
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 6800 Series
    Display: 2
    Display Bounds:=  top: 0, left: 1920, bottom: 768, right: 3280
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1080, right: 1920
    Video Card Number: 1
    Video Card: AMD Radeon HD 6800 Series
    OpenCL Unavailable
    Driver Version: 12.104.0.0
    Driver Date: 20130328000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 6800 Series
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: 92628040153058858343
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\Matt\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 1.82T, 1.32T free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112 
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0 
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654 
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0 
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56 
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0 
       boost_signals.dll   DVA Product   6.0.0 
       boost_system.dll   DVA Product   6.0.0 
       boost_threads.dll   DVA Product   6.0.0 
       cg.dll   NVIDIA Cg Runtime   3.0.00007 
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007 
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0 
       dvacore.dll   DVA Product   6.0.0 
       dvamarshal.dll   DVA Product   6.0.0 
       dvamediatypes.dll   DVA Product   6.0.0 
       dvaplayer.dll   DVA Product   6.0.0 
       dvatransport.dll   DVA Product   6.0.0 
       dvaunittesting.dll   DVA Product   6.0.0 
       dynamiclink.dll   DVA Product   6.0.0 
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615 
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615 
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A) 
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0 
       LogSession.dll   LogSession   2.1.2.1640 
       mediacoreif.dll   DVA Product   6.0.0 
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1 
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1 
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       pdfsettings.dll   Adobe PDFSettings   1.04 
       Photoshop.dll   Adobe Photoshop CS6   CS6 
       Plugin.dll   Adobe Photoshop CS6   CS6 
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383 
       PSArt.dll   Adobe Photoshop CS6   CS6 
       PSViews.dll   Adobe Photoshop CS6   CS6 
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406 
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406 
       TfFontMgr.dll   FontMgr   9.3.0.113 
       TfKernel.dll   Kernel   9.3.0.113 
       TFKGEOM.dll   Kernel Geom   9.3.0.113 
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113 
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113 
    Required plug-ins:
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Collada 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Difference Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Embed Watermark 4.0
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Measurement Core 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mezzotint 13.0
       MMXCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Picture Package Filter 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Sumi-e 13.0
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variations 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       WIA Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash: NONE
    Installed TWAIN devices: NONE
    Computer Info:
    Video of issue:

    When trying to update the option is unavailable in the program itself
    I uninstalled all Adobe products as that was recommended in another thread and reinstalled it from this location Download CS6 products
    I download File 1 (of 2) and that is the PS CS6 download that accepts my serial number but then continues to close instantly.
    After downloading File 2 (of 2), called Photoshop_13_LS16.exe, I attempt to open it and receive this error message:
    I have managed to manually install update 13.0.1.3 as it was the latest version I could find on the site Adobe - Photoshop : For Windows
    Even with that it still crashes instantly.

  • Can anyone help me with this error report and explain what it means?

    My computer shut down and restarted because of a problem. This is the error report but I have no idea what it means. Could someone help decipher it for me? Thank you!
    Anonymous UUID:       46752625-A4F7-D0FB-7AB1-D5A863BD4512
    Thu Oct 31 16:28:49 2013
    panic(cpu 1 caller 0xffffff80182dc19e): Kernel trap at 0xffffff801810e058, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0xffffff80e2d7c548, CR3: 0x000000007ca50000, CR4: 0x0000000000000660
    RAX: 0xffffff80e2d6c000, RBX: 0xffffff803098be10, RCX: 0x0000000000000200, RDX: 0x0000000000001000
    RSP: 0xffffff8094e63c88, RBP: 0xffffff8094e63d00, RSI: 0xffffff80e2d7c548, RDI: 0xfffffe809f50e000
    R8:  0x0000000000000001, R9:  0x0000000000000800, R10: 0x000000000011cfbe, R11: 0x0000000000000100
    R12: 0x0000000000001000, R13: 0x0000000000001000, R14: 0x000000000c005a27, R15: 0x0000000000000000
    RFL: 0x0000000000010206, RIP: 0xffffff801810e058, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0xffffff80e2d7c548, Error code: 0x0000000000000000, Fault CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff8094e63910 : 0xffffff8018222f69
    0xffffff8094e63990 : 0xffffff80182dc19e
    0xffffff8094e63b60 : 0xffffff80182f3606
    0xffffff8094e63b80 : 0xffffff801810e058
    0xffffff8094e63d00 : 0xffffff80182700fb
    0xffffff8094e63d30 : 0xffffff8018271636
    0xffffff8094e63d50 : 0xffffff801827824e
    0xffffff8094e63f20 : 0xffffff80182dc5dc
    0xffffff8094e63fb0 : 0xffffff80182f350b
    BSD process name corresponding to current thread: mds_stores
    Mac OS version:
    13A603
    Kernel version:
    Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Kernel UUID: 1D9369E3-D0A5-31B6-8D16-BFFBBB390393
    Kernel slide:     0x0000000018000000
    Kernel text base: 0xffffff8018200000
    System model name: MacBookPro7,1 (Mac-F222BEC8)
    System uptime in nanoseconds: 86092477197784
    last loaded kext at 80410334291016: com.apple.driver.AppleUSBCDC          4.2.1b2 (addr 0xffffff7f9a6a4000, size 20480)
    last unloaded kext at 80471002949545: com.apple.driver.AppleUSBCDC          4.2.1b2 (addr 0xffffff7f9a6a4000, size 16384)
    loaded kexts:
    com.rim.driver.BlackBerryUSBDriverInt          0.0.68
    com.apple.filesystems.smbfs          2.0.0
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AGPM          100.14.11
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleBluetoothMultitouch          80.14
    com.apple.iokit.IOBluetoothSerialManager          4.2.0f6
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleHDA          2.5.2fc2
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleUSBDisplays          360.8.14
    com.apple.GeForceTesla          8.1.8
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.driver.AppleMikeyDriver          2.5.2fc2
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.SMCMotionSensor          3.0.4d1
    com.apple.driver.AppleUSBTCButtons          240.2
    com.apple.driver.AppleIRController          325.7
    com.apple.driver.AppleUSBTCKeyboard          240.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.driver.AppleUSBCardReader          3.3.5
    com.apple.iokit.SCSITaskUserClient          3.6.0
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.4.0
    com.apple.iokit.AppleBCM5701Ethernet          3.6.9b9
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.driver.AppleUSBHub          650.4.4
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleAHCIPort          2.9.5
    com.apple.driver.AppleUSBEHCI          650.4.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleUSBOHCI          650.4.1
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleSMBIOS          2.0
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          170.15
    com.apple.driver.AppleHIDKeyboard          170.15
    com.apple.AppleGraphicsDeviceControl          3.4.12
    com.apple.kext.triggers          1.0
    com.apple.driver.IOBluetoothHIDDriver          4.2.0f6
    com.apple.driver.AppleMultitouchDriver          245.13
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.driver.DspFuncLib          2.5.2fc2
    com.apple.vecLib.kext          1.0.0
    com.apple.driver.AppleHDAController          2.5.2fc2
    com.apple.iokit.IOHDAFamily          2.5.2fc2
    com.apple.nvidia.classic.NVDANV50HalTesla          8.1.8
    com.apple.nvidia.classic.NVDAResmanTesla          8.1.8
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.driver.AppleUSBAudio          2.9.3f17
    com.apple.iokit.IOAudioFamily          1.9.4fc11
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOBluetoothFamily          4.2.0f6
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.driver.IOPlatformPluginFamily          5.5.1d27
    com.apple.iokit.IONDRVSupport          2.3.6
    com.apple.iokit.IOGraphicsFamily          2.3.6
    com.apple.driver.AppleSMC          3.1.6d1
    com.apple.driver.AppleUSBMultitouch          240.6
    com.apple.iokit.IOUSBHIDDriver          650.4.4
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.0
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.6.0
    com.apple.iokit.IOEthernetAVBController          1.0.3b3
    com.apple.driver.mDNSOffloadUserClient          1.0.1b4
    com.apple.iokit.IO80211Family          600.34
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOUSBUserClient          650.4.4
    com.apple.driver.NVSMU          2.2.9
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.6.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.10
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOReportFamily          21
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.driver.AppleUSBComposite          650.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.0
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.0
    com.apple.iokit.IOUSBFamily          650.4.4
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.pthread          1
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro7,1, BootROM MBP71.0039.B0E, 2 processors, Intel Core 2 Duo, 2.66 GHz, 4 GB, SMC 1.62f7
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x384A53463235363634485A2D314731443120
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x384A53463235363634485A2D314731443120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 23 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9750420AS, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Built-in iSight
    USB Device: Hub
    USB Device: Hub
    USB Device: Apple LED Cinema Display
    USB Device: Display iSight
    USB Device: Display Audio
    USB Device: Internal Memory Card Reader
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: IR Receiver
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus:

    Do you know where else this could be located? I don't even have a Blackberry so I am not sure how that even got there. I used to have one a couple of years ago but this problem just happened today.
    I went to the Extensions folder but I didn't see it in there anywhere. I had a couple extensions folders but they are located at Library/App Suppt/Google/Chrome/Default/Extensions and Library/Safari/Extensions but when I go into those folders the names of the files are things like pmejhjjecaldkllonlokhkgldsbkcni (that is the name of a folder and there are about 8 of them).
    Thanks so much for your help!

Maybe you are looking for

  • Transfer order of multiple materials between WM and MM warehouses

    Hi i have a requirement to manage with a custom program or with standard transaction the transfer of multiple materials (KITS) between WM warehouse and MM warehouse and inside the same warehouse . How can i achieve this functionality Can you advice ?

  • Web Service in all mandants

    Hi, I've created a web service from a function module. The problem is that the web service gets called only in mandant 200, but I want it to be called in mandant 100. In wsadmin in mandant 100 the webservice is not visible, in mandant 200 it is visib

  • Still trying to seperate hubby's iPhone contacts and apps from mine!

    Still trying to seperate hubby's iPhone contacts and apps from mine! Read all the previous messages, did everything suggested, have two entirely different accounts, two names, two passwords, etc. Can't use two different computers to sync because he's

  • Cache coordination in 10.1.3

    Hi, I am using toplink cache coordination feature using JMS in version 10.1.3 My sessions.xml for the cache coordination is given below <?xml version="1.0" encoding="UTF-8"?> <toplink-sessions version="9.0.4" xmlns:xsd="http://www.w3.org/2001/XMLSche

  • Error Message on Mac Installation of Studio 8 "Flash Player" could not be launched

    When I try to install Studio 8 on a new MacBook with Mac OS/X software, I get the following error message: "Flash Player" could not be launched because of a shared library error <Flash Carbon Player> Please help me get past this. Thanks.