Lpstat -t -o   commands hangs with no output on SOlaris 10

Hi All,
We have ( SunOS 5.10 Generic_127111-06 sun4u sparc SUNW,SPARC-Enterprise),on a box .
The issue is when ever lpstat command is used to see weather there are any queues in the printer it hangs...
But print queue is getting cleared want to know weather its a Bug in Solaris 10...........
We have configured the printer on port 9100...
cosuaor19:> cat /etc/lp/printers/ALBH_SHIP_LN1/configuration
Banner: off
Content types: simple,postscript
Device: /dev/null
Interface: /usr/lib/lp/model/netstandard
Printer type: hplaser
Modules:
Options: dest=192.100.9.106:9100,protocol=tcp
cosuaor19:> telnet 192.100.9.106 9100
Trying 192.100.9.106...
Connected to 192.100.9.106.
Escape character is '^]'.
^]
telnet> quit
Connection to 192.100.9.106 closed.
cosuaor19:>
So any help on this would be appreciated ...

gdb shows that asynchronous i/o for sockets is handled only in user space via creating threads.
Additional info can be found on http://mail.opensolaris.org/pipermail/perf-discuss/2007-February/001621.html too.

Similar Messages

  • Same command works with enter-pssession but not invoke-command

    I'm trying to run an executable remotely with powershell. Right now I'm trying to install Office 2013 SP1, but in the past I've had the same issue with other executables.
    The command I'm running is as follows:
    Invoke-Command -computername computer01 -scriptBlock {C:\windows\Temp\proplussp2013-kb2817430-fullfile-x86-en-us.exe /quiet}
    It finishes almost immediately, returning no result, having not installed anything.
    However, if I do the following, it works just fine:
    Enter-PSSession computer01
    C:\windows\Temp\proplussp2013-kb2817430-fullfile-x86-en-us.exe /quiet
    Any idea what my problem with Invoke-Command is?
    Eric Hodges

    I did an Enter-PSSession, then ran the command using start-process. It hangs indefinitely. I did have to change the command a little, because I couldn't just put the whole command in quotes - that gave me an error saying the file wasn't found. I separated
    it into -filepath and -argumentlist params. Below is what I ran:
    Enter-PsSession -computername computer01
    start-process -filepath "C:\windows\Temp\proplussp2013-kb2817430-fullfile-x86-en-us.exe" -argumentlist "/quiet"
    This resulted in the session hanging indefinitely. So here is where I'm at:
    Enter-PsSession then running the command works
    Invoke-command with the command immediately finishes, with no output and the program doesn't actually install
    Enter-PsSession then running start-process hangs indefinitely
    Invoke-Command plus start-process hangs indefinitely
    I was curious to see if this held true with other programs, so I tried installing a program from HP with a silent switch and got identical behavior throughout all four scenarios listed above. 
    Turning off on-access A/V protection made no difference.
    Finally, regarding mjolinor's question about the program running in non-interactive environments: to the best of my knowledge the program can - but I'm not positive. I would assume, however, that invoke-command would build the same sort of environment as
    Enter-PsSession does, and it works there.
    Eric Hodges

  • Error MSB3073: The command exited with code -1

    I am getting this error while deploying the biztalk project from visual studio using Deployment Framework for Biztalk (BTDF).
    Please guide me what needs to be done. Here's the code :-
    <?xml version="1.0" encoding="utf-8"?>
    <!--
    Deployment Framework for BizTalk
    Copyright (C) 2008-14 Thomas F. Abraham, 2004-08 Scott Colestock
    -->
    <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Installer" ToolsVersion="4.0">
    <PropertyGroup>
    <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
    <Platform Condition="'$(Platform)' == ''">x86</Platform>
    <SchemaVersion>1.0</SchemaVersion>
    <ProjectName>HelloWorld</ProjectName>
    <ProjectVersion>1.0</ProjectVersion>
    <IncludeOrchestrations>False</IncludeOrchestrations>
    <IncludeTransforms>False</IncludeTransforms>
    <IncludeSSO>True</IncludeSSO>
    <UsingMasterBindings>True</UsingMasterBindings>
    <RequireXmlPreprocessDirectives>False</RequireXmlPreprocessDirectives>
    <ApplyXmlEscape>True</ApplyXmlEscape>
    <SkipIISReset>True</SkipIISReset>
    </PropertyGroup>
    <PropertyGroup>
    <!-- Properties related to building an MSI for server deployments -->
    <!-- BizTalk App Version Upgrade -->
    <!-- For each new product release to be deployed to your BizTalk servers: -->
    <!-- 1) Increment ProductVersion -->
    <!-- 2) Generate a new GUID and update ProductId with the new GUID -->
    <!-- This allows the new MSI to automatically uninstall (not undeploy!) the old MSI and install the new one. -->
    <ProductVersion>1.0.0</ProductVersion>
    <ProductId>084986b1-d675-4383-b0ed-da2e3f4e3998</ProductId>
    <!-- BizTalk App Version Upgrade -->
    <ProductName>HelloWorld for BizTalk</ProductName>
    <Manufacturer>Deployment Framework User</Manufacturer>
    <PackageDescription>HelloWorld</PackageDescription>
    <PackageComments>HelloWorld</PackageComments>
    <!-- NEVER change the ProductUpgradeCode. -->
    <ProductUpgradeCode>4975288c-1b94-4d42-868b-f166cdc02224</ProductUpgradeCode>
    </PropertyGroup>
    <!-- Under TFS Team Build, set CustomizableOutDir property to true in TFS 2005/2008/2010 UpgradeTemplate. -->
    <!-- With a workflow build, copy the default template then modify the MSBuild task for the solution build. Set OutDir to blank and -->
    <!-- CommandLineArguments to String.Format("/p:SkipInvalidConfigurations=true;TeamBuildOutDir=""{0}"" {1}", BinariesDirectory, MSBuildArguments). -->
    <PropertyGroup Condition="'$(Configuration)' == 'Debug'">
    <DeploymentFrameworkTargetsPath>$(MSBuildExtensionsPath)\DeploymentFrameworkForBizTalk\5.0\</DeploymentFrameworkTargetsPath>
    <OutputPath Condition="'$(TeamBuildOutDir)' == ''">bin\Debug\</OutputPath>
    <OutputPath Condition="'$(TeamBuildOutDir)' != ''">$(TeamBuildOutDir)</OutputPath>
    <DeployPDBsToGac>false</DeployPDBsToGac>
    </PropertyGroup>
    <PropertyGroup Condition="'$(Configuration)' == 'Release'">
    <DeploymentFrameworkTargetsPath>$(MSBuildExtensionsPath)\DeploymentFrameworkForBizTalk\5.0\</DeploymentFrameworkTargetsPath>
    <OutputPath Condition="'$(TeamBuildOutDir)' == ''">bin\Release\</OutputPath>
    <OutputPath Condition="'$(TeamBuildOutDir)' != ''">$(TeamBuildOutDir)</OutputPath>
    <DeployPDBsToGac>false</DeployPDBsToGac>
    </PropertyGroup>
    <PropertyGroup Condition="'$(Configuration)' == 'Server'">
    <DeploymentFrameworkTargetsPath>Framework\</DeploymentFrameworkTargetsPath>
    <!-- Get our PDBs into the GAC so we get file/line number information in stack traces. -->
    <DeployPDBsToGac>true</DeployPDBsToGac>
    </PropertyGroup>
    <ItemGroup>
    <PropsFromEnvSettings Include="SsoAppUserGroup;SsoAppAdminGroup" />
    </ItemGroup>
    <!-- !!! TODO !!! -->
    <!-- Add ItemGroup elements that contain one or more Schemas, Orchestrations, Transforms, etc. elements that describe -->
    <!-- the specific artifacts in your solution that need to be deployed. Use IntelliSense as a guide. -->
    <ItemGroup>
    <Schemas Include="HelloWorld.dll">
    <LocationPath>..\$(ProjectName)\bin\$(Configuration)</LocationPath>
    </Schemas>
    </ItemGroup>
    <!-- !!! TODO !!! -->
    <Import Project="$(DeploymentFrameworkTargetsPath)BizTalkDeploymentFramework.targets" />
    <!--
    The Deployment Framework automatically packages most files into the server install MSI.
    However, if there are special folders that you need to include in the MSI, you can
    copy them to the folder $(RedistDir) in the CustomRedist target.
    To include individual files, add an ItemGroup with AdditionalFiles elements.
    -->
    <Target Name="CustomRedist">
    </Target>
    </Project>
    Error :-
    Starting build...
    C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe "C:\BTDF\Walkthrough1\HelloWorld.Deployment\Deployment.btdfproj" /nologo /t:Deploy /p:Configuration=Debug
    Build started 08-04-2015 17:43:51.
    Project "C:\BTDF\Walkthrough1\HelloWorld.Deployment\Deployment.btdfproj" on node 1 (Deploy target(s)).
    SetModeDeploy:
    DEPLOYING APPLICATION TO BIZTALK...
    SetWinVer:
    Running on Windows V62
    Detected IIS 7
    Detected 64-bit OS
    GetSoftwarePaths:
    Using .NET Framework Install Path 'C:\Windows\Microsoft.NET\Framework\v4.0.30319'.
    Using BizTalk Install Path 'C:\Program Files (x86)\Microsoft BizTalk Server 2013\'.
    Using Deployment Framework Install Path 'C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\'.
    Using Deployment Framework Tools Path 'C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools'.
    Using BizTalk ESB Toolkit Install Path 'C:\Program Files (x86)\Microsoft BizTalk ESB Toolkit\'.
    ExportSettings:
    "C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools\EnvironmentSettingsExporter.exe" "C:\BTDF\Walkthrough1\HelloWorld.Deployment\EnvironmentSettings\SettingsFileGenerator.xml" "C:\BTDF\Walkthrough1\HelloWorld.Deployment\EnvironmentSettings"
    Environment Settings Spreadsheet to XML Exporter 1.6.1
    [http://EnvSettingsManager.codeplex.com]
    Copyright (C) 2007-11 Thomas F. Abraham. All Rights Reserved.
    Importing from SettingsFileGenerator.xml...
    Output format is XmlPreprocess (multi-file).
    Exporting to Exported_LocalSettings.xml...
    Exporting to Exported_DevSettings.xml...
    Exporting to Exported_TestSettings.xml...
    Exporting to Exported_ProdSettings.xml...
    Finished.
    InitSettingsFilePath:
    Using settings file C:\BTDF\Walkthrough1\HelloWorld.Deployment\EnvironmentSettings\Exported_LocalSettings.xml
    SetPropertiesFromEnvironmentSettings:
    Setting properties from environment settings file (C:\BTDF\Walkthrough1\HelloWorld.Deployment\EnvironmentSettings\Exported_LocalSettings.xml)
    Setting property to value 'BizTalk Application Users'.
    Setting property to value 'BizTalk Server Administrators'.
    InitializeAppName:
    BizTalk Application Name is HelloWorld
    PreprocessBindings:
    Checking syntax of XML file 'C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindingsMaster.xml'...
    Syntax of XML file 'C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindingsMaster.xml' appears to be valid.
    Clearing file attributes for 'PortBindings.xml'.
    "C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools\xmlpreprocess.exe" /v /c /noDirectives /i:"C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindingsMaster.xml" /o:"C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindings.xml" /d:CurDir="C:\BTDF\Walkthrough1" /s:"C:\BTDF\Walkthrough1\HelloWorld.Deployment\EnvironmentSettings\Exported_LocalSettings.xml"
    XmlPreprocess v2.0.18.0
    Copyright (c) 2004-2013 Loren M Halvorson
    XML File Preprocessor
    Settings XML file: "C:\BTDF\Walkthrough1\HelloWorld.Deployment\EnvironmentSettings\Exported_LocalSettings.xml"
    Preprocessing "C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindingsMaster.xml" to "C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindings.xml"...
    PortBindings.xml : Set the value 'HelloWorld' of 2 node(s) matching XPath '//ApplicationName'.
    "C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools\ElementTunnel.exe" /i:"C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindings.xml" /o:"C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindings.xml" /x:"C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools\adapterXPaths.txt" /encode+
    Nested XML Encoder/Decoder v5.5.100.0
    Copyright (C) 2005-2014 Scott Colestock, Tim Rayburn, Thomas F. Abraham
    XML encodes/decodes content of element(s) by XPath. Applies escaping rules such
    as &gt; for '<'. Namespace decls, PIs, etc. of nested XML are not preserved.
    XPaths : 16
    Transformed Nodes : 0
    Empty Nodes (skipped) : 3
    No Transform Req'd (skipped) : 3
    Total Matched Nodes : 6
    Complete - output file has been saved.
    Checking syntax of XML file 'C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindings.xml'...
    Syntax of XML file 'C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindings.xml' appears to be valid.
    DeployFileAdapterPhysicalPaths:
    Configuring FILE adapter physical paths from binding file PortBindings.xml...
    Processing FILE adapter physical paths (Send)...
    Setting up path 'C:\BTDF\Walkthrough1\Out'...
    Directory already exists.
    Granted 'BUILTIN\Users' Full Access permissions.
    Processing FILE adapter physical paths (Receive)...
    Setting up path 'C:\BTDF\Walkthrough1\In'...
    Directory already exists.
    Granted 'BUILTIN\Users' Full Access permissions.
    TerminateServiceInstancesConditional:
    Attempting to terminate all service instances for BizTalk app 'HelloWorld'...
    Terminated 0 service instances for BizTalk app 'HelloWorld'.
    VerifyBizTalkAppExists:
    Checking for existence of BizTalk application 'HelloWorld'...
    Did not find BizTalk application 'HelloWorld'.
    DeployAppDefinition:
    BTSTask.exe AddApp -ApplicationName:"HelloWorld" -Description:"HelloWorld"
    Microsoft (R) BizTalk Application Deployment Utility Version 3.10.229.0
    Copyright (c) 2013 Microsoft Corporation. All rights reserved.
    Information: Adding new BizTalk application "HelloWorld" to configuration database (server="BDDBESBWMV01", database="BizTalkMgmtDb")...
    Information: Added application "HelloWorld".
    Command succeeded with 0 errors, 0 warnings.
    UndeploySchemas:
    Adding assembly name 'HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a3b87e04e203d0f' to item group.
    "C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools\gacutil.exe" /u "HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a3b87e04e203d0f"
    Microsoft (R) .NET Global Assembly Cache Utility. Version 4.0.30319.1
    Copyright (c) Microsoft Corporation. All rights reserved.
    Number of assemblies uninstalled = 0
    Number of failures = 0
    DeploySchemas:
    BTSTask.exe AddResource -Type:BizTalkAssembly -Source:"..\HelloWorld\bin\Debug\HelloWorld.dll" -ApplicationName:"HelloWorld" -Options:GacOnAdd,GacOnImport,GacOnInstall
    Microsoft (R) BizTalk Application Deployment Utility Version 3.10.229.0
    Copyright (c) 2013 Microsoft Corporation. All rights reserved.
    Information: Adding resource (-Type="System.BizTalk:BizTalkAssembly" -Luid="HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a3b87e04e203d0f") to application "HelloWorld"...
    Serialized BizTalk assembly "HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a3b87e04e203d0f" from "..\HelloWorld\bin\Debug\HelloWorld.dll".
    Information: Validating resources (count=1)...
    * Validating resource (-Type="System.BizTalk:BizTalkAssembly" -Luid="HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a3b87e04e203d0f")...
    Information: Performing change requests...
    Information: Calling BeginTypeChangeRequest for all selected resource types...
    PerformingBeginChangeRequest
    Adding resource (-Type="System.BizTalk:BizTalkAssembly" -Luid="HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a3b87e04e203d0f") to store.
    Information: * Performing change request on type "System.BizTalk:BizTalkAssembly" (count=1)...
    Information: Deploy server="BDDBESBWMV01" database="BizTalkMgmtDb" assembly="C:\Users\dopdevbiztalkadmin1\AppData\Local\Temp\BT\PID9536\BizTalkAssembly\4b4a4387187988d2dc55c72b16113199\HelloWorld.dll"
    Information: Installed the "C:\Users\dopdevbiztalkadmin1\AppData\Local\Temp\BT\PID9536\BizTalkAssembly\4b4a4387187988d2dc55c72b16113199\HelloWorld.dll" assembly into the Global Assembly Cache. (force=True)
    Information: Deploy operation succeeded.
    Information: Deploy server="BDDBESBWMV01" database="BizTalkMgmtDb" assembly="C:\Users\dopdevbiztalkadmin1\AppData\Local\Temp\BT\PID9536\BizTalkAssembly\4b4a4387187988d2dc55c72b16113199\HelloWorld.dll"
    Saved schema "Microsoft.Samples.BizTalk.HelloWorld.POSchema, HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a3b87e04e203d0f".
    Saved schema "Microsoft.Samples.BizTalk.HelloWorld.InvoiceSchema, HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a3b87e04e203d0f".
    Saved map "Microsoft.Samples.BizTalk.HelloWorld.POToInvoice".
    Saved message type "Microsoft.Samples.BizTalk.HelloWorld.POMessageType".
    Saved message type "Microsoft.Samples.BizTalk.HelloWorld.InvoiceMessageType".
    Saved port type "Microsoft.Samples.BizTalk.HelloWorld.ReceivePOPortType".
    Saved port type "Microsoft.Samples.BizTalk.HelloWorld.SendInvoicePortType".
    Saved orchestration "Microsoft.Samples.BizTalk.HelloWorld.HelloSchedule".
    Saved schema "Microsoft.Samples.BizTalk.HelloWorld.POSchema, HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a3b87e04e203d0f".
    Saved schema "Microsoft.Samples.BizTalk.HelloWorld.InvoiceSchema, HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a3b87e04e203d0f".
    Saved map "Microsoft.Samples.BizTalk.HelloWorld.POToInvoice".
    Saved message type "Microsoft.Samples.BizTalk.HelloWorld.POMessageType".
    Saved message type "Microsoft.Samples.BizTalk.HelloWorld.InvoiceMessageType".
    Saved port type "Microsoft.Samples.BizTalk.HelloWorld.ReceivePOPortType".
    Saved port type "Microsoft.Samples.BizTalk.HelloWorld.SendInvoicePortType".
    Saved orchestration "Microsoft.Samples.BizTalk.HelloWorld.HelloSchedule".
    Information: Installed the "C:\Users\dopdevbiztalkadmin1\AppData\Local\Temp\BT\PID9536\BizTalkAssembly\4b4a4387187988d2dc55c72b16113199\HelloWorld.dll" assembly into the Global Assembly Cache. (force=True)
    Information: Deploy operation succeeded.
    Information: Deployed the following 1 BizTalk assemblies:
    HelloWorld.dll
    EXEC : warning : If any of the assemblies were previously loaded by a Host Instance, it may be necessary to restart the Host Instance for changes to take effect. [C:\BTDF\Walkthrough1\HelloWorld.Deployment\Deployment.btdfproj]
    Information: Commit the change requests...
    * Performing EndTypeChangeRequest for resource type "System.BizTalk:BizTalkAssembly".
    Command succeeded with 0 errors, 0 warnings.
    DeploySharedAssemblies:
    Deploying additional assemblies to GAC...
    "C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools\gacutil.exe" /f /i "C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools\SSOSettingsFileReader.dll"
    Microsoft (R) .NET Global Assembly Cache Utility. Version 4.0.30319.1
    Copyright (c) Microsoft Corporation. All rights reserved.
    Assembly successfully added to the cache
    Finished deploying additional assemblies to GAC.
    ImportBindings:
    Copying file from "C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindings.xml" to "C:\BTDF\Walkthrough1\HelloWorld.Deployment\HelloWorld_PortBindings.xml".
    BTSTask.exe AddResource -Type:BizTalkBinding -Overwrite -Source:"C:\BTDF\Walkthrough1\HelloWorld.Deployment\HelloWorld_PortBindings.xml" -ApplicationName:"HelloWorld"
    Microsoft (R) BizTalk Application Deployment Utility Version 3.10.229.0
    Copyright (c) 2013 Microsoft Corporation. All rights reserved.
    Information: Adding resource (-Type="System.BizTalk:BizTalkBinding" -Luid="HelloWorld_PortBindings.xml") to application "HelloWorld"...
    Information: Validating resources (count=1)...
    * Validating resource (-Type="System.BizTalk:BizTalkBinding" -Luid="HelloWorld_PortBindings.xml")...
    Information: Performing change requests...
    Information: Calling BeginTypeChangeRequest for all selected resource types...
    PerformingBeginChangeRequest
    Updating resource (-Type="System.BizTalk:BizTalkBinding" -Luid="HelloWorld_PortBindings.xml") in store.
    Information: * Performing change request on type "System.BizTalk:BizTalkBinding" (count=1)...
    Information: Commit the change requests...
    * Performing EndTypeChangeRequest for resource type "System.BizTalk:BizTalkBinding".
    Command succeeded with 0 errors, 0 warnings.
    Deleting file "C:\BTDF\Walkthrough1\HelloWorld.Deployment\HelloWorld_PortBindings.xml".
    BTSTask.exe ImportBindings -Source:"C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindings.xml" -ApplicationName:"HelloWorld"
    Microsoft (R) BizTalk Application Deployment Utility Version 3.10.229.0
    Copyright (c) 2013 Microsoft Corporation. All rights reserved.
    Information: Importing bindings "C:\BTDF\Walkthrough1\HelloWorld.Deployment\PortBindings.xml" into application "HelloWorld" in BizTalk configuration database (server="BDDBESBWMV01", database="BizTalkMgmtDb")...
    Information: Imported application "HelloWorld" bindings.
    Command succeeded with 0 errors, 0 warnings.
    DeploySSO:
    "C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools\SSOSettingsFileImport.exe" "HelloWorld" /settingsFile:"C:\BTDF\Walkthrough1\HelloWorld.Deployment\EnvironmentSettings\Exported_LocalSettings.xml" /userGroupName:"BizTalk Application Users" /adminGroupName:"BizTalk Server Administrators"
    Error persisting to SSO:
    System.Runtime.InteropServices.COMException (0xC0002A18): The format of the account name is not valid. Domain accounts must include the domain name. Local accounts must not include a domain or computer name.
    at Microsoft.BizTalk.SSOClient.Interop.ISSOAdmin.CreateApplication(String applicationName, String description, String contactInfo, String userGroupName, String adminGroupName, Int32 flags, Int32 numFields)
    at SSOSettingsFileManager.SSOHelper.CreateApp(String appName, String userGroup, String adminGroup)
    at SSOSettingsFileManager.SettingsFileImport.SaveSettingsToSSO(String affiliateAppName, String inSettings, String userGroupName, String adminGroupName)
    at SSOSettingsFileManager.SettingsFileImport.Main(String[] args)
    C:\Program Files (x86)\MSBuild\DeploymentFrameworkForBizTalk\5.0\BizTalkDeploymentFramework.targets(1701,5): error MSB3073: The command ""C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools\SSOSettingsFileImport.exe" "HelloWorld" /settingsFile:"C:\BTDF\Walkthrough1\HelloWorld.Deployment\EnvironmentSettings\Exported_LocalSettings.xml" /userGroupName:"BizTalk Application Users" /adminGroupName:"BizTalk Server Administrators"" exited with code -1. [C:\BTDF\Walkthrough1\HelloWorld.Deployment\Deployment.btdfproj]
    Done Building Project "C:\BTDF\Walkthrough1\HelloWorld.Deployment\Deployment.btdfproj" (Deploy target(s)) -- FAILED.
    Build FAILED.
    "C:\BTDF\Walkthrough1\HelloWorld.Deployment\Deployment.btdfproj" (Deploy target) (1) ->
    (DeploySchemas target) ->
    EXEC : warning : If any of the assemblies were previously loaded by a Host Instance, it may be necessary to restart the Host Instance for changes to take effect. [C:\BTDF\Walkthrough1\HelloWorld.Deployment\Deployment.btdfproj]
    "C:\BTDF\Walkthrough1\HelloWorld.Deployment\Deployment.btdfproj" (Deploy target) (1) ->
    (DeploySSO target) ->
    C:\Program Files (x86)\MSBuild\DeploymentFrameworkForBizTalk\5.0\BizTalkDeploymentFramework.targets(1701,5): error MSB3073: The command ""C:\Program Files (x86)\Deployment Framework for BizTalk 5.5\Framework\DeployTools\SSOSettingsFileImport.exe" "HelloWorld" /settingsFile:"C:\BTDF\Walkthrough1\HelloWorld.Deployment\EnvironmentSettings\Exported_LocalSettings.xml" /userGroupName:"BizTalk Application Users" /adminGroupName:"BizTalk Server Administrators"" exited with code -1. [C:\BTDF\Walkthrough1\HelloWorld.Deployment\Deployment.btdfproj]
    1 Warning(s)
    1 Error(s)
    Time Elapsed 00:00:54.94

    Hi Pratibha,
    Thank you for posting in MSND forum.
    Since
    this forum is to discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual Studio Editor.
    Based
    on your issue, since it is related to the Deployment Framework for Biztalk (BTDF), so I suggest you could consult this issue directly to this Deployment Framework for Biztalk (BTDF) website:
    https://biztalkdeployment.codeplex.com/discussions , you will get better support.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SmartForms : Printing Non-English characters with SWIN output device?

    I have a Japanese Text (entered in Unicode at So10) and I want to print it from my SmartForms application using SWIN device type.
    I thought SWIN converted all the components into graphics before sending to printer. To my surprise, the Japanese text printed out as "########".
    I even tried duplicate the SWIN output device to another output device and changed the character set to 4103 UTF-16LE Unicode / ISO/IEC 10646 but then the print process hang.
    Anyone knows how to overcome the problem so that I can print Japanese with SWin output device?

    I have a Japanese Text (entered in Unicode at So10) and I want to print it from my SmartForms application using SWIN device type.
    I thought SWIN converted all the components into graphics before sending to printer. To my surprise, the Japanese text printed out as "########".
    I even tried duplicate the SWIN output device to another output device and changed the character set to 4103 UTF-16LE Unicode / ISO/IEC 10646 but then the print process hang.
    Anyone knows how to overcome the problem so that I can print Japanese with SWin output device?

  • CS5 Error with Animation Output

    Running CS5 on a Mac 10.6.4
    Every time I render, it gives the following error message:
    An output module failed. The file may be damaged or corrupted. (-1610153464)
    I've tested the files on a different machine and they open and render out fine.
    I did some searches and for some it was the dreaded Optical Flares plugin from Video CoPilot causing this same problem.
    I'm having these issues and I don't have any plugins installed.
    Re-Installed everything 3 times, trashed preferences, removed plugins from the Application support and still no luck.
    The only thing that works for me is outputting to a PNG or JPEG sequence.
    If I try to render using the Animation preset, It gives the error message.
    I also have been getting a weird "MooV" error message when I try to import certain types of quicktime files. Not all just a few random ones.
    All of this leads me to believe it may be an issue with 32 bit Quicktime.
    Any suggests on how I can get the Animation preset working again?
    Thanks.
    It gives an error message

    Sure, I had the exact problem posted at the top of this thread. Spent two days reading all the posts regarding anything that had to do with this Output Module error. I finally came upon a post of someone who was having a similar issue as I with the hang at start up. However, the post was replied to by a guy who said "Repeat the hang with only AE running,  then go to the Activity Monitor and select the QT32 Server process.   Then press the "Sample Process" button at the top of the window...It looks like both of you are having a similar problem with a third party AVI codec.  Please remove or uninstall any third party AVI codecs such as DivX,  XVid, etc. from your system and try AE again."
    "You can also temporarily disable these components by closing any QT related apps and then dragging components out of the Library/QuickTime folder on your boot drive.   If that works, try adding them back one by one until it fails again.  That is the problem codec."
    So I removed AviImporter.component from Library/Quicktime on the boot drive and these two problems were solved.
    Here is the link to the post where I found this info.
    http://forums.adobe.com/thread/634237?start=0&tstart=0

  • Oracle9iR2/Solaris8 --  DRG-11207: user filter command exited with status 137

    The ctx_ddl.sync_index() procedure hangs when I use it to synchronize the index. It is obvious that the INSO filter is not responding.The LD_LIBRARY_PATH and PATH variables are correctly pointing to $ORACLE_HOME/ctx/lib, $ORACLE_HOME/lib and $ORACLE_HOME/bin,$ORACLE_HOME/ctx/bin respectively. The error in CTX_USER_INDEX_ERRORS is the all too famous:'DRG-11207: user filter command exited with status 137'. The platform is 9iR2/Solaris 8.
    Any ideas as to how to get INSO to start working with the various documents ON SOLARIS 8???
    Thanks

    The ctx_ddl.sync_index() procedure hangs when I use it to synchronize the index. It is obvious that the INSO filter is not responding.The LD_LIBRARY_PATH and PATH variables are correctly pointing to $ORACLE_HOME/ctx/lib, $ORACLE_HOME/lib and $ORACLE_HOME/bin,$ORACLE_HOME/ctx/bin respectively. The error in CTX_USER_INDEX_ERRORS is the all too famous:'DRG-11207: user filter command exited with status 137'. The platform is 9iR2/Solaris 8.
    Any ideas as to how to get INSO to start working with the various documents ON SOLARIS 8???
    Thanks

  • How create and work with Z output to meet the client requirment?

    hi  gurus,
    I am SD functional consultant and need ur help
    Please explain me how create and work with Z output .
    How we arrange and change the fields in header and footer
    where and how we do changes in Layouts setting and SAP scripts to meet the user requirments.
    pls forward functional or Tech spec of Z output
    points will be rewarded
    thanx & regards
    shabnum

    Hi shabnum ,
    I hope you can do it.
    Goto SE71, enter form name--> click change
    1) click in page window command button, Identify the header and footer window
    2) single click on Header window and click change button(pencil symbol)
    3) identify the fields and change order of the fields
    I hope this will help to solve your issue
    Regards,
    SaiRam

  • Copy command hangs

    Hello All,
    I'm having problems copying data between
    oracle 8.1.6.1 dbs, both running on Red
    Hat 6.2.
    I'm using syntax like
    copy from username/password@server -
    insert applications -
    using select * from applications
    This works fine when copying between
    oracle 8.1.6.2 dbs running on solaris,
    but on linux the command hangs and
    starts sucking up CPU.
    Thanks in advance,
    Asif.

    thx Kaj for your quick and helpful reply...
    now i just use xcopy with /Q to not display so much information!!
    but what's the good way to read both stdout and stderr at the same time and store them as useful informations!?
    thx again : )

  • Ipseckey hang with error PF_KEY socket timed out

    When I use ipseckey program (on Solaris8 for intel) to add new SA,
    ipseckey hang with error PF_KEY socket timed out.
    other command like "dump" or "save all" still work
    can anybody help ?
    le huy

    Sorry, but I don't know exactly, it was work of network admin (or sysadmin). I think relation between Application Server and Database Server was corrected - at the server or at the Data Communications Equipment.
    But problem was OUT OF WebCenter Spaces, any adjustments at WebLogic Server, etc... had no results.
    Sorry.

  • Intermittent issues with video output initialization

    Hi Guys,
    I have received a new (i5, 15') Mac-book Pro more than 9 months ago. About 6 months ago it started having some serious intermittent issues with video output. Those issues are numerous and different every time, but all seems to lead to GPU problem. In chronological order:
    1)Started showing static colors as flickering and white color as blue.
    2)Blue screens in bootcamp and hangs in mac os
    3)Startup problems (fail to start)
    4)Startup problems resolved with firmware patch, but video fails to initialize during startups:shows black on mac os, and distorted green during bootcamp.
    So right now I am stuck with #4. The main issue is that it is intermittent - sometimes it starts to happen and sometimes it does not. Is there any way I can make apple replace the unit or the video-card? I did bring it to a apple certified service center, but they did not give any crap, even when I was able to demonstrate it to 2 people in there and gave me back the unit after failing to reproduce the problem on their own. I have all those problems in video and photos, but I don't see anywhere I could send them besides this forum.
    Some of the evidence (I have much more):
    http://www.youtube.com/watch?v=MsTYnUFCX1I
    http://www.youtube.com/watch?v=zK85Hi9gx24
    http://www.youtube.com/watch?v=pRH3DpN7qB0
    http://www.youtube.com/watch?v=dMXo8qF6S_k
    Message was edited by: Breakable

    "I have received a new (i5, 15') Mac-book Pro more than 9 months ago."
    You are still under warranty. *Call AppleCare*
    "Is there any way I can make apple replace the unit or the video-card? I did bring it to a apple certified service center, but they did not give any crap"
    No you cannot make Apple do anything. What you can do is call _Apple Customer Relations_ in your country. You can call AppleCare & ask politely & firmly to be transferred over to Customer Relations if there is no direct phone number like there is in the US. Relay to them what you stated in this post. See what they can do for you.
    You posted in the wrong MBP area (Original). I have requested that a HOST move your post to the proper forum MacBook Pro (2008 and Later). There will be no need for you to repost.

  • Safari Hanging with OS X upgrade.

    I have a imac mid 2007 2.4GHz Intel Core 2 Duo with 4GB of Ram. I recently upgraded this to OS X Lion and have been experiencing Hangs with my Safari that require a hard boot restart. This seems to happen after the machine has been running for a period of time and I find that Safari wont respond and I get the beach ball as i try to access. I perform a force quit and try to restart but this doesn't occur. It also wont allow the system to shutdown without a hard restart. I have also noticed mail stops working too.
    Here is the most recent log of one of the hangs..
    Any thoughts or suggestions on what to look for to help correct?
    Date/Time:       2012-08-08 18:08:20 -0500
    OS Version:      10.8 (Build 12A269)
    Architecture:    x86_64
    Report Version:  11
    Command:         Safari
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Version:         6.0 (8536.25)
    Build Version:   2
    Project Name:    WebBrowser
    Source Version:  7536025000000000
    Parent:          launchd [442]
    PID:             18017
    Event:           hang
    Duration:        2.77s
    Steps:           28 (100ms sampling interval)
    Hardware model:  iMac7,1
    Active cpus:     2
    Free pages:      652414 pages (-711)
    Pageins:         34 pages
    Pageouts:        0 pages
    Process:         Safari [18017]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Architecture:    x86_64
    Parent:          launchd [442]
    UID:             501
    Task size:       2407 pages
      Thread 0x19841    DispatchQueue 1          priority 44       
      28 start + 1 (libdyld.dylib) [0x7fff8b86c7e1]
        28 SafariMain + 166 (Safari) [0x7fff8af53734]
          28 NSApplicationMain + 398 (AppKit) [0x7fff901ca47f]
            28 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 360 (AppKit) [0x7fff901cdcbe]
              28 -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 200 (AppKit) [0x7fff901cdede]
                28 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219 (AppKit) [0x7fff901ce0a9]
                  28 loadNib + 317 (AppKit) [0x7fff901ceb7d]
                    28 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 337 (AppKit) [0x7fff901ef857]
                      28 -[NSIBObjectData instantiateObject:] + 311 (AppKit) [0x7fff901f00b2]
                        28 -[NSCustomObject nibInstantiate] + 89 (AppKit) [0x7fff90210725]
                          28 objc_msgSend + 188 (libobjc.A.dylib) [0x7fff8f54237c]
                            28 lookUpMethod + 71 (libobjc.A.dylib) [0x7fff8f543f6f]
                              28 prepareForMethodLookup + 164 (libobjc.A.dylib) [0x7fff8f544173]
                                28 _class_initialize + 310 (libobjc.A.dylib) [0x7fff8f5442b6]
                                  28 +[AppController initialize] + 280 (Safari) [0x7fff8ad42b15]
                                    28 Safari::Application::initializeProcessContext() + 1149 (Safari) [0x7fff8affd54f]
                                      28 Safari::ReaderConfiguration::shared() + 46 (Safari) [0x7fff8af30a9e]
                                        28 Safari::ReaderConfiguration::ReaderConfiguration() + 94 (Safari) [0x7fff8af307d6]
                                          28 Safari::RemoteConfigurationsController::addConsumerForKey(Safari::RemoteConfigu rationConsumer*, Safari::CF::String const&) + 94 (Safari) [0x7fff8af4d530]
                                            28 Safari::RemoteConfigurationsController::intervalBeforeNextDownload() const + 265 (Safari) [0x7fff8af4d907]
                                              28 Safari::RemoteConfigurationsController::initializeSuccessfulDownloadIntervalIfN eeded() const + 59 (Safari) [0x7fff8af4d9a9]
                                                28 Safari::RemoteConfigurationsController::loadConfigurationForKeyFromDisk(Safari: :CF::String const&, Safari::CF::URL const&) const + 65 (Safari) [0x7fff8af4d5d3]
                                                  28 Safari::configurationsDictionaryFromSignedConfigurationsFileData(Safari::CF::Da ta const&) + 46 (Safari) [0x7fff8af4d648]
                                                    28 Safari::SignatureVerifier::initializeProvider() + 23 (Safari) [0x7fff8af76e51]
                                                      28 Safari::cdsaCSPAttach(long&) + 102 (Safari) [0x7fff8ae12d62]
                                                        28 CSSM_ModuleLoad + 82 (Security) [0x7fff8def1e42]
                                                          28 CssmManager::loadModule(Security::Guid const&, unsigned int, Security::ModuleCallback const&) + 106 (Security) [0x7fff8def1f3a]
                                                            28 MdsComponent::MdsComponent(Security::Guid const&) + 183 (Security) [0x7fff8def24cb]
                                                              28 Security::CssmClient::Table<Security::MDSClient::Common>::fetch(Security::CssmC lient::Query const&, int) + 103 (Security) [0x7fff8def2fdf]
                                                                28 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 202 (Security) [0x7fff8def360c]
                                                                  28 Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39 (Security) [0x7fff8dfb53a7]
                                                                    28 Security::MDSClient::Directory::cdsa() const + 93 (Security) [0x7fff8def3b55]
                                                                      28 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 226 (Security) [0x7fff8df53676]
                                                                        28 Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 125 (Security) [0x7fff8df537bd]
                                                                          28 Security::SecurityServer::ClientSession::activate() + 137 (Security) [0x7fff8df0b3f5]
                                                                            28 Security::ModuleNexus<Security::SecurityServer::ClientSession::Global>::operato r()() + 69 (Security) [0x7fff8df0b60d]
                                                                              28 Security::ModuleNexusCommon::create(void* (*)()) + 279 (Security) [0x7fff8deeffcf]
                                                                                28 Security::ModuleNexus<Security::SecurityServer::ClientSession::Global>::make() + 28 (Security) [0x7fff8df538fc]
                                                                                  28 Security::SecurityServer::ClientSession::Global::Global() + 132 (Security) [0x7fff8df5399c]
                                                                                    28 ucsp_client_verifyPrivileged2 + 96 (Security) [0x7fff8df53ce4]
                                                                                       28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                                                                                        *28 hndl_mach_scall64 + 19 (mach_kernel) [0xffffff80002ced13]
                                                                                          *28 ??? (mach_kernel + 678614) [0xffffff80002a5ad6]
                                                                                            *28 mach_msg_overwrite_trap + 187 (mach_kernel) [0xffffff80002195fb]
                                                                                              *28 ipc_kmsg_send + 372 (mach_kernel) [0xffffff8000210554]
                                                                                                *28 ipc_mqueue_send + 315 (mach_kernel) [0xffffff8000212ceb]
                                                                                                  *28 thread_block_reason + 300 (mach_kernel) [0xffffff800022d9dc]
                                                                                                    *28 ??? (mach_kernel + 190225) [0xffffff800022e711]
                                                                                                      *28 machine_switch_context + 366 (mach_kernel) [0xffffff80002b3d3e]
      Thread 0x19856    DispatchQueue 2          priority 49       
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x1985c    priority 47       
      28 thread_start + 13 (libsystem_c.dylib) [0x7fff931401c1]
        28 _pthread_start + 327 (libsystem_c.dylib) [0x7fff93153782]
          28 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff8ff08a9f]
            28 WebCore::IconDatabase::iconDatabaseSyncThread() + 500 (WebCore) [0x7fff8b8bf2b4]
              28 WebCore::IconDatabase::syncThreadMainLoop() + 107 (WebCore) [0x7fff8b8c179b]
                28 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff930240fa]
                 *28 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5cb0]
      Binary Images:
             0x10b113000 -        0x10b113fff  com.apple.Safari 6.0 (8536.25) <74DEA0E2-CDBD-3DCA-AE2F-3E36BD946778> /Applications/Safari.app/Contents/MacOS/Safari
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff8ad37000 -     0x7fff8b220fff  com.apple.Safari.framework 8536 (8536.25) <30017BBB-3A76-31D7-A211-D8FF1E83B836> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
          0x7fff8b86a000 -     0x7fff8b86dff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8b8bb000 -     0x7fff8c86dff7  com.apple.WebCore 8536 (8536.24) <A890E18B-9224-38B3-ADFB-C84B3BCD2AAC> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
          0x7fff8deef000 -     0x7fff8e1bcff7  com.apple.security 7.0 (55163.44) <E62305A2-958D-3EBC-B7E5-9A151D3E1777> /System/Library/Frameworks/Security.framework/Versions/A/Security
          0x7fff8f53c000 -     0x7fff8f654a27  libobjc.A.dylib <9FA80CDA-97F4-3801-8879-0C1B976BC5CA> /usr/lib/libobjc.A.dylib
          0x7fff8fccb000 -     0x7fff8ff64ff7  com.apple.JavaScriptCore 8536 (8536.24) <3A80677B-3381-3281-8033-0F96F7D8D01A> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
          0x7fff900d8000 -     0x7fff90d02fff  com.apple.AppKit 6.8 (1187) <C9309F5C-9441-3E5B-A120-B03FEDDA63F9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff93012000 -     0x7fff9302dff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
          0x7fff9313f000 -     0x7fff9320bfef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         accountsd [485]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [442]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1303 pages
      Thread 0x90c      DispatchQueue 1          priority 31       
      28 start + 1 (libdyld.dylib) [0x7fff8b86c7e1]
        28 ??? (accountsd + 3040) [0x10cdb3be0]
          28 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff86694dd2]
            28 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff86695606]
              28 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8668ff23]
                28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                 *28 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x914      DispatchQueue 2          priority 33       
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Binary Images:
             0x10cdb3000 -        0x10cdb3fff  accountsd <6B917177-B1C5-3840-A150-895F9111AE9E> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff86660000 -     0x7fff86849fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff8b86a000 -     0x7fff8b86dff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff93012000 -     0x7fff9302dff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         AirDisplayStatusItem [539]
    Path:            /Library/PreferencePanes/Air Display Preferences.prefPane/Contents/Resources/AirDisplayStatusItem.app/Contents/MacOS /AirDisplayStatusItem
    Architecture:    x86_64
    Parent:          launchd [442]
    UID:             501
    Task size:       2330 pages (+3)
    Process:         AirPort Base Station Agent [547]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    Parent:          launchd [442]
    UID:             501
    Sudden Term:     Clean
    Task size:       476 pages
      Thread 0xc85      DispatchQueue 1          priority 31       
      28 start + 1 (libdyld.dylib) [0x7fff8b86c7e1]
        28 ??? (AirPort Base Station Agent + 71957) [0x10c4dc915]
          28 CFRunLoopRun + 97 (CoreFoundation) [0x7fff866a3a81]
            28 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff86694dd2]
              28 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff86695606]
                28 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8668ff23]
                  28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                   *28 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xc87      DispatchQueue 2          priority 33       
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0xc8b      priority 31       
      28 thread_start + 13 (libsystem_c.dylib) [0x7fff931401c1]
        28 _pthread_start + 327 (libsystem_c.dylib) [0x7fff93153782]
          28 __select + 10 (libsystem_kernel.dylib) [0x7fff93024322]
           *28 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Thread 0xc8c      priority 31       
      28 thread_start + 13 (libsystem_c.dylib) [0x7fff931401c1]
        28 _pthread_start + 327 (libsystem_c.dylib) [0x7fff93153782]
          28 ??? (AirPort Base Station Agent + 72800) [0x10c4dcc60]
            28 ??? (AirPort Base Station Agent + 10633) [0x10c4cd989]
              28 ??? (AirPort Base Station Agent + 73571) [0x10c4dcf63]
                28 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff930240fa]
                 *28 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5cb0]
      Binary Images:
             0x10c4cb000 -        0x10c4e1ff7  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <F3A0627B-7620-3A09-A390-3FEBA3DE9CCD> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff86660000 -     0x7fff86849fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff8b86a000 -     0x7fff8b86dff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff93012000 -     0x7fff9302dff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
          0x7fff9313f000 -     0x7fff9320bfef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         aosnotifyd [113]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1884 pages
      Thread 0x395      DispatchQueue 1          priority 31       
      28 start + 1 (libdyld.dylib) [0x7fff8b86c7e1]
        28 ??? (aosnotifyd + 36447) [0x1041dce5f]
          28 ??? (aosnotifyd + 35537) [0x1041dcad1]
            28 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff88d49ace]
              28 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff86694dd2]
                28 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff86695606]
                  28 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8668ff23]
                    28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                     *28 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x3b8      DispatchQueue 2          priority 33       
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x510      priority 63       
      28 thread_start + 13 (libsystem_c.dylib) [0x7fff931401c1]
        28 _pthread_start + 327 (libsystem_c.dylib) [0x7fff93153782]
          28 __NSThread__main__ + 1345 (Foundation) [0x7fff88d44842]
            28 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff88ce67d6]
              28 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff86694dd2]
                28 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff86695606]
                  28 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8668ff23]
                    28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                     *28 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x51b      priority 31       
      28 thread_start + 13 (libsystem_c.dylib) [0x7fff931401c1]
        28 _pthread_start + 327 (libsystem_c.dylib) [0x7fff93153782]
          28 __select + 10 (libsystem_kernel.dylib) [0x7fff93024322]
           *28 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Binary Images:
             0x1041d4000 -        0x10421bff7  aosnotifyd <A9359981-2023-3781-93F1-89D423F0F712> /usr/sbin/aosnotifyd
          0x7fff86660000 -     0x7fff86849fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff88caf000 -     0x7fff8900bff7  com.apple.Foundation 6.8 (945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8b86a000 -     0x7fff8b86dff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff93012000 -     0x7fff9302dff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
          0x7fff9313f000 -     0x7fff9320bfef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         appleeventsd [51]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             71
    Sudden Term:     Dirty (allows idle exit)
    Task size:       465 pages
      Thread 0x1d0      DispatchQueue 2          priority 33       
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x1d1      DispatchQueue 7          priority 31       
      28 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff86858dc9]
        28 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff93024566]
         *28 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Thread 0x19844    priority 31       
    *28 ??? (mach_kernel + 3911664) [0xffffff80005baff0]
      Binary Images:
             0x10c363000 -        0x10c363fff  appleeventsd <D689616F-79C5-301C-B260-30FAD64BC2A5> /System/Library/CoreServices/appleeventsd
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff93012000 -     0x7fff9302dff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         AppleIDAuthAgent [520]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [442]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       504 pages
      Thread 0xb98      DispatchQueue 2          priority 33       
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0xb9a      DispatchQueue 7          priority 31       
      28 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff86858dc9]
        28 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff93024566]
         *28 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Thread 0xd41      DispatchQueue 17         priority 31       
      28 start_wqthread + 13 (libsystem_c.dylib) [0x7fff931401b1]
        28 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff93155ceb]
          28 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff8685a207]
            28 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff8685a335]
              28 _dispatch_queue_drain + 180 (libdispatch.dylib) [0x7fff8685a48c]
                28 _dispatch_queue_invoke + 72 (libdispatch.dylib) [0x7fff8685a349]
                  28 _dispatch_source_invoke + 691 (libdispatch.dylib) [0x7fff8685b2d7]
                    28 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff868590fa]
                      28 _dispatch_after_timer_callback + 22 (libdispatch.dylib) [0x7fff8685d9ab]
                        28 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff868590fa]
                          28 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff8685cf3d]
                            28 ??? (AppleIDAuthAgent + 12731) [0x1010601bb]
                              28 semaphore_timedwait_trap + 10 (libsystem_kernel.dylib) [0x7fff930226da]
                               *28 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233e90]
      Binary Images:
             0x10105d000 -        0x10108efff  AppleIDAuthAgent <6CD06F27-701A-3FE6-B6CD-9A77FD389AE9> /System/Library/CoreServices/AppleIDAuthAgent
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff93012000 -     0x7fff9302dff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
          0x7fff9313f000 -     0x7fff9320bfef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         AppleSpell [613]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [442]
    UID:             501
    Sudden Term:     Clean
    Task size:       966 pages
      Thread 0x1a5f     DispatchQueue 1          priority 46       
      28 start + 1 (libdyld.dylib) [0x7fff8b86c7e1]
        28 ??? (AppleSpell + 7271) [0x105509c67]
          28 -[NSSpellServer run] + 73 (Foundation) [0x7fff88e31066]
            28 CFRunLoopRun + 97 (CoreFoundation) [0x7fff866a3a81]
              28 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff86694dd2]
                28 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff86695606]
                  28 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8668ff23]
                    28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                     *28 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x1a64     DispatchQueue 2          priority 48       
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Binary Images:
             0x105508000 -        0x1055bdff7  com.apple.AppleSpell 1.9 (173.1) <6ED0981A-B081-3345-8EBB-E4AB821B077A> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff86660000 -     0x7fff86849fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff88caf000 -     0x7fff8900bff7  com.apple.Foundation 6.8 (945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8b86a000 -     0x7fff8b86dff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff93012000 -     0x7fff9302dff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         apsd [57]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1942 pages
      Thread 0x13a      DispatchQueue 1          priority 31       
      28 start + 1 (libdyld.dylib) [0x7fff8b86c7e1]
        28 ??? (apsd + 19622) [0x109af7ca6]
          28 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff88ce23da]
            28 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff88d49ace]
              28 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff86694dd2]
                28 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff86695606]
                  28 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8668ff23]
                    28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                     *28 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x32f      DispatchQueue 2          priority 33       
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x3c0      priority 63       
      28 thread_start + 13 (libsystem_c.dylib) [0x7fff931401c1]
        28 _pthread_start + 327 (libsystem_c.dylib) [0x7fff93153782]
          28 __NSThread__main__ + 1345 (Foundation) [0x7fff88d44842]
            28 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff88ce67d6]
              28 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff86694dd2]
                28 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff86695606]
                  28 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8668ff23]
                    28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                     *28 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x41a      priority 31       
      28 thread_start + 13 (libsystem_c.dylib) [0x7fff931401c1]
        28 _pthread_start + 327 (libsystem_c.dylib) [0x7fff93153782]
          28 __select + 10 (libsystem_kernel.dylib) [0x7fff93024322]
           *28 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Binary Images:
             0x109af3000 -        0x109b70ff7  apsd <524BF285-5D28-3B0A-9CC0-1AC469933E6E> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff86660000 -     0x7fff86849fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff88caf000 -     0x7fff8900bff7  com.apple.Foundation 6.8 (945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8b86a000 -     0x7fff8b86dff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff93012000 -     0x7fff9302dff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
          0x7fff9313f000 -     0x7fff9320bfef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         assistantd [18016]
    Path:            /System/Library/PrivateFrameworks/AssistantServices.framework/assistantd
    Architecture:    x86_64
    Parent:          launchd [442]
    UID:             501
    Task size:       1402 pages
      Thread 0x197f2    DispatchQueue 1          priority 31       
      28 start + 1 (libdyld.dylib) [0x7fff8b86c7e1]
        28 ??? (assistantd + 7168) [0x10979fc00]
          28 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff88ce23da]
            28 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff88d49ace]
              28 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff86694dd2]
                28 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff86695606]
                  28 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8668ff23]
                    28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                     *28 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x197fa    DispatchQueue 2          priority 33       
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x197fc    DispatchQueue 67         priority 31       
      28 start_wqthread + 13 (libsystem_c.dylib) [0x7fff931401b1]
        28 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff93155ceb]
          28 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff8685a207]
            28 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff8685a335]
              28 _dispatch_queue_drain + 235 (libdispatch.dylib) [0x7fff8685a4c3]
                28 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff868590fa]
                  28 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff8685cf3d]
                    28 ??? (assistantd + 76507) [0x1097b0adb]
                      28 ??? (assistantd + 36287) [0x1097a6dbf]
                        28 ??? (assistantd + 81378) [0x1097b1de2]
                          28 ??? (assistantd + 83717) [0x1097b2705]
                            28 SecItemCopyMatching_osx(__CFDictionary const*, void const**) + 108 (Security) [0x7fff8e020cf2]
                              28 _CreateSecItemParamsFromDictionary(__CFDictionary const*, int*) + 2942 (Security) [0x7fff8e02206e]
                                28 SecKeychainSearchCreateFromAttributes + 84 (Security) [0x7fff8df1031a]
                                  28 Security::KeychainCore::StorageManager::optionalSearchList(void const*, std::vector<Security::KeychainCore::Keychain, std::allocator<Security::KeychainCore::Keychain> >&) + 54 (Security) [0x7fff8df10432]
                                    28 Security::KeychainCore::StorageManager::getSearchList(std::vector<Security::Key chainCore::Keychain, std::allocator<Security::KeychainCore::Keychain> >&) + 183 (Security) [0x7fff8df1cd75]
                                      28 Security::KeychainCore::DynamicDLDBList::searchList() + 32 (Security) [0x7fff8df1dbe6]
                                        28 Security::KeychainCore::DynamicDLDBList::_load() + 329 (Security) [0x7fff8df1dd5f]
                                          28 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 202 (Security) [0x7fff8def360c]
                                            28 Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39 (Security) [0x7fff8dfb53a7]
                                              28 Security::MDSClient::Directory::cdsa() const + 93 (Security) [0x7fff8def3b55]
                                                28 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 226 (Security) [0x7fff8df53676]
                                                  28 Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 125 (Security) [0x7fff8df537bd]
                                                    28 Security::SecurityServer::ClientSession::activate() + 137 (Security) [0x7fff8df0b3f5]
                                                      28 Security::ModuleNexus<Security::SecurityServer::ClientSession::Global>::operato r()() + 69 (Security) [0x7fff8df0b60d]
                                                        28 Security::ModuleNexusCommon::create(void* (*)()) + 279 (Security) [0x7fff8deeffcf]
                                                          28 Security::ModuleNexus<Security::SecurityServer::ClientSession::Global>::make() + 28 (Security) [0x7fff8df538fc]
                                                            28 Security::SecurityServer::ClientSession::Global::Global() + 132 (Security) [0x7fff8df5399c]
                                                              28 ucsp_client_verifyPrivileged2 + 96 (Security) [0x7fff8df53ce4]
                                                                28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                                                                 *28 hndl_mach_scall64 + 19 (mach_kernel) [0xffffff80002ced13]
                                                                   *28 ??? (mach_kernel + 678614) [0xffffff80002a5ad6]
                                                                     *28 mach_msg_overwrite_trap + 187 (mach_kernel) [0xffffff80002195fb]
                                                                       *28 ipc_kmsg_send + 372 (mach_kernel) [0xffffff8000210554]
                                                                         *28 ipc_mqueue_send + 315 (mach_kernel) [0xffffff8000212ceb]
                                                                           *28 thread_block_reason + 300 (mach_kernel) [0xffffff800022d9dc]
                                                                             *28 ??? (mach_kernel + 190225) [0xffffff800022e711]
                                                                               *28 machine_switch_context + 366 (mach_kernel) [0xffffff80002b3d3e]
      Binary Images:
             0x10979e000 -        0x109a3eff7  assistantd <4F52B17D-3F60-33BE-B2E0-FFFF9A6B22B6> /System/Library/PrivateFrameworks/AssistantServices.framework/assistantd
          0x7fff86660000 -     0x7fff86849fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff88caf000 -     0x7fff8900bff7  com.apple.Foundation 6.8 (945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8b86a000 -     0x7fff8b86dff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8deef000 -     0x7fff8e1bcff7  com.apple.security 7.0 (55163.44) <E62305A2-958D-3EBC-B7E5-9A151D3E1777> /System/Library/Frameworks/Security.framework/Versions/A/Security
          0x7fff93012000 -     0x7fff9302dff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
          0x7fff9313f000 -     0x7fff9320bfef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         autofsd [56]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       457 pages
      Thread 0x18a      DispatchQueue 2          priority 33       
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x217      DispatchQueue 7          priority 31       
      28 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff86858dc9]
        28 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff93024566]
         *28 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Binary Images:
             0x1063d5000 -        0x1063d6fff  autofsd <84AA47F0-1486-37EE-9C69-12CB98C34F1C> /usr/libexec/autofsd
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
          0x7fff93012000 -     0x7fff9302dff7  libsystem_kernel.dylib <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <8D5F8EF3-9D12-384B-8070-EF2A49C45D24> /mach_kernel
    Process:         backupd [5931]
    Path:            /System/Library/CoreServices/backupd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Dirty
    Task size:       5850 pages (-7)
    Note:            Self-throttled
      Thread 0xe609     DispatchQueue 1          priority 4        
      28 start + 1 (libdyld.dylib) [0x7fff8b86c7e1]
        28 ??? (backupd + 66419) [0x10c381373]
          28 CFRunLoopRun + 97 (CoreFoundation) [0x7fff866a3a81]
            28 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff86694dd2]
              28 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff86695606]
                28 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8668ff23]
                  28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                   *28 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xe60d     DispatchQueue 2          priority 4        
      28 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8685ba2a]
        28 kevent + 10 (libsystem_kernel.dylib) [0x7fff93024d16]
         *28 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0xe615     DispatchQueue 10         priority 0        
      28 start_wqthread + 13 (libsystem_c.dylib) [0x7fff931401b1]
        28 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff93155ceb]
          28 _dispatch_worker_thread2 + 304 (libdispatch.dylib) [0x7fff8685a23e]
            28 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff868590fa]
              28 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff8685cf3d]
                28 ??? (backupd + 26273) [0x10c3776a1]
                  28 ??? (backupd + 27058) [0x10c3779b2]
                    28 ??? (backupd + 42132) [0x10c37b494]
                      28 ??? (backupd + 70433) [0x10c382321]
                        28 ??? (backupd + 74296) [0x10c383238]
                          28 ??? (backupd + 358939) [0x10c3c8a1b]
                            28 -[DMManager init] + 909 (DiskManagement) [0x7fff8f7b3bbe]
                              28 AuthorizationCreate + 60 (Security) [0x7fff8dfad02c]
                                28 Security::SecurityServer::ClientSession::authCreate(AuthorizationItemSet const*, AuthorizationItemSet const*, unsigned int, Security::SecurityServer::AuthorizationBlob&) + 125 (Security) [0x7fff8e0803df]
                                  28 Security::SecurityServer::ClientSession::activate() + 137 (Security) [0x7fff8df0b3f5]
                                    28 Security::ModuleNexus<Security::SecurityServer::ClientSession::Global>::operato r()() + 69 (Security) [0x7fff8df0b60d]
                                      28 Security::ModuleNexusCommon::create(void* (*)()) + 279 (Security) [0x7fff8deeffcf]
                                        28 Security::ModuleNexus<Security::SecurityServer::ClientSession::Global>::make() + 28 (Security) [0x7fff8df538fc]
                                          28 Security::SecurityServer::ClientSession::Global::Global() + 132 (Security) [0x7fff8df5399c]
                                            28 ucsp_client_verifyPrivileged2 + 96 (Security) [0x7fff8df53ce4]
                                              28 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff93022686]
                                               *28 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xe60e     DispatchQueue 57         priority 4        
      28 start_wqthread + 13 (libsystem_c.dylib) [0x7fff931401b1]
        28 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff93155ceb]
          28 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff8685a207]
            28 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff8685a335]
              28 _dispatch_queue_drain + 180 (libdispatch.dylib) [0x7fff8685a48c]
                28 _dispatch_queue_invoke + 72 (libdispatch.dylib) [0x7fff8685a349]
                  28 _dispatch_source_invoke + 691 (libdispatch.dylib) [0x7fff8685b2d7]
                    28 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff868590fa]
                      28 _xpc_connection_wakeup + 145 (libxpc.dylib) [0x7fff8b75317c]
                        28 _xpc_connection_wakeup2 + 1799 (libxpc.dylib) [0x7fff8b7538b4]
                          28 _xpc_connection_wakeup_recv + 165 (libxpc.dylib) [0x7fff8b75516d]
                            28 _xpc_connection_recv_message + 699 (libxpc.dylib) [0x7fff8b7554a2]
                              28 ??? (backupd + 327896) [0x10c3c10d8]
                                28 ??? (backupd + 325727) [0x10c3c085f]
                                  28 ??? (backupd + 327223) [0x10c3c0e37]
                                    28 ??? (backupd + 325879) [0x10c3c08f7]
                                      28 ??? (backupd + 329823) [0x10c3c185f]
                                        28 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x7fff930226c2]
                                         *28 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233e90]
      Thread 0x199b1    priority 4        
      26 start_wqthread + 13 (libsystem_c.dylib) [0x7fff931401b1]
        26 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff93155cf3]
          26 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff930246d6]
           *26 ??? (mach_kernel + 3911152) [0xffffff80005badf0]
      Thread 0x199b2    priority 4        
      26 start_wqthread + 13 (libsystem_c.dylib) [0x7fff931401b1]
        26 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff93155cf3]
          26 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff930246d6]
           *26 ??? (mach_kernel + 3911152) [0xffffff80005badf0]
      Binary Images:
             0x10c371000 -        0x10c3feff7  backupd <1D3C0642-B4FC-3279-9CBA-6B93A4BA350B> /System/Library/CoreServices/backupd
          0x7fff86660000 -     0x7fff86849fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86857000 -     0x7fff8686cff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB>

    As a followup I have disabled under settings the sleep mode option and this seems to have cleared up the issue. Prior to this I would have Safari hang, Mail hang and other apps. This would require me to force quit the apps and then trying to reboot resulted in me having to power down (hard stop) the machine to reboot. Since making this change I have not seen any addtional hangs. Hoping this is something that wiil get corrected in a future update.

  • Command line with flash magic

    Hi :
    I want to control on flash magic application using command line with Labview, I look into this application and I see that I can send through command line all I need
    Please read what they said aboue using command lines  
    Before you can run FM.EXE on the command line you must set up your PATH environment
    variable to point to the folder FM.EXE is stored in. This is done automatically during
    installation, however you must restart your machine before the change to the PATH variable
    is recognized when using Windows 95/98/ME. You must restart your machine or log out
    then back in again before the change to the PATH variable is recognized when using
    Windows NT/2000/XP.
    Commands are passed to FM.EXE in the form or either directives or a Command File
    containing directives.
    The command line will have the following syntax:
    FM [directives]
    For example the following command line:
    Description:  Specifies the PC Serial (COM) communicating  
    Type:      Configuration
    Syntax:    COM(port, baudrate)
          Where:
          port    The COM Port t
          baudrate :
              2400
              4800
              9600
              19200
              38400
              57600
    Output:    Connected
          Or: Connection failed: reason
          Where:
          reason   The reason the
    Default:    COM 1, baudrate of 19200 (COM(1, 19200))
    Examples:         COM(1H, 9600)
                             COM(1, 0x2580)
                             COM(0x01, 2580H)
    I try to used this command line with Labview but I always get error attach see file please
    What I am doing wrong ?????
    Attachments:
    error.JPG ‏66 KB

    Hi CofeeBreak,
    Thank you for your comment, but I was able to find the problem (didn't solve it yet): In the FM command line interface, calling a HEX file located in a folder with brackets in its name, such as "C:\hello_World(V1)\LabVIEW.hex" will not be recognized by the FM.exe, whereas "C:\hello_World_V1\LabVIEW.hex" will work just fine. In the Flash Magic GUI and Command Line Manual section on hex files there is no mention of that, my solution at the moment is to remove the brackets from folder names.
    Thanks
    Amir

  • Help with Cisco Output Interpreter tool!!

    Hi All,
    I am experiencing a problem with Cisco Output Interpreter tool.
    While the tool is working fine and displaying the "CONFIGURATION COMMAND REFERENCE  NOTIFICATIONS (if any)" very effectively but I am unable to use the hyperlink to get an understanding about a particular command.
    When I click on a particular command(hyperlink) it pops up another window and the below error is displayed.
    Not Found
    The requested URL /cgi-bin/Support/Cmdlookup/ios-command-lookup.pl was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Anyone else had/have this particular error. Could you please help me with this.
    Apologies if  this topic does not belong to this group.
    Thanks in advance
    Sam

    Noone to help me on this?

  • Format Command Hangs

    Hi,
    Other day, a guy was running the format command in SunOS 5.8 and he killed the process to end it. Now whenever you try to run format again, it hangs with the message "Searching for disk...". Does anyone know how to fix this problem? Is there a lock file somewhere that I can delete?
    The system has 2 internal drives configured and a disk array connected to it that is not configured or partitioned.
    Thanks

    Check /var/adm/messages* for odd hardware errors, perhaps you could try and run devfsadm -C to clear out any devices that isn't there..
    You could also try and truss the format process to determine where it hangs.
    .7/M.

  • Apple Tv 2 has a white blinking light with the output of just the apple logo. How do I fix this?

    Apple Tv 2 has a white blinking light with the output of just the apple logo. How do I fix this?
    I do not know how this happened but it won't get out of the start up screen.

    The 4.4 update bricked mine too.  I did the restore using the USB cable on iTunes successfully but the unit still hangs on the Apple logo screen.

Maybe you are looking for