Notification: "The report deployment process in in progress"

Hi All,
We're implementing Service manager and we have an issue with the reporting management packs.
Upon opening the Service manager console we're getting the error:
"The report deployment process in in progress. To determine when management pack deployment is complete, see the procedure in the service manager deployment guide. You can view reports after management packs have been deployed."
I've consulted the guide and the MPsyncjobs tasks runs and completes in under 1 minute, the Get-SCDWJob command returns the following:
BatchId Name                 Status       CategoryName     StartTime
6490    MPSyncJob            Not Started  Synchronization
6482    DWMaintenance        Not Started  Maintenance
6488    Load.Common          Not Started  Load
6484    Load.OMDWDataMart    Not Started  Load
6485    Load.CMDWDataMart    Not Started  Load
6492    Extract_DW_SBCSMDW   Not Started  Extract
6486    Transform.Common     Not Started  Transform
In the GUI under "data warehouse jobs" the job MPSyncJob is Not started but in the details section under Job Progress it's stuck at 48/48 and looks like it's running.
I'm new to System Center so if anyone could point me into the right direction to work out how to get reporting working that would be great.
Thanks.

Modified the required files as per the specifiacation in both xml and properties files .
Deployed the service successfully.
But problem is it's not picking the file from the source server.
Please guide me how to test the service...in the bpel after deploying the service...
how the check the service log ?

Similar Messages

  • Report deployment process failed to request management pack list from SQL RS Server. The operation will be retried.

    I am encountering following event log in SC2012 Operations Manager and Reporting Tab is not loading in Operations Console.
    Report deployment process failed to request management pack list from SQL RS Server. The operation will be retried.
    Exception 'WebException': The request failed with HTTP status 401: Unauthorized.

    Hi,
    Can you acess http://reportserver/reports from a web browser on the OpsMgr server?
    Moreover,you can use a UDL file to test various connectivity scenarios, create a simple text file, rename the extension from TXT to UDL, fill out the necessary information on the connection tab then test the connection, and troubleshoot
    as necessary if it fails to connect.
    For more information, please review the link below:
    The easy way to test SQL connectivity
    http://blogs.technet.com/b/michaelgriswold/archive/2014/01/06/the-easy-way-to-test-sql-connectivity.aspx
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • How to improve the ODSI deployment process ?

    At at moment we are using the attached script to create new dataspaces and deploy new data services into our environment.
    Our environment is running 4 managed server cluster in the SUN Unix env.
    We have noticed the process takes a lot of time. For example the deployment of the new data service may take up to 20-30 minutes.
    The process is always putting the WebLogic servers into *"ADMIN"* mode that prevents access to other data spaces and applications.
    And on some occasions the deployment does not completes leaving the server in the ADMIN mode.
    Is there any way we can improve the process to avoid locking the server into the ADMIN mode and possibly speed up the deployment?
    Thanks in advance Peter L
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Our script
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    import wlstModule as wlst
    from java.io import FileInputStream
    import sys, os
    def loadProps(configPropFile):
    propInputStream = FileInputStream(configPropFile)
    configProps = Properties()
    configProps.load(propInputStream)
    return configProps
    script_dir =os.getenv('SCRIPT_DIR')
    if script_dir == '':
    print "The environment variable SCRIPT_DIR is not set"
    print "Please go the the domain directory and run setControlEnv.sh"
    sys.exit()
    else:
    controlScriptFile=script_dir + '/controlscript.properties'
    if len(sys.argv) > 1:
    importConfigFile=sys.argv[1]
    else:
    print "Please enter the property file path"
    sys.exit()
    try:
    controlScriptProp = loadProps(controlScriptFile)
    except:
    print "Fail to load the property file: ", controlScriptFile
    sys.exit()
    try:
    exportConfigProp = loadProps(importConfigFile)
    except:
    print "Fail to load the property file: ", importConfigFile
    sys.exit()
    try:
    execfile(script_dir + '/ODSICommonCommands.py')
    except:
    print "Fail to execute file :" + script_dir + "/ODSICommonCommands.py"
    sys.exit()
    def createDataSpace2(dataspaceName, targetName, targetType):
    moveToDomainServiceMBean()
    targets = wlst.get('Targets')
    targets.clear()
    from com.bea.dsp.management.deployment.dataspace import DeploymentTarget
    cl_target=DeploymentTarget(targetName, DeploymentTarget.Kind.valueOf(targetType))
    targets.add(cl_target)
    wlst.invoke('createDataSpace',[dataspaceName,targets],['java.lang.String','java.util.Set'])
    def existDataSpace(dataspaceName):
    moveToDomainServiceMBean()
    names = wlst.invoke('listDataSpaceNames',[],[])
    return names.contains(dataspaceName)
    def activateDataSpace(dataspaceName):
    moveToDomainServiceMBean()
    from com.bea.dsp.management.deployment.dataspace import ActivationOptions
    activateOptions = ActivationOptions.valueOf('CLIENT')
    wlst.invoke('activateDataSpace',[dataspaceName, activateOptions],['java.lang.String', 'com.bea.dsp.management.deployment.dataspace.ActivationOptions'])
    adminUrl = controlScriptProp.get("ADMIN_URL")
    importUserConfigFile = script_dir + '/AdminConfigfile.secure'
    importUserKeyFile = script_dir + '/Adminkeyfile.secure'
    dataSpaceName=exportConfigProp.get("dataSpaceName")
    print 'Connecting to weblogic server instance...'
    connect(userConfigFile=importUserConfigFile, userKeyFile=importUserKeyFile, url=adminUrl)
    targetName = exportConfigProp.get("targetName")
    targetType = exportConfigProp.get("targetType")
    sessionName=exportConfigProp.get("sessionName")
    importJarFile=exportConfigProp.get("importJarFile")
    # Create a dataspace
    try:
    if existDataSpace(dataSpaceName):
    print 'Data Space ' + dataSpaceName + ' exists. It will be removed first.'
    deleteDataSpace(dataSpaceName)
    createDataSpace2(dataSpaceName, targetName, targetType)
    except:
    print 'Fail to create DataSpace ' + dataSpaceName + targetName + targetType +' disconnect...'
    disconnect()
    raise ValueError, 'Error Creating dataspace: ' + dataSpaceName
    # Creates a deployment session with name
    print 'Creating a deployment session...'
    createDeploymentSession(sessionName)
    #Imports a dataspace Jar into dataspace 'SampleDataspace'.
    try:
    importJarPath=os.getenv('PWD') + '/' + importJarFile
    print 'Importing ' + importJarPath +' into dataspace...'
    importDataSpace(dataSpaceName, sessionName, importJarPath)
    except Exception:
    print 'Exception, and release the session...'
    discardDeploymentSession(sessionName)
    disconnect()
    #Activates the config session
    print 'Activating the deployment session...'
    activateDeploymentSession(sessionName)
    activateDataSpace(dataSpaceName)
    # Disconnects from weblogic server.WLST will switch to offline mode
    print 'Full Deployment is Successful. Disconnecting from weblogic server...'
    disconnect()
    Edited by: user13795599 on Oct 25, 2011 12:05 PM

    Mike, I will try to do the incremental deployments but sometimes we need to delete the old dataspaces and do full deploy.
    So if run the above full deployment script all applications are suspended and the server is transition into Admin mode, and then server waits for a server lock , Seats like this forever and I have to kill the deployment process and Resume the servers:
    Don't know what causing it.Any ideas ?
    It looks like can not get a server lock ....
    Thanks Peter L
    here are the log entries:
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    +
    +
    +
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834921> <BEA-149060> <Module NB21_NET_EnabledHTTPSBasicAuth of application NB21_NET_Enabled_request_handlers successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834922> <BEA-149059> <Module NB21_NET_EnabledBasicAuth of application NB21_NET_Enabled_request_handlers is transitioning from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834922> <BEA-149060> <Module NB21_NET_EnabledBasicAuth of application NB21_NET_Enabled_request_handlers successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834923> <BEA-149059> <Module NB21_NET_EnabledHTTPS of application NB21_NET_Enabled_request_handlers is transitioning from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834924> <BEA-149060> <Module NB21_NET_EnabledHTTPS of application NB21_NET_Enabled_request_handlers successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834924> <BEA-149059> <Module NB21_NET_Enabled of application NB21_NET_Enabled_request_handlers is transitioning from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834925> <BEA-149060> <Module NB21_NET_Enabled of application NB21_NET_Enabled_request_handlers successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834926> <BEA-149059> <Module NB21_NET_Enabled_dspejb.jar of application NB21_NET_Enabled_request_handlers is transitioning from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834927> <BEA-149060> <Module NB21_NET_Enabled_dspejb.jar of application NB21_NET_Enabled_request_handlers successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834931> <BEA-149059> <Module Dummy of application dsp_config is transitioning from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834932> <BEA-149060> <Module Dummy of application dsp_config successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Notice> <WebLogicServer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834961> <BEA-000365> <Server state changed to ADMIN>
    ####<Oct 25, 2011 4:51:00 PM EDT> <Info> <ODSI> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319575860089> <BEA-000000> <financialcontractinquiryv1> <DSPAuditEvent timestamp: Tue Oct 25 16:51:00 EDT 2011 severity: INFORMATION id: financialcontractinquiryv1:91:Tue Oct 25 16:51:00 EDT 2011 {
    common/application {
    user: <anonymous>
    eventkind: dataspace
    server: dataserver1
    admin/dataspace {
    operation: delete
    admin/dataspace {
    name: financialcontractinquiryv1
    common/time {
    timestamp: Tue Oct 25 16:51:00 EDT 2011
    duration: 0
    }>
    ####<Oct 25, 2011 4:51:00 PM EDT> <Notice> <ODSI> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319575860188> <BEA-000000> <financialcontractinquiryv1> <Audit stopped.>
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <WorkManager> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861001> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "financialcontractinquiryv1_request_handlers">
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <WorkManager> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861003> <BEA-002903> <Creating WorkManager from "lowPriority" WorkManagerMBean for application "financialcontractinquiryv1_request_handlers">
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861063> <BEA-149059> <Module financialcontractinquiryv1_dspejb.jar of application financialcontractinquiryv1_request_handlers is transitioning from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <EJB> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861198> <BEA-010008> <EJB Deploying file: financialcontractinquiryv1_dspejb.jar>
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861748> <BEA-149060> <Module financialcontractinquiryv1_dspejb.jar of application financialcontractinquiryv1_request_handlers successfully transitioned from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861748> <BEA-149059> <Module financialcontractinquiryv1 of application financialcontractinquiryv1_request_handlers is transitioning from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <HTTP> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861761> <BEA-101363> <Application: financialcontractinquiryv1_request_handlers, WebApp: financialcontractinquiryv1 has context-root specified in application.xml: "financialcontractinquiryv1". The context-root specified in weblogic.xml: "financialcontractinquiryv1" will be ignored.>
    ####<Oct 25, 2011 4:51:02 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575862525> <BEA-149060> <Module financialcontractinquiryv1 of application financialcontractinquiryv1_request_handlers successfully transitioned from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:02 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575862526> <BEA-149059> <Module financialcontractinquiryv1HTTPS of application financialcontractinquiryv1_request_handlers is transitioning from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:02 PM EDT> <Info> <HTTP> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575862538> <BEA-101363> <Application: financialcontractinquiryv1_request_handlers, WebApp: financialcontractinquiryv1HTTPS has context-root specified in application.xml: "financialcontractinquiryv1HTTPS". The context-root specified in weblogic.xml: "financialcontractinquiryv1HTTPS" will be ignored.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863185> <BEA-149060> <Module financialcontractinquiryv1HTTPS of application financialcontractinquiryv1_request_handlers successfully transitioned from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863186> <BEA-149059> <Module financialcontractinquiryv1BasicAuth of application financialcontractinquiryv1_request_handlers is transitioning from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <HTTP> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863200> <BEA-101363> <Application: financialcontractinquiryv1_request_handlers, WebApp: financialcontractinquiryv1BasicAuth has context-root specified in application.xml: "financialcontractinquiryv1BasicAuth". The context-root specified in weblogic.xml: "financialcontractinquiryv1BasicAuth" will be ignored.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863851> <BEA-149060> <Module financialcontractinquiryv1BasicAuth of application financialcontractinquiryv1_request_handlers successfully transitioned from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863852> <BEA-149059> <Module financialcontractinquiryv1HTTPSBasicAuth of application financialcontractinquiryv1_request_handlers is transitioning from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <HTTP> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863867> <BEA-101363> <Application: financialcontractinquiryv1_request_handlers, WebApp: financialcontractinquiryv1HTTPSBasicAuth has context-root specified in application.xml: "financialcontractinquiryv1HTTPSBasicAuth". The context-root specified in weblogic.xml: "financialcontractinquiryv1HTTPSBasicAuth" will be ignored.>
    ####<Oct 25, 2011 4:51:04 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575864662> <BEA-149060> <Module financialcontractinquiryv1HTTPSBasicAuth of application financialcontractinquiryv1_request_handlers successfully transitioned from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:04 PM EDT> <Info> <DeploymentService> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575864828> <BEA-290063> <commit for request '1,319,575,828,129' will not proceed further since its requires restart flag is set.>
    ####<Oct 25, 2011 4:55:40 PM EDT> <Alert> <WebLogicServer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576140100> <BEA-000396> <Server lock has been requested by <WLS Kernel>>
    ####<Oct 25, 2011 4:55:40 PM EDT> <Alert> <WebLogicServer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576140106> <BEA-000396> <Server lock has been requested by <WLS Kernel>>
    ####<Oct 25, 2011 5:00:43 PM EDT> <Info> <Diagnostics> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576443275> <BEA-320143> <Scheduled 1 data retirement tasks as per configuration.>
    ####<Oct 25, 2011 5:00:43 PM EDT> <Info> <Diagnostics> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576443303> <BEA-320144> <Size based data retirement operation started on archive HarvestedDataArchive>
    ####<Oct 25, 2011 5:00:43 PM EDT> <Info> <Diagnostics> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576443304> <BEA-320145> <Size based data retirement operation completed on archive HarvestedDataArchive. Retired 0 records in 1 ms.>
    ####<Oct 25, 2011 5:00:43 PM EDT> <Info> <Diagnostics> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576443305> <BEA-320144> <Size based data retirement operation started on archive EventsDataArchive>
    ####<Oct 25, 2011 5:00:43 PM EDT> <Info> <Diagnostics> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576443306> <BEA-320145> <Size based data retirement operation completed on archive EventsDataArchive. Retired 0 records in 1 ms.>
    ####<Oct 25, 2011 5:00:50 PM EDT> <Info> <Health> <ei00d71> <dataserver1> <weblogic.GCMonitor> <<anonymous>> <> <> <1319576450148> <BEA-310002> <27% of the total memory in the server is free>
    ####<Oct 25, 2011 5:01:50 PM EDT> <Info> <Health> <ei00d71> <dataserver1> <weblogic.GCMonitor> <<anonymous>> <> <> <1319576510160> <BEA-310002> <48% of the total memory in the server is free>

  • How to generate the reports in each process

    Dear Experts,
    In my client i am having 4 different process. client want each process wise report. One of our colleague  is telling that one account is sufficient for all the Process. i am having a doubt
    1. How he could generate the reports each process wise?
    In VKOA settings i want to assigne 4 accounts to
    condition type -KOFI          account key - ERL
    What is the requirements?
    Thanks in Advance.
    Thanks&Regards,
    Venkat

    i am having 4 different process.
       client want each process wise report
    How are you differentiating this ??   By sales area ???  By document type ???  There are certain standard reports like
    a)  MCTA
    b)  MCTE
    c)  MC+E
    d)  MC+Q
    which you can explore whether they meet your requirement.
    thanks
    G. Lakshmipathi

  • How to schedule the process chain fr the report

    hai experts,
    i have a query which i need to generate for every five hours? i know that we can generate the report thr process chain but i dont know how to build that..
    my question is how to schedule the report,how to build the process chain,....
    can any one plz tell me how to start this generating report for every five hours
    thanks in advance..points will be alloted surely ,i need this urgently..
    Suri

    First of all you need to Identify the InfoObjects if you want to take up Master Data Loads, and if you want take up transaction loads then select the Data Targets to which the data has to be updated. Then plan the dataflow accordingly.
    You want to create a Process Chain, Go to RSPC, and then select the create option and from the Process categories available on the left handside drag and drop the Start process, then define the Variant for the same. In the same way you need to identify the other Process Types available on the lefthand side. For Eg: Start Process>Load to ODS>Activation of ODS Data>Delete Indexes for the InfoCube>Load to InfoCube>Create Indexes>Delete Overlapping Req-->Agg. Rollup.
    This is how you need to specify the dataflow, several other Process Types also included based on the requirement For Eg: Sending Mail Alerts when the Job is Success or Terminated.
    Also, have a look at this links to make urself clear about the steps in creating Process Chain.
    http://help.sap.com/saphelp_nw04/helpdata/en/67/13843b74f7be0fe10000000a114084/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/events/sap-teched-03/using%20process%20chains%20in%20sap%20business%20information%20warehouse
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/19683495-0501-0010-4381-b31db6ece1e9
    Hope it helps.
    Regards,
    Archna

  • Automating a report generation process

    Hello guys!
    I just took on a new role in a company which requires me to deal with SAP BEx Analyzer.
    I'm completely new to this, but having gone through the report generation process, I feel the method I'm using is horribly tedious and I believe there should be a way to automate the process since it's a recurring monthly procedure.
    What I have to do currently to get the report is:
    1. Launch SAP Logon
    2. Filter the Connection which i want to find (i'll call it "PQI").
    3. Key in my Username, Password and Language
    4. Select the third container in the folder (i'll call it "03")
    5. After I open 03, it launches Excel with BEx Analyzer add in initialized. The report is currently empty
    6. Select Change Variable Values, fill in Fiscal Year, Month and Accounting Area.
    7. After which it will take like 15minutes to query, and a about 16,000 ++ rows are generated.
        Problem #1: The format isn't good, i have to right click on every cell that writes "Result" with yellow highlight and under it's properties I have to select         "Result Rows" > "Always Suppress".  (Ref1.PNG)
         This is horribly painful considering I have to wait about 1 minute for each response (it's very slow). I have to repeat this for every yellow column in the
         report. Can this be automated or done in 1 step?
    8. After doing so for all rows, I have to right click the table and select "Query Properties" and shift all the Free Characteristics (about 10) to "Rows".
         BUT, I can't do all at once, it will say "out of memory" and crash. I have to do so 2-3 rows at a time. Each time it'll take about 10-15 minutes to
         populate. It's very painful.
    9. After it's all done, i have to repeat step 7 again, which is to Suppress all result rows (Ref2.PNG)
    10.Followed by which I have to go to Query Properties > Display Options > Uncheck "supress repeated key values"
    11. When that is done I have to generate a PivotTable on the data.
    I have to repeat the same steps on a monthly basis.
    Is there a way I can script it to run the process for me monthly? Or any other way to make it less tedious?
    Thanks so much for any input or suggestion guys!
    Warmest Regards
    Brandon

    Suppressing Result Rows can be done in Query designer itself for one time. You need not to do after you get the report every time.
    If you always expect some 10 free chars constantly, i suggest you to insert them in Rows pane in Query designer but not in Analyzer. So that your report layout will be taking care with all settings what you want to do after the report generates in Excel. I mean you will get desired layout when you run the report first time itself.
    Suppress repeated key values also can be done in Query designer itself one time.
    By doing above, your report execution will not be tedious and it will be minimizing your efforts.
    Over all, What I have understood is, you are doing all sorts of settings in Analyzer after getting such huge volume of data, by which it gives you crash error.
    With all above steps, you can run your report with all pre-defined settings.

  • What happens to the report if the underlying stored procedure to execute the report take atleast 3 hrs to run

    Hi,
    I have a report which is calling a stored procedure..
    Stored procedure exceutes 4-5 stored procedure and then returns the count each procedure it ran using union all statement... The stored procedure takes around 3-4 hrs to run because it is looking at quarterly data and YTD data.
    So once the report is kicked off and the procedure behind it runs and runs how will communicate to the report to show the final data... the final data will just be 5 rows with counts.
    I think we are running into a issue where the stored procedure runs and runs and then the report goes into la la land and has no clue what to do...
    Can you please shed some light on this..
    Thanks
    Karen

    Hi Karen,
    When we render a report, the report would process the following procedures:
    Open connections to data source and reading data rows from data extensions for all datasets, means retrieve data. Then process the engine requests, including the tablix, grouping, sorting, filtering, aggregations and subreport processing, means process report.
    Finally, render the report, including the pagination modules and on-demand expression evaluations.
    So the report rending has to wait until the stored procedure is executed. To improve the performance, we can consider the three aspects:
    Improve the performance of the stored procedures. Such as index and join. For better support, I suggest you can post a new thread about this issue in Transact-SQL forum at:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=transactsql. It is appropriate and more experts will assist you.
    Simplify the report. For example, avoid including a reference to [&TotalPages] or any complex expressions in the page header and page footer. For more details, please see the following document:
    http://technet.microsoft.com/en-us/library/bb522806(v=sql.105).aspx
    Using cashing if you have a long-running query that cannot be tuned further. For more details, please refer to the following article:
    http://msdn.microsoft.com/en-us/library/ms159241(v=sql.110).aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Reports Server Process gets crashed in 10.1.2.3.0

    Hi,
    We have 5 standalone production reports servers (10.1.2.3) load balanced through netscalar. We observed that the reports server process gets crashed intermittently which kills the reports jobs in the queue. Error as below is seen in the ipm.log under $ORACLE_HOME/opmn
    08/08/12 10:38:21 [4] Process Crashed: rep_brnors05_frs_standalone~ReportsServer~rep_brnors05_frs_standalone~1 (498925945:6108) - Restarting
    08/08/12 10:38:27 [4] Starting Process: rep_brnors05_frs_standalone~ReportsServer~rep_brnors05_frs_standalone~1 (498925946:0)
    08/08/12 10:38:34 [4] Process Alive: rep_brnors05_frs_standalone~ReportsServer~rep_brnors05_frs_standalone~1 (498925946:2836)
    Any idea wat could be causing the problem.. any configuration changes that need to be done like to set or increase some timeout parameters in the rep_server.conf, etc. Each time process crash is for exact 6 secs. It clears the failed jobs queue during this time. Do not see any jobs starting or ending during these 6 seconds.
    Reports server version - 10.1.2.3.0
    Platform - Windows
    Report server type - Standalone
    (Affecting our production environment ... Any suggestions, workarounds are highly appreciated)

    Michael,
    Below is the file change. When we set it to 'true' Viewer performed correctly.
    Jerre
    =====
    2. Then a new configuration parameter "passNullParameterAsNull" needs to be set in configuration.xml under <viewer section with default value as false and which is an optional one. Usage :
    <viewer queryRefreshPeriod="3000" queryRequestTimeout="1000" longRequestRefreshPeriod="6000" longRequestTimeout="10000" userDefinedConnections="true" passNullParameterAsNull="true" logLevel="debug" laf="dc_blaf" pageNavigation="true" switchWorksheetBehavior="prompt" defaultLocale="en" disableBrowserCaching="false" enableAppsSSOConnection="false">
    When passNullParameterAsNull="false" , that means, when null is passed as parameter from one sheet to another during drill to link, the value will be converted in between to the value which is set as "ShowNullValueAs" in second sheet. eg: if ShowNullValueAs = "" in second sheet. Null value passed from first sheet will reach as value "" in second sheet. If passNullParameterAsNull="true", then Null value will always be passed as Null to second sheet irrespective of the value of "ShowNullValueAs" in second sheet.
    =====

  • Azure deployment process: where is my ".war" compiled?

    Hi,
    We're evaluating Azure PaaS, for a java web application.
    We are trying to figure out where is the '.war' file compiled & packaged? Because we have a complex customized maven file (pom), using tricks such as automatically-generated source code. But the *final* product in a standard ".war" understandable
    to any Servlet Container with no assumption or dependencies.
    So the question please: what's the Azure deployment process 'under the hood'?
    1) Will it try to run "mvn package" on the cloud VM, which might fail due to the complexity of the maven file.
    2) Or will it just take the final "war" from my machine (not caring how the war was created) and copy it to the VM. Which is best for us.
    Thanks very much

    Hi,
    I didn't very familiar with java, if you want to deploy application, refer to
    http://msdn.microsoft.com/en-us/library/windowsazure/hh690944 for more information, 
    after deployed, we can use RDP to the Virtual Machine and see the files, if you find the files that was important with the application but not in this VM, we can consider copy it to the VM (every instances muse be the same). Hope this helps, if you find
    this didn't give you help, please feel free to let me know.
    Best Regards

  • Error: Your request could not be completed because a failure occurred while the report was being processed.

    Post Author: sagimann
    CA Forum: Deployment
    Hello,
    I'm not sure if this is due to bad deployment, but I suspect it is, at least due to bad environment.
    My env is:
    Solaris 10 64 bit
    Oracle 10g client installed under /opt/oracle/app/oracle/product/10.2.0/client_1
    BOXIR2 + FP2.6 installed under /opt/reporting, running under user 'bouser'. by the way, 'tnsping' works via that user.
    Important bouser env:
    ORACLE_HOME=/opt/oracle/app/oracle/product/10.2.0/client_1
    TNS_ADMIN=$ORACLE_HOME/network/admin
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/lib32
    I reboot the box, then start BO like so:
    cd /opt/reporting/bobje
    . setup/env.sh
    ./mysqlstartup.sh
    ./startservers
    ./tomcatstartup
    Then, I import a BIAR file with some reports, and whenever I try to open any report via infoview, I get a gray error message INSTEAD of the input param form:
    Error:
    Your request could not be completed because a failure occurred while the report was being processed. Please contact your system administrator.
    This does not occur in our BOXIR2 on Windows, which is why I'm guess it's a deployment/env issue. The main obstacle I have is: how do I diagnose this? there's nothing in the bobje/logging folder, nothing in the /var/adm/message file except for the following line:
    May  5 15:23:23 testbox1 boe_pagesd&#91;3865&#93;: &#91;ID 253862 user.error&#93; A failure occurred while the Page Server was processing report 'test report' (id=777) for user Administrator
    pls advise,
    thank you.

    The solution is to turn off the printer preference (bottom of Page Setup screen) in the Crystal Report before uploading to the Server. Thanks to: http://pinchii.com/home/2011/12/error-adding-reports-to-crystal-reports-server/
    The explanation, from a comment in the above linked blog post:
    "To elaborate more on the error, what basically happens is that the Crystal Reports engine tries to get the status of the u201Creport printeru201D aka u201Cdefault printeru201D which was present on the system when the report was created, but the printer does not exist anymore. This causes the Crystal engine to error out. By setting the report to u201CNo Printeru201D, it tells the Crystal Engine not to look for that report printer when opening the report."
    Edited by: abirdman on Feb 3, 2012 9:49 PM

  • How to develp a subreport in the same page of the main report and processed when is called

    SSRS 2012
    Hi guys,
    I am developing a report that includes a subreport.
    therefore The report is made up by 2 sections:
    1) Show a grid (several rows - may be 100 or more - and some columns). It represent high level info  (Each row represent a specific item)
    2) The user click on a Row/column (eg: Item1, to see details that must be shown as graph.
    Here the problem: Searching info about SSRS reporting for subreports, drilldown, nested report and so on, no ones accomplish the requirements for the following reasons:
    1) Subreports: NOT open in the same page. The user must <go back> to see detail for other items, such as Item 2....
    2) Nested and DrillDown: Process data as the Main report (they are hidden and displayed after user action). In my case this leads to performance problem, because: if the main report has 200 objects (it means 200 graphs processed and hidden at the same time
    for the main reports).
    3) DrillThrough and Subreport: The detail data are processed only when the user select the interested item in the main report. Here the problem: the report is shown externally.
    Please, it there any possibility to have a subreport (or anything else) to be executed in the same report as the main report and processed only when the user make action?
    Thanks for your help.

    Hi Fasttrack2,
    According to your description, there is a main report with more than 100 rows of summary information, when users click the item of the row, the report need to jump to detail information shows as graph. The problem you are facing is that you are not sure
    subreport, drilldown or drillthrough report should be used? You hope to set display detail information in the main report and keep high performance of report.
    In Reporting Services, each subreport instance is a separate query execution and a separate report processing task. Subreports are recommended when there are just a few subreport instances. We should not use subreports inside a group when there are many
    group instances, instead, consider using drillthrough reports. Drilldown reports process all data even when the data is first hidden. In order to improve the performance of the report, we can split drilldown reports into parameterized drillthrough reports,
    because Drillthrough reports do not run until a user clicks the drillthrough link in the main report.
    In this case, we can consider using drilldown or drillthrough report. In drilldown report, when we click a plus or minus button to expand or collapse a section of a report, the detail data will be displayed in place. By using drillthrough report, when we
    click the link in the main report, the detail data will be displayed, we can come back to the main report by click return button in the drillthrough report.
    Reference:
    Troubleshooting Reports: Report Performance
    Drillthrough, Drilldown, Subreports, and Nested Data Regions
    If you have any more questions, please feel free to ask.
    Best Regards,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • Mixing of interactive report and classic report fails the RESET PAGINATION process.

    I have a tab page where i got 3 different reports REPORT_A (classic), REPORT_B(interactive)  and REPORT_C (CLASSIC) in the same alphabetic order. I have a reset pagination page process which will always fire (without any condition) when you visit the page via tab.
    The reset pagination process which exists in the before header stage is firing but not resetting the interactive report. It does affect the subsequent classic report REPORT_C as well. The REPORT_A would reset pagination fine since it exists before the interactive report. Is this a know bug in apex?
    I created a test demo application with exact steps to reproduce the problem. The steps are in the demo website itself.
    http://apex.oracle.com/pls/apex/f?p=56638
    U: testuser
    P: password
    Apex Version: 4.2.4.00.08
    In my real application i would have a dropdownlist in the page based on which I would filter the data. The dropdownlist will have a corresponding after-submit branch which will handle the reset pagination & RIR absolutely fine. But when we visit the website through tab the above problem would crash the page.
    I tried solutions like gReport.search('SEARCH') but that will fix only the interactive report, not the classic REPORT_C. That is just a hack anyway.
    Any ideas.?

    Ramani_vadakadu wrote:
    in classic report pagination need to be make it up max rows in APEX_SCHEMA(APEX_040200) itself. i was fixed this issue long back myself,but right now i don't remember which table! so please check the schema and track it.
    This makes very little sense to me. Please explain this in detail. Are you advocating making changes to APEX metadata by executing DML on tables in the APEX_040200 schema? Doing so will leave your APEX instance in an unsupported an possibly inoperable state.

  • My Safari is quitting unexpectedly for the last 2 days. The report I get is Process:         Safari [386] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Ve

    My Safari has been quitting for the last 2 days. The report I get is as follows. I would be grateful for any help.
    Process:         Safari [386]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.10 (6534.59.10)
    Build Info:      WebBrowser-75345910~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [95]
    Date/Time:       2013-12-05 22:59:31.207 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          4324 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  32 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      7DC5ED9E-BFB1-44E7-99F1-5474E81F2DAE
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018
    Crashed Thread:  3  WebCore: IconDatabase
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff80003d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff800043ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff83f90902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff83f8fd8f CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff863a27ee RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff863a25f3 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff863a24ac BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff87b97eb2 _DPSNextEvent + 708
    8   com.apple.AppKit                        0x00007fff87b97801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.Safari.framework              0x00007fff8589995c -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
    10  com.apple.AppKit                        0x00007fff87b5d68f -[NSApplication run] + 395
    11  com.apple.AppKit                        0x00007fff87b563b0 NSApplicationMain + 364
    12  com.apple.Safari.framework              0x00007fff85a5a56a SafariMain + 200
    13  com.apple.Safari                        0x0000000100000f1c 0x100000000 + 3868
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8001cc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8001eadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8001e7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8001e2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8001dc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8001daa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff8001da2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8001de3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8001daa5 start_wqthread + 13
    Thread 3 Crashed:  WebCore: IconDatabase
    0   com.apple.WebCore                       0x00007fff8362949d bool ***::HashTable<***::String, std::pair<***::String, WebCore::PageURLRecord*>, ***::PairFirstExtractor<std::pair<***::String, WebCore::PageURLRecord*> >, ***::StringHash, ***::PairHashTraits<***::HashTraits<***::String>, ***::HashTraits<WebCore::PageURLRecord*> >, ***::HashTraits<***::String> >::contains<***::IdentityHashTranslator<***::StringHash>, ***::String>(***::String const&) const + 45
    1   com.apple.WebCore                       0x00007fff82c6395b WebCore::IconDatabase::pruneUnretainedIcons() + 331
    2   com.apple.WebCore                       0x00007fff82c4c1fa WebCore::IconDatabase::syncThreadMainLoop() + 362
    3   com.apple.WebCore                       0x00007fff82c49598 WebCore::IconDatabase::iconDatabaseSyncThread() + 296
    4   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff8001da2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8001de3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8001daa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff80003d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff800043ed mach_msg + 59
    2   com.apple.QuartzCore                    0x00007fff89aa6396 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore                    0x00007fff89aa62d6 thread_fun + 34
    4   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff80003d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff800043ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff83f90902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff83f8fd8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff897c914f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff8974a114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 7:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x00007fff80045aea pread + 10
    1   libsqlite3.dylib                        0x00007fff8148509c unixRead + 44
    2   libsqlite3.dylib                        0x00007fff81488ec0 sqlite3PagerAcquire + 1312
    3   libsqlite3.dylib                        0x00007fff8149d22c checkTreePage + 252
    4   libsqlite3.dylib                        0x00007fff8149d321 checkTreePage + 497
    5   libsqlite3.dylib                        0x00007fff8149d321 checkTreePage + 497
    6   libsqlite3.dylib                        0x00007fff814fbeed sqlite3VdbeExec + 31725
    7   libsqlite3.dylib                        0x00007fff814ff798 sqlite3_step + 1384
    8   com.apple.Safari.framework              0x00007fff85a97b6e Safari::SQLiteStatement::step() + 28
    9   com.apple.Safari.framework              0x00007fff85a6817f Safari::SafeBrowsingStore::checkIntegrity() + 51
    10  com.apple.Safari.framework              0x00007fff85a68598 Safari::SafeBrowsingStore::initDatabase() + 104
    11  com.apple.Safari.framework              0x00007fff85a68642 Safari::SafeBrowsingStore::getListID(Safari::SString const&, int&) + 38
    12  com.apple.Safari.framework              0x00007fff85a686db Safari::SafeBrowsingStore::addList(Safari::SString const&) + 35
    13  com.apple.Safari.framework              0x00007fff85a60991 Safari::SafeBrowsingListManager::SafeBrowsingListManager(Safari::SafeBrowsingSe rvice&, ***::Vector<Safari::SString, 0ul> const&, Safari::SString const&, Safari::SString const&) + 433
    14  com.apple.Safari.framework              0x00007fff85a60d98 Safari::SafeBrowsingListManager::create(Safari::SafeBrowsingService&, ***::Vector<Safari::SString, 0ul> const&, Safari::SString const&, Safari::SString const&) + 78
    15  com.apple.Safari.framework              0x00007fff85a66b9f Safari::SafeBrowsingService::didReceiveListNames(***::Vector<Safari::SString, 0ul> const&) + 35
    16  com.apple.Safari.framework              0x00007fff859d858a Safari::GoogleSafeBrowsingService::initialize() + 294
    17  com.apple.Safari.framework              0x00007fff85a6254e Safari::SafeBrowsingManager::addGoogleSafeBrowsingService() + 122
    18  com.apple.Safari.framework              0x00007fff85a6272e Safari::SafeBrowsingManager::handleMessage(Safari::SafeBrowsingManager::SafeBro wsingMessage*) + 202
    19  com.apple.Safari.framework              0x00007fff85a119b3 Safari::MessageRunLoop::dispatchMessage() + 49
    20  com.apple.CoreFoundation                0x00007fff83f923d1 __CFRunLoopDoSources0 + 1361
    21  com.apple.CoreFoundation                0x00007fff83f905c9 __CFRunLoopRun + 873
    22  com.apple.CoreFoundation                0x00007fff83f8fd8f CFRunLoopRunSpecific + 575
    23  com.apple.Safari.framework              0x00007fff85a118e5 Safari::MessageRunLoop::threadBody() + 107
    24  com.apple.Safari.framework              0x00007fff85a1191f Safari::MessageRunLoop::threadCallback(void*) + 9
    25  libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    26  libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8003ea6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80042881 _pthread_cond_wait + 1286
    2   com.apple.CoreVideo                     0x00007fff83cb1342 CVDisplayLink::runIOThread() + 804
    3   com.apple.CoreVideo                     0x00007fff83cb0fe3 startIOThread(void*) + 139
    4   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 9:  Safari: SnapshotStore
    0   libSystem.B.dylib                       0x00007fff8003ea6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80042881 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff8239d650 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari.framework              0x00007fff85a8e14b Safari::MessageQueueWaitResult Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessageFilteredWithTimeout<bool ()(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&)>(***::RefPtr<Safari: :SnapshotStore::DiskAccessMessage>&, bool (&)(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&), double) + 149
    4   com.apple.Safari.framework              0x00007fff85a8c5bd Safari::SnapshotStore::diskAccessThreadBody() + 115
    5   com.apple.Safari.framework              0x00007fff85a8c73d Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6   libSystem.B.dylib                       0x00007fff8003cfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8003ce89 thread_start + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000001fff  rbx: 0x0000000100368380  rcx: 0x000000010051ce98  rdx: 0x00000000ffffffff
      rdi: 0x0000000100335950  rsi: 0x00000001007c0dd0  rbp: 0x00000001007c0cd0  rsp: 0x00000001007c0c90
       r8: 0x0000000100335900   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000001  r13: 0x00000001003358f8  r14: 0x0000000100335800  r15: 0x000000010be00000
      rip: 0x00007fff8362949d  rfl: 0x0000000000010206  cr2: 0x0000000000000018
    Binary Images:
           0x100000000 -        0x100000fff  com.apple.Safari 5.1.10 (6534.59.10) <E9B93F8E-359B-6C7E-E1D5-6415B49BBB03> /Applications/Safari.app/Contents/MacOS/Safari
           0x10c580000 -        0x10c713fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10c79a000 -        0x10c7c0fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10e87f000 -        0x10eca2fef  libclh.dylib 3.1.1 C  (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x200000000 -        0x200787fe7  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff801c4fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff801c5000 -     0x7fff8044eff7  com.apple.security 6.1.2 (55002) <D224882B-D57B-83AF-3781-548BCEACB327> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8044f000 -     0x7fff80477fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff804bb000 -     0x7fff804c9ff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff804ca000 -     0x7fff80509ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <B2E93DEC-2F33-366A-995C-ACA0523D508F> /usr/lib/libssl.0.9.8.dylib
        0x7fff8065a000 -     0x7fff80710ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff80711000 -     0x7fff80734fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff807d3000 -     0x7fff80993fe7  com.apple.WebKit2 6534.59 (6534.59.10) <61029ECF-E501-D530-C98A-AB9AAB9FF257> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff80994000 -     0x7fff809eafe7  libTIFF.dylib ??? (???) <2DBEC120-DAA7-3789-36A2-A205BCDF2D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff809eb000 -     0x7fff809fcff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff809fd000 -     0x7fff80e44fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff80e45000 -     0x7fff80ec3ff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff80ec4000 -     0x7fff80ec4ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff80f15000 -     0x7fff80f3cff7  libJPEG.dylib ??? (???) <08758593-6436-B29E-1DA8-F15597835EC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff81047000 -     0x7fff81124fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff81326000 -     0x7fff8133cfef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff8133d000 -     0x7fff813bcfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff81473000 -     0x7fff8152cfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff81568000 -     0x7fff81568ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff817ba000 -     0x7fff817c1fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff817c2000 -     0x7fff81805ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff81d94000 -     0x7fff81d99ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff81d9a000 -     0x7fff81d9aff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff81d9b000 -     0x7fff81d9cff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff81d9d000 -     0x7fff81ddefff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff81ddf000 -     0x7fff81df0fff  SyndicationUI ??? (???) <A7C60837-3B4F-ACDE-5B7B-63DA918763D0> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff81e84000 -     0x7fff81e89fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff81e8a000 -     0x7fff81e8bfff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff82393000 -     0x7fff826b5fff  com.apple.JavaScriptCore 6534.59 (6534.59.11) <992F7C39-0ADA-C5EF-0405-55F81A5B2F76> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff826f3000 -     0x7fff82748ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff82749000 -     0x7fff82a7dfef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff82a7e000 -     0x7fff82a94fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff82a9b000 -     0x7fff82b80fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff82b81000 -     0x7fff82c43fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff82c44000 -     0x7fff83caefff  com.apple.WebCore 6534.59 (6534.59.6) <24B753DC-1FD4-FFCC-5F66-44799244A125> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff83caf000 -     0x7fff83cd4ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83ce7000 -     0x7fff83d47fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff83d79000 -     0x7fff83d7fff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff83db0000 -     0x7fff83dc4ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff83ebd000 -     0x7fff83f04ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff83f05000 -     0x7fff83f43fe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83f44000 -     0x7fff840bbfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff840bc000 -     0x7fff844fffef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff84661000 -     0x7fff84664fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff84665000 -     0x7fff8479afff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8479b000 -     0x7fff84805fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff84830000 -     0x7fff849d2fe7  com.apple.WebKit 6534.59 (6534.59.10) <5F60FC29-1962-988F-96D1-A72A61F8C4EB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff84d1c000 -     0x7fff84e20ff7  com.apple.PubSub 1.0.5 (65.28) <87EB5C5F-E4E2-E4FD-70EE-773B3A40ABCD> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff84e80000 -     0x7fff84f54fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff84f55000 -     0x7fff85651ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff857ef000 -     0x7fff85838fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff85839000 -     0x7fff86079fe7  com.apple.Safari.framework 6534 (6534.59.10) <994DD15D-D620-7FEB-C912-1FF3086942AD> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff862bf000 -     0x7fff862caff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff86374000 -     0x7fff86672fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8682a000 -     0x7fff86949ff7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0CE8D59B-D0C7-1DCE-3654-37F27F61BEFA> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8694a000 -     0x7fff8695fff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff86960000 -     0x7fff86a7afff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff86a7e000 -     0x7fff86a97fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff86ab3000 -     0x7fff872bdfe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff872be000 -     0x7fff872beff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff872bf000 -     0x7fff872c5ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff872c6000 -     0x7fff872c6ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff872d1000 -     0x7fff872e8fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8730a000 -     0x7fff87420ff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
        0x7fff87421000 -     0x7fff874adfef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff874e6000 -     0x7fff874ecfff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff874ed000 -     0x7fff87537ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff87538000 -     0x7fff8757bfef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff87648000 -     0x7fff8765cfff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8765d000 -     0x7fff87661ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff877d3000 -     0x7fff87894fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff87895000 -     0x7fff878c6fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff878c7000 -     0x7fff878d3fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff878d4000 -     0x7fff878f5fe7  libPng.dylib ??? (???) <D8EC7740-EE32-865A-2F75-C9EDE2135510> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff878f6000 -     0x7fff8793eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8793f000 -     0x7fff8794cfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8794d000 -     0x7fff879fdfff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff879fe000 -     0x7fff87a04ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff87a05000 -     0x7fff87abafe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff87b50000 -     0x7fff87b53ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87b54000 -     0x7fff8854eff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8854f000 -     0x7fff885a2ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff885e7000 -     0x7fff88612ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
        0x7fff88643000 -     0x7fff886d3fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff886d4000 -     0x7fff88715fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff88716000 -     0x7fff88765ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff88766000 -     0x7fff887afff7  com.apple.securityinterface 4.0.1 (40418.0.1) <9AF33A9F-2D8C-2AE6-868C-EA836C861031> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff887b0000 -     0x7fff887e6ff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff888fe000 -     0x7fff88903fff  libGIF.dylib ??? (???) <3BAD0DE8-8151-68B0-2244-A4541C738972> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88ae7000 -     0x7fff88b22fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff88b23000 -     0x7fff88bbdfff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff88c4b000 -     0x7fff88d08fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff88d09000 -     0x7fff88d18fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff894b6000 -     0x7fff894f0fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <4F2A4397-89BD-DEAC-4971-EE838FFA0964> /usr/lib/libcups.2.dylib
        0x7fff894f1000 -     0x7fff8953dfff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8953e000 -     0x7fff8954dfff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff89555000 -     0x7fff89714fff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff89739000 -     0x7fff899bbfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff899bc000 -     0x7fff899c7fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff899d6000 -     0x7fff89a52ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff89a53000 -     0x7fff89df0fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89df1000 -     0x7fff89e0cff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff89e0d000 -     0x7fff89e1cfef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff89e1d000 -     0x7fff89e20ff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff89e21000 -     0x7fff89e23fff  libRadiance.dylib ??? (???) <BF694EE5-6FDA-553A-CC89-F7135618E9C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff89e99000 -     0x7fff8a057fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <97A75BFB-0DB6-6F44-36B0-97B7F7208ABB> /usr/lib/libicucore.A.dylib
        0x7fff8a058000 -     0x7fff8a079fff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff8a218000 -     0x7fff8a295fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff8a2a5000 -     0x7fff8a2d8ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8a30e000 -     0x7fff8a310fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8a3f4000 -     0x7fff8a414fff  com.apple.DirectoryService.Framework 3.6 (621.16) <0ED4A74A-F8FB-366D-6588-F13EA397326F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8a487000 -     0x7fff8a499fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff8a49a000 -     0x7fff8a53afff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8a54f000 -     0x7fff8a68dfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8a70c000 -     0x7fff8a710ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8a72d000 -     0x7fff8a72dff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8a72e000 -     0x7fff8a72eff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8a72f000 -     0x7fff8a730ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8a731000 -     0x7fff8a73cfff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8a73d000 -     0x7fff8a7c2ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: MacBookPro3,1, BootROM MBP31.0070.B07, 2 processors, Intel Core 2 Duo, 2.2 GHz, 2 GB, SMC 1.16f11
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x87), Atheros 5416: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: WDC WD5000BPVT-00HXZT3, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-857E
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8205, 0x1a100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x021a, 0x5d200000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2

    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Safari/WebpageIcons.db
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Quit the application if it's running. Move the selected item to the Trash.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Safari (Version 5.06) keeps crashing, I am using MAC OSX 10.5.8, here is the report: Process:         Safari [137] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version:         5.0.6 (5533.22.3) Build I

    Safari (Version 5.06) keeps crashing. Everytime I open a new tab it crashes.

    Here is a copy of the report:
    Process:         Safari [137]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.6 (5533.22.3)
    Build Info:      WebBrowser-75332203~3
    Code Type:       X86 (Native)
    Parent Process: launchd [63]
    Interval Since Last Report:          8207 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  7626 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2014-04-29 13:43:36.160 -0400
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: CF2B6A4D-C653-419C-AF82-3F4EE57FC4B8
    Exception Type: EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x000000001e96b000
    Crashed Thread: 8
    Thread 0:
    0 com.apple.ImageIO.framework 0x934d314f _CGImagePluginIdentifyPNG + 6
    1 com.apple.ImageIO.framework 0x934d2e72 _CGImageSourceBindToPlugin + 301
    2 com.apple.ImageIO.framework 0x934e21f6 CGImageSourceGetType + 50
    3 com.apple.CoreGraphics                    0x90ed0cd1 CGImageCreateWithPNGDataProvider + 82
    4 com.apple.Safari 0x0006581b 0x1000 + 411675
    5 com.apple.Safari 0x00092dee 0x1000 + 597486
    6 com.apple.Safari 0x0009a163 0x1000 + 627043
    7 com.apple.Safari 0x00099c94 0x1000 + 625812
    8 com.apple.QuartzCore                      0x97676ab3 CABackingStoreUpdate + 1791
    9 com.apple.QuartzCore                      0x9781ffa1 CACFLayerDisplay + 242
    10 com.apple.QuartzCore                      0x97820001 CACFLayerDisplayIfNeeded + 21
    11 com.apple.QuartzCore                      0x97820049 CACFLayerDisplayIfNeeded + 93
    12 com.apple.QuartzCore                      0x97820049 CACFLayerDisplayIfNeeded + 93
    13 com.apple.QuartzCore                      0x9781e5e7 CACFContextFlush + 53
    14 com.apple.Safari 0x0006e7c7 0x1000 + 448455
    15  com.apple.Safari 0x0006e4eb 0x1000 + 447723
    16 com.apple.Safari 0x000967d1 0x1000 + 612305
    17 com.apple.AppKit 0x94d7abf8 -[NSView _drawRect:clip:] + 3853
    18 com.apple.AppKit 0x94d796ef -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    19 com.apple.AppKit 0x94d79a86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    20 com.apple.AppKit 0x94d79a86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    21 com.apple.AppKit 0x94d79a86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    22 com.apple.AppKit 0x94d79a86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    23 com.apple.AppKit 0x94d79a86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    24 com.apple.AppKit 0x94d79a86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    25 com.apple.AppKit 0x94d79a86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    26 com.apple.AppKit 0x94d79a86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    27 com.apple.AppKit 0x94d78045 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    28 com.apple.AppKit 0x94d77987 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 306
    29 com.apple.AppKit                          0x94d744ab -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    30 com.apple.AppKit 0x94cb4e7b -[NSView displayIfNeeded] + 933
    31 com.apple.AppKit 0x94d675bd -[NSWindow _setFrameCommon:display:stashSize:] + 2031
    32 com.apple.AppKit 0x94d66dc6 -[NSWindow setFrame:display:] + 78
    33 com.apple.Safari 0x00025376 0x1000 + 148342
    34 com.apple.AppKit 0x94db95c7 _NSMoveHelperTimerCallBack + 1330
    35  com.apple.CoreFoundation                  0x904208f5 CFRunLoopRunSpecific + 4469
    36 com.apple.CoreFoundation                  0x90420aa8 CFRunLoopRunInMode + 88
    37 com.apple.AppKit 0x94f160ce -[NSMoveHelper _doAnimation] + 980
    38 com.apple.AppKit 0x94f952bc -[NSMoveHelper _resizeWindow:toFrame:display:] + 407
    39 com.apple.AppKit 0x94da2086 -[NSWindow setFrame:display:animate:] + 1038
    40 com.apple.Safari 0x000264da 0x1000 + 152794
    41 com.apple.Safari 0x000260ad 0x1000 + 151725
    42 com.apple.Safari 0x00078bea 0x1000 + 490474
    43 com.apple.AppKit 0x94d83e8f -[NSApplication sendAction:to:from:] + 112
    44 com.apple.Safari 0x00047d15 0x1000 + 290069
    45 com.apple.AppKit                          0x94e32b64 -[NSMenu performActionForItemAtIndex:] + 493
    46 com.apple.AppKit 0x94e32869 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 220
    47 com.apple.AppKit 0x94e0f4ba AppKitMenuEventHandler + 6608
    48 com.apple.HIToolbox                       0x9547913d DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1181
    49 com.apple.HIToolbox                       0x9547857b SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 405
    50 com.apple.HIToolbox                       0x95494ecc SendEventToEventTarget + 52
    51 com.apple.HIToolbox                       0x954c91e7 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 411
    52 com.apple.HIToolbox                       0x954ef959 SendMenuCommandWithContextAndModifiers + 59
    53 com.apple.HIToolbox                       0x954ef914 SendMenuItemSelectedEvent + 134
    54 com.apple.HIToolbox                       0x954ef82a FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long, unsigned long, unsigned char) + 162
    55 com.apple.HIToolbox                       0x954cc494 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 640
    56 com.apple.HIToolbox                       0x954cbe7f _HandleMenuSelection2 + 383
    57 com.apple.HIToolbox                       0x954cbcf3 _HandleMenuSelection + 53
    58 com.apple.AppKit 0x94d4be67 _NSHandleCarbonMenuEvent + 244
    59  com.apple.AppKit 0x94cb2bc2 _DPSNextEvent + 1918
    60 com.apple.AppKit 0x94cb1f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    61 com.apple.Safari 0x000166ad 0x1000 + 87725
    62 com.apple.AppKit 0x94caaf9f -[NSApplication run] + 795
    63 com.apple.AppKit 0x94c781d8 NSApplicationMain + 574
    64 com.apple.Safari 0x0000acee 0x1000 + 40174
    Thread 1:
    0 libSystem.B.dylib 0x938aa34e __semwait_signal + 10
    1 libSystem.B.dylib 0x938d4ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.JavaScriptCore                  0x948d2d58 ***::TCMalloc_PageHeap::scavengerThread() + 824
    3 com.apple.JavaScriptCore                  0x948d2d8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    5 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x938aa34e __semwait_signal + 10
    1 libSystem.B.dylib 0x938d4ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.WebCore 0x95f5f587 WebCore::IconDatabase::syncThreadMainLoop() + 279
    3 com.apple.WebCore 0x95f5ce19 WebCore::IconDatabase::iconDatabaseSyncThread() + 761
    4   libSystem.B.dylib 0x938d4055 _pthread_start + 321
    5 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x938a3166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x938aa95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x9041fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation                  0x90420aa8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork                       0x94bc018c CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    6 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x938aa34e __semwait_signal + 10
    1 libSystem.B.dylib 0x938d4ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.JavaScriptCore                  0x947276b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.WebCore 0x95f7877c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    5 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x938a3166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x938aa95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x9041fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation                  0x90420aa8 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x0002f33d 0x1000 + 189245
    5 com.apple.Safari 0x0002f08a 0x1000 + 188554
    6 com.apple.Safari 0x0002f023 0x1000 + 188451
    7 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    8 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x938a3166 mach_msg_trap + 10
    1   libSystem.B.dylib 0x938aa95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x9041fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation                  0x90420aa8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation                      0x92474520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation                      0x92410dfd -[NSThread main] + 45
    6 com.apple.Foundation                      0x924109a4 __NSThread__main__ + 308
    7 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    8 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x938f260a select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    2 libSystem.B.dylib                         0x938d3f12 thread_start + 34
    Thread 8 Crashed:
    0 com.apple.ImageIO.framework 0x934d314f _CGImagePluginIdentifyPNG + 6
    1 com.apple.ImageIO.framework 0x934d2e72 _CGImageSourceBindToPlugin + 301
    2 com.apple.ImageIO.framework 0x934e21f6 CGImageSourceGetType + 50
    3 com.apple.CoreGraphics                    0x90eb920f CGImageCreateWithJPEGDataProvider2 + 82
    4 com.apple.CoreGraphics                    0x90ee7fd2 CGImageCreateWithJPEGDataProvider + 47
    5 com.apple.Safari 0x00073423 0x1000 + 468003
    6 com.apple.Safari 0x00044d4d 0x1000 + 277837
    7 com.apple.Safari 0x00044c2d 0x1000 + 277549
    8 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    9 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x938a3166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x938aa95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x9041fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation                  0x90420aa8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio                 0x97a6e5f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio                 0x97a6e480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    7   libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x938aa34e __semwait_signal + 10
    1 libSystem.B.dylib 0x938d4ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.JavaScriptCore                  0x947276b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.WebCore 0x95f7877c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    5 libSystem.B.dylib                         0x938d3f12 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x938aa34e __semwait_signal + 10
    1 libSystem.B.dylib 0x938d4ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.ColorSync                       0x95ebd3c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync                       0x95ecfd4e CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    5 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib 0x938a3166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x938aa95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x9041fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation                  0x90420b04 CFRunLoopRun + 84
    4 com.apple.DesktopServices                 0x94692d0f TSystemNotificationTask::SystemNotificationTaskProc(void*) + 123
    5 ...ple.CoreServices.CarbonCore            0x97195fbb PrivateMPEntryPoint + 56
    6 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    7   libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x938a3166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x938aa95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x9041fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation                  0x90420b04 CFRunLoopRun + 84
    4 com.apple.DesktopServices                 0x94692e88 TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 216
    5 ...ple.CoreServices.CarbonCore            0x97195fbb PrivateMPEntryPoint + 56
    6 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    7 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x938aa34e __semwait_signal + 10
    1 libSystem.B.dylib 0x938d4ccd pthread_cond_wait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore            0x97197de3 TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore            0x97176c36 TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore            0x97197a60 MPWaitOnQueue + 208
    5 com.apple.DesktopServices                 0x9469de6a TNodeSyncTask::SyncTaskProc(void*) + 84
    6 ...ple.CoreServices.CarbonCore            0x97195fbb PrivateMPEntryPoint + 56
    7 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    8 libSystem.B.dylib                         0x938d3f12 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x938d38c6 kevent + 10
    1 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    2 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib 0x938a31c6 semaphore_timedwait_signal_trap + 10
    1 libSystem.B.dylib 0x938d51af _pthread_cond_wait + 1244
    2 libSystem.B.dylib 0x938d6a33 pthread_cond_timedwait_relative_np + 47
    3 com.apple.Foundation                      0x92456dbc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation                      0x92456bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation                      0x92456b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.AppKit 0x94d186e8 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation                      0x92410dfd -[NSThread main] + 45
    8 com.apple.Foundation                      0x924109a4 __NSThread__main__ + 308
    9 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    10 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x938aa34e __semwait_signal + 10
    1 libSystem.B.dylib 0x938d4ccd pthread_cond_wait$UNIX2003 + 73
    2   libGLProgrammability.dylib                0x93a3eb32 glvmDoWork + 162
    3 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    4 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x938aa34e __semwait_signal + 10
    1 libSystem.B.dylib 0x938d4ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.CoreVideo                       0x9434ae61 CVDisplayLink::runIOThread() + 1087
    3 libSystem.B.dylib 0x938d4055 _pthread_start + 321
    4 libSystem.B.dylib 0x938d3f12 thread_start + 34
    Thread 8 crashed with X86 Thread State (32-bit):
      eax: 0x0002883d  ebx: 0x934e21d8  ecx: 0xa0480008  edx: 0x1e96b000
      edi: 0x00000001  esi: 0xa0480ba0  ebp: 0xb03c1d18  esp: 0xb03c1d18
       ss: 0x0000001f  efl: 0x00010206  eip: 0x934d314f   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x1e96b000
    Binary Images:
    0x1000 - 0x5d3ffc  com.apple.Safari 5.0.6 (5533.22.3) <79731a26a77704fb4831e3adc020a381> /Applications/Safari.app/Contents/MacOS/Safari
      0x644000 -   0x64ffff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x657000 -   0x681fe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x692000 -   0x6a1ffc  SyndicationUI ??? (???) <4cb2f7ffaf3185ff4e036082064e7121> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
      0x6cd000 -   0x6d2fff  com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9ba69ef0bec96264a79fa28b3a5f058b> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x1b49000 -  0x1b57feb  libSimplifiedChineseConverter.dylib ??? (???) <68f130a585c3f580d166ef7cbbf47e69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1b7b000 -  0x1b7cff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x11e04000 - 0x120fdff3  com.apple.RawCamera.bundle 2.3.0 (505) <1c7cea30ffe2b4de98ced6518df1e54b> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1481d000 - 0x1481fffe  com.apple.AutomatorCMM 1.1 (162) <413d7e87f90ba14adf2c2a08af448666> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x14835000 - 0x14836ffd  com.apple.BluetoothMenu 2.1.8 (2.1.8f2) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x1483b000 - 0x1483dfff  com.apple.BezelServicesFW 1.4.9212 (1.4.9212) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x14962000 - 0x14974fff  libTraditionalChineseConverter.dylib ??? (???) <6108541a452ff07d2f67db4a488b9d22> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x151a6000 - 0x151abff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16fbc000 - 0x16fc6ffe  com.apple.URLMount 3.1.1 (3.1.1) <55d7d7ad5616607b50ac93fe02115015> /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x17244000 - 0x17260ff7  GLRendererFloat ??? (???) <7badea5e2b8167c0e6391623bb46140a> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1885d000 - 0x1885efff  com.apple.JavaPluginCocoa 12.9.0 (12.9.0) <5451adf6a77e3088b1a096fe1e16b189> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x18864000 - 0x18868ffd  JavaLaunching ??? (???) <41aa04fadb9589ab9c249284090b2ef7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x18ea8000 - 0x18eabff7 +com.macromedia.Flash Player.plugin 10.3.183.90 (10.3.183.90) <a807c37233dec7b41e427fc35e69e988> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x19200000 - 0x19203fff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x19209000 - 0x1920ffff  com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x196dd000 - 0x1a12dff7 +com.macromedia.FlashPlayer-10.4-10.5.plugin 10.3.183.90 (10.3.183.90) <c42e2d07a256c42ca006e78cee6add71> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x21ef2000 - 0x21f67ff7  com.apple.Bluetooth 2.1.9 (2.1.9f10) <d70a88066ebf7eb8071781f686caced3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x224db000 - 0x22660fe3  GLEngine ??? (???) <052e02d9a452a45d014ffbd2a84a4e7c> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x24299000 - 0x2466ffef  com.apple.driver.AppleIntelGMAX3100GLDriver 1.5.48 (5.4.8) <91a7c520d2f372780b5c2f14307a7501> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x900e3fff  libobjc.A.dylib ??? (???) <3ca288b625a47bbcfe378158e4dc328f> /usr/lib/libobjc.A.dylib
    0x90129000 - 0x90163fe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90164000 - 0x901caffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x901cb000 - 0x901cffff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x901d0000 - 0x901efffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x901f0000 - 0x901f5fff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x901f6000 - 0x901f6ffd  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
    0x901f7000 - 0x901fefe9  libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x901ff000 - 0x90272fff  com.apple.iLifeMediaBrowser 2.1.5 (368) <3026150475335424dd1532739ded6fb0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x90273000 - 0x90300ff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90301000 - 0x9035dff7  com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9035e000 - 0x9037cfff  libresolv.9.dylib ??? (???) <0e26b308654f33fc94a0c010a50751f9> /usr/lib/libresolv.9.dylib
    0x9037d000 - 0x903acfe3  com.apple.AE 402.3 (402.3) <dba512e47f68eea1dd0ab35f596edb34> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x903ad000 - 0x904e0fe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x904e1000 - 0x9089dff4  com.apple.VideoToolbox 0.484.2 (484.2) <f8e0dbf848f7441bc31428305a2f65bf> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9089e000 - 0x909f0ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90a1b000 - 0x90a20fff  com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90a21000 - 0x90ac8feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90ac9000 - 0x90accfff  com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90acd000 - 0x90c4dfff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90c66000 - 0x90c91fe7  libauto.dylib ??? (???) <4f3e58cb81da07a1662c1f647ce30225> /usr/lib/libauto.dylib
    0x90ce4000 - 0x90dccff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90dcd000 - 0x90dd9ff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90dda000 - 0x9147afff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9147b000 - 0x9237bfe6  com.apple.QuickTimeComponents.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9237c000 - 0x923c7fe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x923c8000 - 0x923fafff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x923fb000 - 0x92405feb  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
    0x92406000 - 0x92682fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92683000 - 0x927bbfe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x927bc000 - 0x92978ff3  com.apple.QuartzComposer 2.1 (106.13) <dc04566811ab9c5316d1a622f42da8ba> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x92979000 - 0x9298effb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x929fd000 - 0x92a46fef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92a47000 - 0x92a89fef  com.apple.NavigationServices 3.5.2 (163) <7f4f1766414a511bf5bc68920ac85a88> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92a8a000 - 0x92a8cfff  com.apple.securityhi 3.0 (30817) <31baaf7ea27b41480604ffc910fe827f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92a8d000 - 0x92acbfff  libGLImage.dylib ??? (???) <2e570958595e0c9c3a289158223b39ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92acc000 - 0x92bbafef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92bbb000 - 0x92bc1fff  com.apple.print.framework.Print 218.0.3 (220.2) <8c541d587e4068a5fe5a5ce8ee208516> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92bc2000 - 0x92bddff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92bde000 - 0x92c8ffff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92c90000 - 0x92c98fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <ba64dd6ada417b5e7be736957f380bca> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92c99000 - 0x92c9bffd  com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x92c9c000 - 0x92e20fef  com.apple.MediaToolbox 0.484.2 (484.2) <03c5c5966a91ad3ae9c825340fa21970> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x92e21000 - 0x92e21fff  com.apple.Carbon 136 (136) <27d42531a2cbeb05a7f4d05a28281bd7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e22000 - 0x92e53ffb  com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x92e54000 - 0x92e93fef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92e94000 - 0x92eceffe  com.apple.securityfoundation 3.0.2 (36131) <dd2a4d1a4f50b82923d7cfc5df10455d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92ecf000 - 0x92ecfffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x92eda000 - 0x93298fea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93299000 - 0x932e7fe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x933cb000 - 0x933daffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <a2f7a163a74c134f6f17d497423436fe> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x934d0000 - 0x93619ff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x936f2000 - 0x936f2ffe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x936f3000 - 0x93744ff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93745000 - 0x93826ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x93827000 - 0x93833ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93834000 - 0x93883fff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x93884000 - 0x938a1ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x938a2000 - 0x93a09ff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x93a0a000 - 0x93a0efff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x93a0f000 - 0x93a11ff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93a17000 - 0x93ee8fbe  libGLProgrammability.dylib ??? (???) <d5cb4e7997a873cd77523689e6749acd> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93ee9000 - 0x93fb0ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93fb1000 - 0x93fc7fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93fcd000 - 0x93fd2fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9423c000 - 0x942aefff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x942fe000 - 0x9430efff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <9a71429c74ed6ca43eb35e1f78471b2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9430f000 - 0x94333feb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x94334000 - 0x94350ff3  com.apple.CoreVideo 1.6.1 (48.6) <e1eea31edd855f3e739202eb18ac8312> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94351000 - 0x9467cff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94691000 - 0x9471bff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9471c000 - 0x94933ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94934000 - 0x9496afef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x9496b000 - 0x94978fe7  com.apple.opengl 1.5.10 (1.5.10) <e7d1198d869f45f09251f9697cbdd192> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94979000 - 0x949b9fef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x949ba000 - 0x949caffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x949cb000 - 0x949e3fff  com.apple.openscripting 1.2.8 (???) <a888b18c8527f71629702ed8dce9c877> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x949e4000 - 0x949e4ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94a1a000 - 0x94a23fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <73cf6b3c5ddf94d7ce9ae2c81c1b558c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94a24000 - 0x94a9eff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <9ae833544b8249984c07544dbe6a97fa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94a9f000 - 0x94bbcff7  com.apple.WebKit 5534 (5534.50.2) <643ffe6446c331210a74f896f0804eb2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94bbd000 - 0x94c64fec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94c65000 - 0x94c65ffa  com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94c72000 - 0x95470fef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95471000 - 0x95779fe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9577a000 - 0x95781ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95782000 - 0x957b9fff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <41d5aeffefc6d19d471f51ae0b15024f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x957ba000 - 0x95841ff7  libsqlite3.0.dylib ??? (???) <aaaf72c093e13f34b96e2688b95bdb4a> /usr/lib/libsqlite3.0.dylib
    0x9590c000 - 0x95918fff  libbz2.1.0.dylib ??? (???) <d355415c89c383330697a7b73d6dbc2e> /usr/lib/libbz2.1.0.dylib
    0x95919000 - 0x959cbffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x959cc000 - 0x95a4bff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95a4c000 - 0x95a4dffc  libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x95a4e000 - 0x95e5efef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95e5f000 - 0x95e83fff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x95e84000 - 0x95e84ff8  com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95e8a000 - 0x95f55fef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95f56000 - 0x95f56ff8  com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95f57000 - 0x96cc5fe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96cc6000 - 0x96e55fe7  com.apple.CoreAUC 3.08.0 (3.08.0) <ce8da72493f7ad2bcb13130e6d0eca54> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x96e56000 - 0x96e56ffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96e57000 - 0x96e7fff7  com.apple.shortcut 1.0.1 (1.0) <37e4b08cfaf9edb08b8682a06c4ec844> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x96e80000 - 0x96ecbff7  com.apple.CoreMediaIOServices 140.0 (1492) <3fd3879b31be7659c1008e8991e9f69b> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x96ecc000 - 0x97005ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x97018000 - 0x97023fe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x97024000 - 0x970dffe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9714d000 - 0x97427ff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x97428000 - 0x974a5fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x974a6000 - 0x974adfff  com.apple.agl 3.0.9 (AGL-3.0.9) <5a57ce58f8adb7825e1adb9f7cdea151> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x974ae000 - 0x97508ff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97509000 - 0x97596ff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x97597000 - 0x975a6fff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x975a7000 - 0x975b5ffd  libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x975b6000 - 0x975f7fe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97615000 - 0x97615ffe  com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97616000 - 0x97616ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97617000 - 0x9761effe  libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9761f000 - 0x979bcfef  com.apple.QuartzCore 1.5.8 (1.5.8) <18113e06d296230d63a63b58baf35f55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x979bd000 - 0x97a50fff  com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x97a51000 - 0x97acefeb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x97acf000 - 0x97b2cffb  libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x97c91000 - 0x97cafff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97cb0000 - 0x97d43ff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97d44000 - 0x97d6dfff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x97d6e000 - 0x97d9bfeb  libvDSP.dylib ??? (???) <f39d424bd56a0e75d5c7a2280a25cd76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x97d9c000 - 0x97ee6feb  com.apple.QTKit 7.7 (1680.28) <c03868cba11c22743a5d68e1b0184399> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x97ee7000 - 0x97f40ff7  libGLU.dylib ??? (???) <64d010e31d7596bd8f9edc6e027d1d0c> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x97f47000 - 0x98118fef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0xba900000 - 0xba916fff  libJapaneseConverter.dylib ??? (???) <b9aea83b1cd97f3230999ebfcbf63e7c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2  libKoreanConverter.dylib ??? (???) <bc0bb2eed0f4558f07bbaa812d79371b> /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

  • OPP(Output Post Processor) not processing the report (XML Publisher)

    Hi,
    I have defined a concurrent program (XML Publisher report) then ran but failed with the errors below. I am running the report in Oracle E-Business Suite 11.5.10.2, thru a concurrent manager other than Standard Manager. My guess is that OPP(Output Post Processor) is not processing the request outputs coming from a different manager/work shift since requests ran thru Standard Managers are all OK.
    In the OAM(Oracle Applications Manager)-> OPP, there is only 1 process allocated for both Actual and Target. If we increase the number of processes, will it work?
    /home/app/oracle/prodcomn/temp/pasta19356_0.tmp:
    /home/app/oracle/prodcomn/temp/pasta19356_1.tmp: No such file or directory
    Pasta: Error: Print failed. Command=lp -c -dkonica4 /home/app/oracle/prodcomn/temp/pasta19356_1.tmp
    Pasta: Error: Check printCommand/ntPrintCommand in pasta.cfg
    Pasta: Error: Preprocess or Print command failed!!!
    Anybody who has experienced similar issue?
    Thanks in advance.
    Rownald

    Hello,
    Just an additional tests info. We have 2 concurrent managers which I think is affecting the XML report output - Standard Manager(running 24 hours) and a Warehouse manager (9am-4:15pm).
    When I run the report before or after the Warehouse manager workshift(9am-4:15pm), the output is fine - which means PDF is generated and Pasta printing is OK. However, when report is run between 9am-4:15pm, the report only shows XML output with an error in Pasta printing(above). I also found that re-opening the output(ran prior to Warehouse workshift) on the period between 9am-4:15pm would also result to just an XML output instead of the previous PDF.
    Anybody who has experienced similar issue like this? Any idea? The report is not directly defined as "inclusion" in the Warehouse manager, only the program calling it. Any effect of multiple concurrent managers in the XML Publisher output?
    Thanks in advance for your ideas..

Maybe you are looking for

  • Higher Education Cess not appearing in Excise Utilization tab

    Hello Gurus, When i create excise invoice, system is calculating the SeCess in the " CREATE EXCISE INVOICE SCREEN". But, the same is not appearing in the excise Utilization tab.  Plz guide to help me solve this issue. Thanks in advance! Warm Regards

  • EWA alert report for java system shows wrong data

    Hi, In our solman system, EWA alert reports are configured every week for all the production systems (both ABAP and JAVA). Recently oracle database was upgraded from 10g to 11g in all the production systems. The EWA alert report for ABAP systems is c

  • Safari frozen after updating to 1.3.2

    Hi all, I've just updated Safari to 1.3.2 through Software Update, and now, when I start Safari, it loads the start page (google), but then it freezes. The address bar is completely blue, as if it were still loading the page. The mouse is in rotating

  • Deploy to Apache in 9i Rel2

    Hi, I'm learning Jdeveloper and tried the tutorials for creating JSP/BC4J. I substituted the OE schema for one of my own and ran the tutorials. I created pages just fine, and ran them in the self-contained server that you use to test with. However, I

  • Genius playlists turn into normal playlists when plugged into iTunes

    hi everyone, my problem with my iPod touch is that when i make a new Genius playlist on the iPod, it turns into a normal playlist (i.e. one that you can't refresh and which is listed as a plain playlist underneath the Genius playlists) once i plug it