Lightning request to OPTIONS /dav/home/ 404 causes excessive logging

Calendar 7u2-6.11
We encountered a scenario where a Lightning user causes excessive logging (filled up 10GB logs in a day). These logs over and over...
1.2.3.4 - - [18/Apr/2012:13:58:42 -0500] "PROPFIND /dav/principals/user%40domain/ HTTP/1.1" 207 762 0 "-" "Mozilla/5.0 (X11; Linux i686; rv:11.0) Gecko/20120310 Thunderbird/11.0 Lightning/1.3" 0/7026
1.2.3.4 - - [18/Apr/2012:13:58:42 -0500] "PROPFIND /dav/home/user%40domain/ HTTP/1.1" 207 461 0 "-" "Mozilla/5.0 (X11; Linux i686; rv:11.0) Gecko/20120310 Thunderbird/11.0 Lightning/1.3" 0/11527
1.2.3.4 - - [18/Apr/2012:13:58:42 -0500] "OPTIONS /dav/home/ HTTP/1.1" 404 23 0 "-" "Mozilla/5.0 (X11; Linux i686; rv:11.0) Gecko/20120310 Thunderbird/11.0 Lightning/1.3" 0/5073
On the client side, this appears in the error console.
CalDAV: Status 207 on initial PROPFIND for calendar MyCal
CalDAV: Authentication scheme for MyCal is Basic
CalDAV: recv: <?xml version='1.0' encoding='UTF-8'?><D:multistatus xmlns:D="DAV:" xmlns:C="urn:ietf:params:xml:ns:caldav" xmlns:M="urn:ietf:params:xml:ns:carddav">
<D:response>
<D:href>/dav/home/user@domain/</D:href>
<D:propstat>
<D:prop>
<D:resourcetype><D:collection /></D:resourcetype>
<D:owner>
<D:href>/dav/principals/user@domain/</D:href>
</D:owner>
<D:supported-report-set><D:supported-report><D:report><D:principal-search-property-set /></D:report></D:supported-report><D:supported-report><D:report><D:principal-property-search /></D:report></D:supported-report><D:supported-report><D:report><D:principal-match /></D:report></D:supported-report><D:supported-report><D:report><D:expand-property /></D:report></D:supported-report><D:supported-report><D:report><D:sync-collection /></D:report></D:supported-report><D:supported-report><D:report><C:calendar-multiget /></D:report></D:supported-report><D:supported-report><D:report><C:calendar-query /></D:report></D:supported-report><D:supported-report><D:report><M:addressbook-multiget /></D:report></D:supported-report><D:supported-report><D:report><M:addressbook-query /></D:report></D:supported-report></D:supported-report-set>
<F:getctag xmlns:F=" http://calendarserver.org/ns/ ">"1334776461000.9"</F:getctag>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
<D:propstat>
<D:prop>
<C:supported-calendar-component-set />
</D:prop>
<D:status>HTTP/1.1 404 Not Found</D:status>
</D:propstat>
</D:response>
</D:multistatus>
CalDAV: Collection has webdav sync support
Warning: There has been an error reading data for calendar: MyCal. However, this error is believed to be minor, so the program will attempt to continue. Error code: DAV_DAV_NOT_CALDAV. Description: The resource at https://server.host.name/dav/home/user@domain is a DAV collection but not a CalDAV calendar
Warning: There has been an error reading data for calendar: MyCal. However, this error is believed to be minor, so the program will attempt to continue. Error code: READ_FAILED. Description:
User reports that Lightning was set up and working a week before these errors started.
Does anyone know what could be triggering Lightning to experience this problem?

This is an example technique to protect against this Lightning bug. Essentially, if the server process notices that a single client has requested /dav/home/something/ more than X times during its lifetime, then it issues a 403 error, which causes Lightning to break out of its loop. Keep in mind that the code below hasn't been completely tested.
It requires:
<ul>
<li>Use Apache with mod_proxy in front of the CalDAV server</li>
<li>Use mod_perl (version 2) in order to hook into the early stages of the HTTP request cycle</li>
<li>Apache is built to use the "worker" MPM</li>
<li>MaxRequestsPerChild is configured appropriately in proportion to what you configure "PerlSetVar block_lim" below.</li>
</ul>
Install this Perl module in your Perl INC path:
<blockquote>
package DOSProtect;
use strict;
use warnings;
use Apache2::Const qw(:common :log);
use Apache2::RequestRec;
use Apache2::Request;
use Apache2::Connection;
use Apache2::Log;
# this is a global variable that does not lose state
# during the life of the apache process
my %state;
sub handler {
my $r = shift;
# set this in Apache config with:
# PerlSetVar block_uri /regex/uri/(to_match)/
# (make sure it contains a capture)
my $block_uri = $r->dir_config('block_uri');
# set this in Apache config with:
# PerlSetVar block_lim num
my $block_lim = $r->dir_config('block_lim');
# get the URI and IP from the apache request
my $uri = $r->uri;
my $ip = $r->connection->remote_ip();
# misconfiguration? - bail out
return DECLINED unless ( $block_uri and $block_lim and $uri and $ip );
# return 403 forbidden if the URI is requested from an IP more than the
# limit during the life of the apache process
if ( $uri =~ $block_uri and ++$state{$1}{$ip} >= $block_lim ) {
$r->log_error("Requests to $uri from $ip exceeded $block_lim");
return FORBIDDEN;
# this means that the request continues uninhibited
return DECLINED;
1;
</blockquote>
In the Apache conf:
<blockquote>
<Location /dav/home>
PerlAccessHandler DOSProtect
PerlSetVar block_uri /dav/home/[^/]+/
PerlSetVar block_lim 10
</Location>
</blockquote>

Similar Messages

  • IOS 7 feature request: Option for home button to home not folder.

    IOS 7 feature request: Option for home button to home not folder. Maybe for some this workflow is good but not for me. To many clicks. At least give the option to have my home button take me to my home page. 9 times out of 10 that's where I want to go. Not back to my folder.

    send your feedback here http://www.apple.com/feedback/

  • Error Message: The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version. The request failed with HTTP status 404: Not Found.

    I have a web page that contains a ReportViewer control.  I am trying to display a report, which is an .rdl file located on the SSRS server, in this ReportViewer control.  I have set the ReportPath and ReportServerUrl correctly.  I am
    getting an error message.
    Am I suppose to use an .rdlc file rather than a .rdl file?  Does the web server configuration need to use a certain account?
     I am getting the following error message:
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    The request failed with HTTP status 404: Not Found.

    Hi bucaroov,
    The error "The request failed with HTTP status 404: Not Found." means the ReportServerURL configured in the ReportViewer control is invalid.
    Please follow these steps to solve the issue:
    Logon the Report Server machine.
    Open the Reporting Services Configuration Manager.
    Copy the Report Server URL from 'Web Services URL'.
    Logon the application server(in this case, it is the server that host the web page), check if we can use the URL we got from step 3 to access the Report Server. If so, please replace the ReportServerURL in the ReportViewer control with this URL. If it is
    not available, could you please post the error message.
    Additionaly, we don't need to provide the extension for a server report. The ReportPath should be like: /<reports folder>/<report name>
    For more information, please see:
    Walkthrough: Using the ReportViewer Control in Remote Mode:
    http://msdn.microsoft.com/en-us/library/ms251669(VS.80).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • The request failed with HTTP status 404: Not Found

    Hi
    BPC version we are using is : 5.0.502
    When we  Publish all reports using the steps below:
    a. Log into BPC Web
    b. Click on Available Interfaces> Select BPC for Administration
    c. Under Web Admin Task Click Publish Reports
    d. Select all of the reports and click the green check mark to publish the
    reports.
    I am getting following message 'System.Exception: The request failed with HTTP Status 404: Not Found. Event log relation to this error is given below.
    Event Type:     Error
    Event Source:     OutlookSoft log
    Event Category:     None
    Event ID:     0
    Date:          12/8/2008
    Time:          11:26:42 AM
    User:          N/A
    Computer:     BPCAPP
    Description:
    ==============[System Error Tracing]==============
    [System  Name] : OSoftCPM
    [Message Type] : ErrorMessage
    [Job Name]     : AuditMgrService/SetAuditReportFiles
    [DateTime]     : 12/8/2008 11:26:42 AM
    [UserId]       : MMPlanning
    [Exception]
        DetailMsg  : {The request failed with HTTP status 404: Not Found.}
    ==============[System Error Tracing  End ]==============
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.
    We tried ' Publish all reports' as the resolution of error 'object variable or with block variable not set' on modifying an application as per sap note Note 1131320
    If anyone knows the resolution for the above issue, please help me.
    Thanks in advance
    Sajeev Abraham

    Hi
    Thanks for the response.
    Below are the full contents of the error message pop-up.
    ( System.Expection: the reguest failed with HTTP status 404:Not found at
    Microsoft.Visualbasic.CompierServices.lateBinding.LateGet(Object o, Type,String name, Object
    []args,sTRING[]paramnames, Boolen[]CopyBack)
    at OSoft.Services.WebServices.ReportmanageProxy.ReportManageProxy.SetPubishReport(String strAppSet,string
    strApp,string strFiter)
    url is given below
    http://<HostName>/osoft/Admin/WebAdminMain.aspx
    BPC Deployment is Multiple server ( Two servers) Database and Application deployed seperately.
    Sql Reporting server is working.. I could connect using sql management studio.
    Thanks

  • 'System.Exception: The request failed with HTTP Status 404

    Hi
    BPC version we are using is : 5.0.502
    When we  Publish all reports using the steps below:
    a. Log into BPC Web
    b. Click on Available Interfaces> Select BPC for Administration
    c. Under Web Admin Task Click Publish Reports
    d. Select all of the reports and click the green check mark to publish the
    reports.
    I am getting following message 'System.Exception: The request failed with HTTP Status 404: Not Found. Below are the event log relation to this error.
    Event Type:     Error
    Event Source:     OutlookSoft log
    Event Category:     None
    Event ID:     0
    Date:          12/8/2008
    Time:          11:26:42 AM
    User:          N/A
    Computer:     BPCAPP
    Description:
    ==============[System Error Tracing]==============
    [System  Name] : OSoftCPM
    [Message Type] : ErrorMessage
    [Job Name]     : AuditMgrService/SetAuditReportFiles
    [DateTime]     : 12/8/2008 11:26:42 AM
    [UserId]       : MMPlanning
    [Exception]
        DetailMsg  : {The request failed with HTTP status 404: Not Found.}
    ==============[System Error Tracing  End ]==============
    We tried ' Publish all reports' as the resolution of error 'object variable or with block variable not set' on modifying an application as per sap note Note 1131320
    If anyone knows the resolution for the above issue, please help me.
    Thanks in advance
    Sajeev Abraham

    Hi,
    This forum is for BI Integrated planning an BW/SEM BPS. For BPC related questions please post this message in the forum for Enterprise Performance Management (Enterprise Performance Management (SAP EPM)).
    Best regards,
    Gerd Schoeffl,
    SAP NetWeaver RIG BI

  • Error: on clicking Registry menu item in ESM Management Portal. The request failed with HTTP status 404: Not Found.

    Hi,
    I have installed ESB Management Portal successfully after following all the steps. everything is working fine except when I click the Registry menu in the portal. I get an unhandled exception. The event viewer shows the below error "The request failed
    with HTTP status 404: Not Found."
    ================================================
    Event code: 3005 
    Event message: An unhandled exception has occurred. 
    Event time: 1/27/2015 5:56:10 PM 
    Event time (UTC): 1/27/2015 5:56:10 PM 
    Event ID: f7aedd39118845b79c17d3442a0d15a7 
    Event sequence: 54 
    Event occurrence: 1 
    Event detail code: 0 
    Application information: 
        Application domain: /LM/W3SVC/1/ROOT/ESB.Portal-1-130668549484455107 
        Trust level: Full 
        Application Virtual Path: /ESB.Portal 
        Application Path: C:\Projects\Microsoft.Practices.ESB\Source\Samples\Management Portal\ESB.Portal\ 
        Machine name: <Machine Name> 
    Process information: 
        Process ID: 4712 
        Process name: w3wp.exe 
        Account name: NT AUTHORITY\NETWORK SERVICE 
    Exception information: 
        Exception type: TargetInvocationException 
        Exception message: Exception has been thrown by the target of an invocation.
       at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.Web.UI.WebControls.ObjectDataSourceView.InvokeMethod(ObjectDataSourceMethod method, Boolean disposeInstance, Object& instance)
       at System.Web.UI.WebControls.ObjectDataSourceView.ExecuteSelect(DataSourceSelectArguments arguments)
       at System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback)
       at System.Web.UI.WebControls.DataBoundControl.PerformSelect()
       at System.Web.UI.WebControls.BaseDataBoundControl.EnsureDataBound()
       at System.Web.UI.WebControls.CompositeDataBoundControl.CreateChildControls()
       at System.Web.UI.Control.EnsureChildControls()
       at System.Web.UI.Control.PreRenderRecursiveInternal()
       at System.Web.UI.Control.PreRenderRecursiveInternal()
       at System.Web.UI.Control.PreRenderRecursiveInternal()
       at System.Web.UI.Control.PreRenderRecursiveInternal()
       at System.Web.UI.Control.PreRenderRecursiveInternal()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    The request failed with HTTP status 404: Not Found.
       at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
       at Microsoft.Practices.ESB.Portal.UDDIService.UDDIService.GetCategoryByName(String UDDIServerUrl, String tModelName) in c:\Projects\Microsoft.Practices.ESB\Source\Samples\Management Portal\ESB.Portal\Web References\UDDIService\Reference.cs:line
    575
       at Microsoft.Practices.ESB.Portal.Uddi.ServiceProxy.getBTEndpoints(String applicationName, Boolean getSendPorts, Boolean getRcvLocations) in c:\Projects\Microsoft.Practices.ESB\Source\Samples\Management Portal\ESB.Portal\Uddi\ServiceProxy.cs:line
    553
       at Microsoft.Practices.ESB.Portal.Uddi.ServiceProxy.GetEndpointsByApplication(String applicationName, Boolean getSendPorts, Boolean getRcvLocations) in c:\Projects\Microsoft.Practices.ESB\Source\Samples\Management Portal\ESB.Portal\Uddi\ServiceProxy.cs:line
    46
    Request information: 
        Request URL: http://localhost/ESB.Portal/uddi/uddi.aspx 
        Request path: /ESB.Portal/uddi/uddi.aspx 
        User host address: ::1 
        User: <domain>\<user>
        Is authenticated: True 
        Authentication Type: Negotiate 
        Thread account name: NT AUTHORITY\NETWORK SERVICE 
    Thread information: 
        Thread ID: 19 
        Thread account name: NT AUTHORITY\NETWORK SERVICE 
        Is impersonating: False 
        Stack trace:    at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.Web.UI.WebControls.ObjectDataSourceView.InvokeMethod(ObjectDataSourceMethod method, Boolean disposeInstance, Object& instance)
       at System.Web.UI.WebControls.ObjectDataSourceView.ExecuteSelect(DataSourceSelectArguments arguments)
       at System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback)
       at System.Web.UI.WebControls.DataBoundControl.PerformSelect()
       at System.Web.UI.WebControls.BaseDataBoundControl.EnsureDataBound()
       at System.Web.UI.WebControls.CompositeDataBoundControl.CreateChildControls()
       at System.Web.UI.Control.EnsureChildControls()
       at System.Web.UI.Control.PreRenderRecursiveInternal()
       at System.Web.UI.Control.PreRenderRecursiveInternal()
       at System.Web.UI.Control.PreRenderRecursiveInternal()
       at System.Web.UI.Control.PreRenderRecursiveInternal()
       at System.Web.UI.Control.PreRenderRecursiveInternal()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Custom event details: 
    =================================
    Any idea why this is happening and what needs to be done ?
    PLEASE HELP
    Thanks & Regards
    Vikram

    Snippet from the link below:
    If you get a “404: Not Found” error, it ‘s because by default there is no script map for .svc file with default IIS 7.0 installation, so you need to register .svc extension in IIS:
    You need to update IIS script maps to register .svc extension In a command prompt (ran as administrator), execute the following command:
    “%windir%\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.exe” -r -y"
    Refer:
    https://dgoins.wordpress.com/2010/05/01/esb-toolkit-management-portal-installation-notes-from-the-field-2/
    Sarvanan's blog around this with detailed explanation:
    Configuring Exception Management Portal
    As mentioned above also
    Check Portal Configuration Settings
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • When I open Safari I get a message saying 'Your request is prohibited because it will cause a cycle.  what does this mean?  How can I get rid of it?

    When I open up Safari I get a message saying 'Your request is prohibited because it will cause a cycle.  What does this mean? How do it get rid of it?

    Your request is prohibited because it...: Apple Support Communities

  • Option Icon 452 is causing a critical failure. Suggestions?

    Option Icon 452 is causing a critical failure as soon as I put it into the USB slot.  It seems that loading the wrong drivers for it or thinking its something that its.
    Each            time I put the 452 into the USB slot I immediately get an error in which the screen            takes on a shade of gray and a black box in 6 languages            appears saying "You need to restart your computer. Hold down            the power button until it turns off" - I cannot do anything            besides that and if I leave the modem attached and restart            the same error appears as soon as it boots up. Once I take            it off I'm able to restart normally again. Not sure what            that problem is but it seems rather critical.
    I'm not having any other problems with my macbook and I have a friend who tested the Option iCon 452 on his macbook and had no problems. So I'm kinda muddled.
    thanks for any suggestions.

    Runaway org.postfix.master if you want to take a look at it. Linc.
    Tried a old hack, no go.
    https://discussions.apple.com/thread/3184945?tstart=0

  • "workflow.asmx" method The request failed with HTTP status 404: Not Found.

    When consuming workflow.asmx webservice from , I am getting an error on below line number 3.
    1.POC.SPasmxWF.Workflow objSPasmxWF = new POC.SPasmxWF.Workflow();
    2.objSPasmxWF.Credentials = System.Net.CredentialCache.DefaultCredentials;
    3. XmlNode dataNode = objSPasmxWF.GetWorkflowDataForItem("http://in-mum01:7000/sites/PPP/2014-0002/PPPLibrary/GBL-IQ00120140008.doc");
    Error details: {"The request failed with HTTP status 404: Not Found."} "   at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean
    asyncCall)\r\n   at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)\r\n   at POC.SPasmxWF.Workflow.GetWorkflowDataForItem(String item) in E:\ERT\\Web References\\SPasmxWF\\Reference.cs:line 234\r\n
      at POC.Program.Main(String[] args) in E:\\POC\\POC\\Program.cs:line 27\r\n   at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)\r\n   at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()\r\n   at System.Threading.ExecutionContext.Run(ExecutionContext
    executionContext, ContextCallback callback, Object state)\r\n   at System.Threading.ThreadHelper.ThreadStart()"

    Hi,
    For a better troubleshooting, I suggest you to do as follows:
    1. On server side you can access the Workflow.asmx from IE to make sure there are no problems in code logic.
    2. On client side you can also access Workflow.asmx from IE to see if it returns error.
    3. Check the link below:
    http://www.mail-archive.com/[email protected]/msg02092.html
    If you want to operate the workflow in Client-Side,  we can use Client Object Model in SharePoint 2010 to achieve it.
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.workflow(v=office.14).ASPX
    Thanks,
    Dennis Guo
    TechNet Community Support
    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]
    Dennis Guo
    TechNet Community Support

  • Error message "Your request is prohibited because it would cause a cycle"

    When I try to go to my inbox I get the message 'Your request is prohibited because it would cause a cycle'. I've tried exiting and reloading but the same thing happens

    Shortcuts or specific links that you bookmark (a bookmark also stores POST data) may only be valid during the current session.<br />
    If you use them at a later time then they may have become invalid and in that case you get a server error.<br />

  • An application "causes excessive wakeups," then crashes

    Description of the problem:
    The game "Team Fortress 2" crashes consistently after about a half hour of gameplay. It seems almost random when the crashes occur, but always during gameplay, never in the game menu. Frequently the application will freeze, then close itself after a few seconds. From what I can tell from other people's screens during a multiplayer game, when my application freezes, it will not close itself until my character dies from standing still and exposed. When the game is hosted on a specific map or play area, sometimes the sound will stop and the frames per second rate will lower before before the application freezes.
    Console reports frequently state that an element of the program is causing excessive wakeups, then a wave of memory errors for the application occur, and it finally crashes. This has been a problem for about 1 year. I hope that someone here will be able to help me.
    Here's some system data and application information:
    21.5-inch iMac from mid-2011
    OSX 10.9.3 (13D65)
    2.7 GHz Intel Core i5 processor
    12 GB 1333 MHz DDR3 RAM
    AMD Radeon HD 6770M 512 MB graphics card
    TF2 is a game that runs off of Steam, a game store and community similar to iTunes by Valve Inc. All games bought through Steam must be run with Steam open.
    Here's a recent diagnostic report:
    In this case, the game crashes in less than 10 minutes. That's what spurred me to finally come here for help. I've been debating it for a couple of weeks.
    Diagnostic report
    Process:         hl2_osx [19235]
    Path:            /Users/USER/Library/Application Support/Steam/*/hl2_osx
    Identifier:      hl2_osx
    Version:         ???
    Code Type:       X86 (Native)
    Parent Process:  steam [18750]
    Responsible:     bash [18743]
    User ID:         503
    Date/Time:       2014-07-08 20:47:43.886 -0700
    OS Version:      Mac OS X 10.9.3 (13D65)
    Report Version:  11
    Anonymous UUID:  6EF811EE-09ED-9279-CC4C-2691D40FCCBF
    Sleep/Wake UUID: 2CED885D-E238-4591-91CE-7CA403DACC2F
    Crashed Thread:  46  Dispatch queue: OpenGLMT
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004
    VM Regions Near 0x4:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Users/USER/Library/Application Support/Steam/*
        __TEXT                 0000000000001000-0000000000002000 [    4K] r-x/rwx SM=COW  /Users/USER/Library/Application Support/Steam/*
    Thread 0:: MainThrd  Dispatch queue: com.apple.main-thread
    0   libsystem_platform.dylib       0x937dcf26 _platform_memcmp + 38
    1   client.dylib                   0x2a36d8d1 CInterpolatedVarArrayBase<float, true>::NoteChanged(float, bool) + 49
    2   client.dylib                   0x2a37cd0d C_BaseEntity::OnLatchInterpolatedVariables(int) + 189
    3   client.dylib                   0x2a369f8f C_BaseAnimating::UpdateClientSideAnimation() + 47
    4   client.dylib                   0x2a36bf0d C_BaseAnimating::UpdateClientSideAnimations() + 189
    5   client.dylib                   0x2a326d35 OnRenderStart() + 533
    6   client.dylib                   0x2a327639 CHLClient::FrameStageNotify(ClientFrameStage_t) + 985
    7   engine.dylib                   0x098b4938 ClientDLL_FrameStageNotify(ClientFrameStage_t) + 40
    8   engine.dylib                   0x0998772f SCR_UpdateScreen() + 223
    9   engine.dylib                   0x09999e18 _Host_RunFrame_Render() + 408
    10  engine.dylib                   0x0999b57f _Host_RunFrame(float) + 3423
    11  engine.dylib                   0x099b4e98 CHostState::State_Run(float) + 328
    12  engine.dylib                   0x099b424c CHostState::FrameUpdate(float) + 684
    13  engine.dylib                   0x099b3f95 HostState_Frame(float) + 37
    14  engine.dylib                   0x09aa07e2 CEngine::Frame() + 1090
    15  engine.dylib                   0x09a9d91e CEngineAPI::MainLoop() + 462
    16  engine.dylib                   0x09a9e48e CModAppSystemGroup::Main() + 206
    17  engine.dylib                   0x09b8cf52 CAppSystemGroup::Run() + 98
    18  engine.dylib                   0x09a9dc46 CEngineAPI::RunListenServer() + 102
    19  launcher.dylib                 0x0024402a CSourceAppSystemGroup::Main() + 26
    20  launcher.dylib                 0x00250942 CAppSystemGroup::Run() + 98
    21  launcher.dylib                 0x00253d6b CSteamApplication::Main() + 43
    22  launcher.dylib                 0x00250942 CAppSystemGroup::Run() + 98
    23  launcher.dylib                 0x00244680 LauncherMain + 960
    24  hl2_osx                       0x00001de5 start + 53
    Thread 1:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   libvstdlib.dylib               0x005b2ce9 CJobThread::Run() + 137
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x91be6992 kevent64 + 10
    1   libdispatch.dylib             0x9a29c899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib             0x9a29c532 _dispatch_mgr_thread + 52
    Thread 3:: Event Tap Loop
    0   libsystem_kernel.dylib         0x91be0f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x91be016c mach_msg + 68
    2   com.apple.CoreFoundation       0x927a1c09 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x927a11e1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x927a09fa CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x92863221 CFRunLoopRun + 129
    6   libSDL2-2.0.0.dylib           0x0037e37b Cocoa_MouseTapThread + 523
    7   libSDL2-2.0.0.dylib           0x0030f66e SDL_RunThread + 110
    8   libSDL2-2.0.0.dylib           0x00385e67 RunThread + 23
    9   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib         0x91be0f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x91be016c mach_msg + 68
    2   com.googlecode.google-breakpad 0x0fa3632d google_breakpad::ExceptionHandler::WaitForMessage(void*) + 399
    3   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    4   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    5   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 5:: IOPollingHelperThread
    0   libsystem_kernel.dylib         0x91be6976 kevent + 10
    1   steamclient.dylib             0x0ea72999 OSXHelpers::CIOPollingHelper::RealRun() + 257
    2   libtier0_s.dylib               0x080cbe29 CatchAndWriteContext_t::Invoke() + 159
    3   libtier0_s.dylib               0x080cb842 CatchAndWriteMiniDump_Impl(CatchAndWriteContext_t&) + 214
    4   libtier0_s.dylib               0x080cb929 CatchAndWriteMiniDumpExForVoidPtrFn + 87
    5   libtier0_s.dylib               0x080cb952 CatchAndWriteMiniDumpForVoidPtrFn + 35
    6   steamclient.dylib             0x0ea72887 OSXHelpers::CIOPollingHelper::Run() + 41
    7   libtier0_s.dylib               0x080d01a6 SteamThreadTools::CThread::ThreadExceptionWrapper(void*) + 16
    8   libtier0_s.dylib               0x080cbe29 CatchAndWriteContext_t::Invoke() + 159
    9   libtier0_s.dylib               0x080cb842 CatchAndWriteMiniDump_Impl(CatchAndWriteContext_t&) + 214
    10  libtier0_s.dylib               0x080cb929 CatchAndWriteMiniDumpExForVoidPtrFn + 87
    11  libtier0_s.dylib               0x080cb952 CatchAndWriteMiniDumpForVoidPtrFn + 35
    12  libtier0_s.dylib               0x080d011a SteamThreadTools::CThread::ThreadProc(void*) + 222
    13  libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    14  libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    15  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   filesystem_stdio.dylib         0x01c8d9fc CFileTracker2::ThreadedProcessMD5Requests() + 268
    5   filesystem_stdio.dylib         0x01c8d8e1 ThreadStubProcessMD5Requests(void*) + 17
    6   libtier0.dylib                 0x00504cb1 ThreadProcConvert(void*) + 33
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   chromehtml.dylib               0x14be02ca CCEFThread::Run() + 4442
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 8:: BrowserDBThread
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4bd9 pthread_cond_wait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0eaa3 0xbe9d000 + 465571
    4   libcef.dylib                   0x0bf0f76b 0xbe9d000 + 468843
    5   libcef.dylib                   0x0bf0f592 0xbe9d000 + 468370
    6   libcef.dylib                   0x0befb36b 0xbe9d000 + 385899
    7   libcef.dylib                   0x0bef70c3 0xbe9d000 + 368835
    8   libcef.dylib                   0x0bef6add 0xbe9d000 + 367325
    9   libcef.dylib                   0x0bf12001 0xbe9d000 + 479233
    10  libcef.dylib                   0x0bf12088 0xbe9d000 + 479368
    11  libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    12  libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    13  libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    14  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 9:: SamplerThread
    0   libsystem_kernel.dylib         0x91be0fb6 semaphore_wait_trap + 10
    1   libcef.dylib                   0x0c95c924 0xbe9d000 + 11270436
    2   libcef.dylib                   0x0c89a918 0xbe9d000 + 10475800
    3   libcef.dylib                   0x0c95c9db 0xbe9d000 + 11270619
    4   libcef.dylib                   0x0c95c2b5 0xbe9d000 + 11268789
    5   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    6   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    7   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 10:: NetworkConfigWatcher
    0   libsystem_kernel.dylib         0x91be0f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x91be016c mach_msg + 68
    2   com.apple.CoreFoundation       0x927a1c09 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x927a11e1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x927a09fa CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x927a085b CFRunLoopRunInMode + 123
    6   com.apple.Foundation           0x913c52f9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
    7   libcef.dylib                   0x0bed957f 0xbe9d000 + 247167
    8   libcef.dylib                   0x0bed912c 0xbe9d000 + 246060
    9   libcef.dylib                   0x0bef70c3 0xbe9d000 + 368835
    10  libcef.dylib                   0x0bef6add 0xbe9d000 + 367325
    11  libcef.dylib                   0x0bf12001 0xbe9d000 + 479233
    12  libcef.dylib                   0x0bf12088 0xbe9d000 + 479368
    13  libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    14  libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    15  libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    16  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 11:: Cef_FileThread
    0   libsystem_kernel.dylib         0x91be6976 kevent + 10
    1   libcef.dylib                   0x0c5711e9 0xbe9d000 + 7160297
    2   libcef.dylib                   0x0c56f0f3 0xbe9d000 + 7151859
    3   libcef.dylib                   0x0bed84c2 0xbe9d000 + 242882
    4   libcef.dylib                   0x0bef70c3 0xbe9d000 + 368835
    5   libcef.dylib                   0x0bef6add 0xbe9d000 + 367325
    6   libcef.dylib                   0x0bf12001 0xbe9d000 + 479233
    7   libcef.dylib                   0x0bf12088 0xbe9d000 + 479368
    8   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    9   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 12:: Cef_IOThread
    0   libsystem_kernel.dylib         0x91be6976 kevent + 10
    1   libcef.dylib                   0x0c5711e9 0xbe9d000 + 7160297
    2   libcef.dylib                   0x0c56f0f3 0xbe9d000 + 7151859
    3   libcef.dylib                   0x0bed84c2 0xbe9d000 + 242882
    4   libcef.dylib                   0x0bef70c3 0xbe9d000 + 368835
    5   libcef.dylib                   0x0bef6add 0xbe9d000 + 367325
    6   libcef.dylib                   0x0bf12001 0xbe9d000 + 479233
    7   libcef.dylib                   0x0bf12088 0xbe9d000 + 479368
    8   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    9   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 13:: NetworkConfigWatcher
    0   libsystem_kernel.dylib         0x91be0f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x91be016c mach_msg + 68
    2   com.apple.CoreFoundation       0x927a1c09 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x927a11e1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x927a09fa CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x927a085b CFRunLoopRunInMode + 123
    6   com.apple.Foundation           0x913c52f9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
    7   libcef.dylib                   0x0bed957f 0xbe9d000 + 247167
    8   libcef.dylib                   0x0bed912c 0xbe9d000 + 246060
    9   libcef.dylib                   0x0bef70c3 0xbe9d000 + 368835
    10  libcef.dylib                   0x0bef6add 0xbe9d000 + 367325
    11  libcef.dylib                   0x0bf12001 0xbe9d000 + 479233
    12  libcef.dylib                   0x0bf12088 0xbe9d000 + 479368
    13  libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    14  libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    15  libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    16  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 14:: AppCacheDBThread
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4bd9 pthread_cond_wait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0eaa3 0xbe9d000 + 465571
    4   libcef.dylib                   0x0bf0f76b 0xbe9d000 + 468843
    5   libcef.dylib                   0x0bf0f592 0xbe9d000 + 468370
    6   libcef.dylib                   0x0befb36b 0xbe9d000 + 385899
    7   libcef.dylib                   0x0bef70c3 0xbe9d000 + 368835
    8   libcef.dylib                   0x0bef6add 0xbe9d000 + 367325
    9   libcef.dylib                   0x0bf12001 0xbe9d000 + 479233
    10  libcef.dylib                   0x0bf12088 0xbe9d000 + 479368
    11  libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    12  libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    13  libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    14  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x976c3042 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x92ccf88d TSWaitOnConditionTimedRelative + 161
    4   com.apple.CoreServices.CarbonCore 0x92ccf44a TSWaitOnSemaphoreCommon + 531
    5   com.apple.CoreServices.CarbonCore 0x92ccf5fd TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component 0x99aa1091 0x99834000 + 2543761
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib         0x91be0f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x91be016c mach_msg + 68
    2   com.apple.CoreFoundation       0x927a1c09 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x927a11e1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x927a09fa CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x927a085b CFRunLoopRunInMode + 123
    6   com.apple.AppKit               0x908f9b88 _NSEventThread + 283
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   libvstdlib.dylib               0x005b2ce9 CJobThread::Run() + 137
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   libvstdlib.dylib               0x005b2ce9 CJobThread::Run() + 137
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   libvstdlib.dylib               0x005b2ce9 CJobThread::Run() + 137
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   engine.dylib                   0x09a133ef CQueuedPacketSender::Run() + 95
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   libvstdlib.dylib               0x005b2ce9 CJobThread::Run() + 137
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   libvstdlib.dylib               0x005b2ce9 CJobThread::Run() + 137
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   libvstdlib.dylib               0x005b2ce9 CJobThread::Run() + 137
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   libvstdlib.dylib               0x005b2ce9 CJobThread::Run() + 137
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   libvstdlib.dylib               0x005b2ce9 CJobThread::Run() + 137
    5   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    6   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib         0x91be0fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x92c9c071 MPWaitOnSemaphore + 104
    2   libMilesX86.dylib             0x417d7816 MilesGetBankFunctions + 4406
    3   libMilesX86.dylib             0x417bee3e MilesAsyncSetPaused + 6222
    4   libMilesX86.dylib             0x417d7f7f MilesGetBankFunctions + 6303
    5   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    Thread 27:: com.apple.coreaudio.AQClient
    0   libsystem_kernel.dylib         0x91be0f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x91be016c mach_msg + 68
    2   com.apple.CoreFoundation       0x927a1c09 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x927a11e1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x927a09fa CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x927a085b CFRunLoopRunInMode + 123
    6   com.apple.audio.toolbox.AudioToolbox 0x95cf02a8 GenericRunLoopThread::Entry(void*) + 194
    7   com.apple.audio.toolbox.AudioToolbox 0x95ca0910 CAPThread::Entry(CAPThread*) + 134
    8   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libtier0.dylib                 0x00505130 CThreadSyncObject::Wait(unsigned int) + 352
    4   libtier0.dylib                 0x00506c74 CWorkerThread::WaitForCall(unsigned int*) + 36
    5   client.dylib                   0x2a03b535 CAchievementSaveThread::Run() + 85
    6   libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 29:: SocketThread
    0   libsystem_kernel.dylib         0x91be6cf6 __poll + 10
    1   steamclient.dylib             0x0eaa7a49 CSocketThread::CSocketRunThread::Run() + 291
    2   libtier0_s.dylib               0x080d01a6 SteamThreadTools::CThread::ThreadExceptionWrapper(void*) + 16
    3   libtier0_s.dylib               0x080cbe29 CatchAndWriteContext_t::Invoke() + 159
    4   libtier0_s.dylib               0x080cb842 CatchAndWriteMiniDump_Impl(CatchAndWriteContext_t&) + 214
    5   libtier0_s.dylib               0x080cb929 CatchAndWriteMiniDumpExForVoidPtrFn + 87
    6   libtier0_s.dylib               0x080cb952 CatchAndWriteMiniDumpForVoidPtrFn + 35
    7   libtier0_s.dylib               0x080d011a SteamThreadTools::CThread::ThreadProc(void*) + 222
    8   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 30:: WorkerPool/-876519424
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 31:: WorkerPool/-876380160
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 32:: WorkerPool/-876101632
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 33:
    0   libtogl.dylib                 0x00551361 GLMContext::FlushStates(bool) + 689
    1   libtogl.dylib                 0x005504dc GLMContext::FlushDrawStates(bool) + 332
    2   libtogl.dylib                 0x00544a05 IDirect3DDevice9::DrawIndexedPrimitive(_D3DPRIMITIVETYPE, int, unsigned int, unsigned int, unsigned int, unsigned int) + 117
    3   shaderapidx9.dylib             0x0e1c8006 CMeshDX8::RenderPass() + 1030
    4   shaderapidx9.dylib             0x0e1de8d2 non-virtual thunk to CShaderAPIDx8::RenderPass(int, int) + 98
    5   materialsystem.dylib           0x0a502fba non-virtual thunk to CShaderSystem::DrawSnapshot(bool) + 90
    6   stdshader_dx9.dylib           0x10581be5 CBaseShader::Draw(bool) + 133
    7   stdshader_dx9.dylib           0x105507b2 DrawSkin_DX9_Internal(CBaseVSShader*, IMaterialVar**, IShaderDynamicAPI*, IShaderShadow*, bool, VertexLitGeneric_DX9_Vars_t&, VertexCompressionType_t, CBasePerMaterialContextData**) + 13170
    8   stdshader_dx9.dylib           0x10550999 DrawSkin_DX9(CBaseVSShader*, IMaterialVar**, IShaderDynamicAPI*, IShaderShadow*, VertexLitGeneric_DX9_Vars_t&, VertexCompressionType_t, CBasePerMaterialContextData**) + 201
    9   stdshader_dx9.dylib           0x10565391 DrawVertexLitGeneric_DX9(CBaseVSShader*, IMaterialVar**, IShaderDynamicAPI*, IShaderShadow*, bool, VertexLitGeneric_DX9_Vars_t&, VertexCompressionType_t, CBasePerMaterialContextData**) + 305
    10  stdshader_dx9.dylib           0x1055f7bb VertexLitGeneric::CShader::OnDrawElements(IMaterialVar**, IShaderShadow*, IShaderDynamicAPI*, VertexCompressionType_t, CBasePerMaterialContextData**) + 283
    11  stdshader_dx9.dylib           0x1058192a CBaseShader::DrawElements(IMaterialVar**, int, IShaderShadow*, IShaderDynamicAPI*, VertexCompressionType_t, CBasePerMaterialContextData**) + 250
    12  materialsystem.dylib           0x0a502972 CShaderSystem::DrawElements(IShader*, IMaterialVar**, ShaderRenderState_t*, VertexCompressionType_t, unsigned int) + 562
    13  materialsystem.dylib           0x0a4ae76e CMaterial::DrawMesh(VertexCompressionType_t) + 110
    14  shaderapidx9.dylib             0x0e1d40ce CShaderAPIDx8::DrawMesh(CMeshBase*) + 318
    15  shaderapidx9.dylib             0x0e1d43ed non-virtual thunk to CShaderAPIDx8::DrawMesh(CMeshBase*) + 29
    16  shaderapidx9.dylib             0x0e1c7aee CMeshDX8::Draw(int, int) + 254
    17  studiorender.dylib             0x0b678e64 CStudioRender::R_StudioDrawGroupHWSkin(IMatRenderContext*, studiomeshgroup_t*, IMesh*, ColorMeshInfo_t*) + 404
    18  studiorender.dylib             0x0b6792c4 CStudioRender::R_StudioDrawStaticMesh(IMatRenderContext*, mstudiomesh_t*, studiomeshgroup_t*, StudioModelLighting_t, float, IMaterial*, int, ColorMeshInfo_t*) + 644
    19  studiorender.dylib             0x0b67c6fc CStudioRender::R_StudioDrawMesh(IMatRenderContext*, mstudiomesh_t*, studiomeshdata_t*, StudioModelLighting_t, IMaterial*, ColorMeshInfo_t*, int) + 348
    20  studiorender.dylib             0x0b675b3b CStudioRender::R_StudioDrawPoints(IMatRenderContext*, int, void*, IMaterial**, int*, int, int, ColorMeshInfo_t*) + 571
    21  studiorender.dylib             0x0b675254 CStudioRender::R_StudioRenderFinal(IMatRenderContext*, int, int, CStudioRender::BodyPartInfo_t*, void*, IMaterial**, int*, int, int, ColorMeshInfo_t*) + 404
    22  studiorender.dylib             0x0b674f22 CStudioRender::R_StudioRenderModel(IMatRenderContext*, int, int, int, void*, IMaterial**, int*, int, int, int, ColorMeshInfo_t*) + 514
    23  studiorender.dylib             0x0b6da3d1 CStudioRender::DrawModelStaticProp(DrawModelInfo_t const&, StudioRenderContext_t const&, matrix3x4_t const&, int) + 577
    24  studiorender.dylib             0x0b6e2e20 CMemberFunctor4<CStudioRender*, void (CStudioRender::*)(DrawModelInfo_t const&, StudioRenderContext_t const&, matrix3x4_t const&, int), DrawModelInfo_t, StudioRenderContext_t, matrix3x4_t, int, CRefCounted1<CFunctor, CRefCountServiceBase<true, CRefMT> >, CFuncMemPolicyNone>::operator()() + 80
    25  materialsystem.dylib           0x0a4d410b CMatQueuedRenderContext::CallQueued(bool) + 187
    26  materialsystem.dylib           0x0a4d3f82 CMatQueuedRenderContext::EndQueue(bool) + 34
    27  materialsystem.dylib           0x0a4bd1a2 CMaterialSystem::ThreadExecuteQueuedContext(CMatQueuedRenderContext*) + 66
    28  materialsystem.dylib           0x0a4c2ca9 CMemberFunctor1<CMaterialSystem*, void (CMaterialSystem::*)(CMatQueuedRenderContext*), CMatQueuedRenderContext*, CRefCounted1<CFunctor, CRefCountServiceBase<true, CRefMT> >, CFuncMemPolicyNone>::operator()() + 41
    29  materialsystem.dylib           0x0a4c3797 CFunctorJob::DoExecute() + 23
    30  libvstdlib.dylib               0x005b1a40 CJob::Execute() + 80
    31  libvstdlib.dylib               0x005b2e37 CJobThread::Run() + 471
    32  libtier0.dylib                 0x005066a6 CThread::ThreadProc(void*) + 214
    33  libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    34  libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    35  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 34:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib         0x91be0f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x91be016c mach_msg + 68
    2   com.apple.audio.CoreAudio     0x922c9e9a HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio     0x922c434e HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 68
    4   com.apple.audio.CoreAudio     0x922c2b27 HALC_ProxyIOContext::IOWorkLoop() + 1111
    5   com.apple.audio.CoreAudio     0x922c25ff HALC_ProxyIOContext::IOThreadEntry(void*) + 167
    6   com.apple.audio.CoreAudio     0x922ccf52 ___ZN19HALC_ProxyIOContextC2Emj_block_invoke + 20
    7   com.apple.audio.CoreAudio     0x922c24fb HALB_IOThread::Entry(void*) + 69
    8   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 35:: WorkerPool/-754667520
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 36:: WorkerPool/-754528256
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 37:: WorkerPool/-754388992
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 38:: WorkerPool/-754249728
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 39:: WorkerPool/-754110464
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 40:: WorkerPool/-753971200
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 41:: WorkerPool/-753692672
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 42:: WorkerPool/-753553408
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 43:: WorkerPool/-876240896
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 44:: WorkerPool/-753831936
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 45:: WorkerPool/-715182080
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4c25 pthread_cond_timedwait$UNIX2003 + 71
    3   libcef.dylib                   0x0bf0ec99 0xbe9d000 + 466073
    4   libcef.dylib                   0x0bf12e93 0xbe9d000 + 482963
    5   libcef.dylib                   0x0bf13364 0xbe9d000 + 484196
    6   libcef.dylib                   0x0bf1144a 0xbe9d000 + 476234
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 46 Crashed:: Dispatch queue: OpenGLMT
    0   libsystem_platform.dylib       0x937dd25a _platform_bzero$VARIANT$sse42 + 90
    1   libGLProgrammability.dylib     0x97809b7a BitSetSetRangeEqualsInternal + 119
    2   libGLProgrammability.dylib     0x978099e3 BitSetNew + 140
    3   libGLProgrammability.dylib     0x97816a34 RegistersInitialize + 37
    4   libGLProgrammability.dylib     0x978214d7 glpPPShaderLinearizeStreamMgrEx + 6398
    5   libGLProgrammability.dylib     0x9782164c glpPPShaderLinearizeEx + 79
    6   libGLProgrammability.dylib     0x978215f8 glpPPShaderLinearize + 32
    7   GLRendererFloat               0x9b6c1be4 gldLoadPipelineProgram + 380
    8   GLRendererFloat               0x9b6baae1 gldUpdateDispatch + 2112
    9   GLEngine                       0x91a8ff79 gleFallbackBegin + 459
    10  GLEngine                       0x919901e0 gleUpdateDispatchCodeChange + 184
    11  GLEngine                       0x91a814d6 gleDoDrawDispatchCore + 618
    12  GLEngine                       0x91a2a1d6 glDrawElementsInstancedBaseVertex_STD_Exec + 289
    13  GLEngine                       0x91a2a0a7 glDrawElements_UnpackThread + 154
    14  GLEngine                       0x91a7c73d gleCmdProcessor + 75
    15  libdispatch.dylib             0x9a29caf3 _dispatch_queue_drain + 410
    16  libdispatch.dylib             0x9a29dfcf _dispatch_queue_invoke + 126
    17  libdispatch.dylib             0x9a29c38a _dispatch_root_queue_drain + 72
    18  libdispatch.dylib             0x9a29d70e _dispatch_worker_thread2 + 39
    19  libsystem_pthread.dylib       0x976c1dab _pthread_wqthread + 336
    20  libsystem_pthread.dylib       0x976c5cce start_wqthread + 30
    Thread 47:: AQConverterThread
    0   libsystem_kernel.dylib         0x91be57ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x976c2d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x976c4bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.audio.toolbox.AudioToolbox 0x95ca012f CAGuard::Wait() + 67
    4   com.apple.audio.toolbox.AudioToolbox 0x95cc4d58 AQConverterManager::AQConverterThread::Run() + 602
    5   com.apple.audio.toolbox.AudioToolbox 0x95cc4af6 AQConverterManager::AQConverterThread::ConverterThreadEntry(void*) + 22
    6   com.apple.audio.toolbox.AudioToolbox 0x95ca0910 CAPThread::Entry(CAPThread*) + 134
    7   libsystem_pthread.dylib       0x976c05fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x976c0485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x976c5cf2 thread_start + 34
    Thread 48:
    0   libsystem_kernel.dylib         0x91be6046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x976c1dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x976c5cce start_wqthread + 30
    Thread 46 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0x00000004  edx: 0x00000078
      edi: 0x00000004  esi: 0x20b00030  ebp: 0xcd72ba68  esp: 0xcd72ba64
       ss: 0x00000023  efl: 0x00010202  eip: 0x937dd25a   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000004
    Logical CPU:     2
    Error Code:      0x00000006
    Trap Number:     14
    Binary Images:
        0x1000 -     0x1ff3 +hl2_osx (???) <3DF7D040-00B2-3A31-B557-1ED1D0BDE08E> /Users/USER/Library/Application Support/Steam/*/hl2_osx
        0x4000 -    0x26ffb +gameoverlayrenderer.dylib (1) <145DB247-7DB3-3DF9-BB30-874DE77A41F1> /Applications/Steam.app/Contents/MacOS/osx32/gameoverlayrenderer.dylib
       0x47000 -    0x48ff3 +steamloader.dylib (0) <B203BC3A-0BB3-3693-B6EE-1CAD86A1BFDE> /Applications/Steam.app/Contents/MacOS/osx32/steamloader.dylib
       0xec000 -    0xf2fff +libsteam_api.dylib (1) <0AF869ED-EA89-39D3-A8C1-41CC63883393> /Users/USER/Library/Application Support/Steam/*/libsteam_api.dylib
      0x240000 -   0x25dff7 +launcher.d

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this test is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in OS X 10.7 or later, then you can’t enable the Guest account. The "Guest User" login created by "Find My Mac" is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.

  • IPhones using activesync causing excessive transaction log growth on Exchange 2010

    Hi there.
    We have around 60 iPhone or iPad users who are retrieving their emails from our Exchange 2010 SP2 servers using activesync.
    Back when everyone was using the 3GS this worked just fine but late in 2011 we noticed that the transaction logs on our exchange servers were growing out of control. They should be roughly two times the volume of emails sent or received but all of a sudden we were getting fourty times as many! We only send just over 1GB of emails per week but have 50GB of transaction logs in that time.
    I've spent ages trying to track down the cause and have an open TAC case with Microsoft that's been dragging on for several months now. We have recently proved that it's activesync causing the log growth - disable it and everything returns to normal - but they don't seem to be in any rush to identify a fix and I suspect their answer will be "Stop using iPhones".
    Has anyone else seen this behaviour before and if so did you find a fix?
    I was hoping iOS 6 might provide a solution but I'm reluctant to get everyone to upgrade because of the well publicised problems with maps and now I see that there are different Activesync bugs involving cancellation of meeting requests.
    Anyone who can provide me with a resolution will win a prize as I'm at my wits end here.
    Thanks

    I have seen the issue twice in two weeks.  Two different users, the commonality is both an iphone, and an ipad.  In both cases the ipad was on wifi.  I was able to turn on device logging in the ECP and in 20 minutes captured over 1 MB log on i-pad.  I disabled the i-pad via the ecp and issue disipated.
    When I reviewed the log the content that was being sync'd was over 5 months old.  I instructed the user to back off to 30 days.  Device is still stable, and the 30 days is just a temporary solution.  I have opened a case with Microsoft for further review of the session log.  What is interesting is that the log is consumed with a particular fetch and message class:  ipm.note.eas  <- EAS is the Exchange Archiving System stub created by Zantaz.  I confirmed with our admin that we did not do any sync on the EAS server.  I am looking into if the User initiated an Outlook resync of stubs.
    <Fetch>
         <ServerId>8:19930</ServerId>
         <Status>1</Status>
         <ApplicationData>
          <To xmlns="Email:" bytes="50"/>
          <From xmlns="Email:" bytes="35"/>
          <Subject xmlns="Email:" bytes="18"/>
          <DateReceived xmlns="Email:">2012-08-26T04:01:29.964Z</DateReceived>
          <DisplayTo xmlns="Email:" bytes="16"/>
          <ThreadTopic xmlns="Email:" bytes="14"/>
          <Importance xmlns="Email:">1</Importance>
          <Read xmlns="Email:">0</Read>
          <Body=4502 bytes/>
          <MessageClass xmlns="Email:">IPM.Note.EAS</MessageClass>
          <InternetCPID xmlns="Email:">1252</InternetCPID>
          <Flag xmlns="Email:"/>
          <ContentClass xmlns="Email:">urn:content-classes:message</ContentClass>
          <NativeBodyType xmlns="AirSyncBase:">3</NativeBodyType>
          <ConversationId xmlns="Email2:">BEF20C7413954F8DAC2C558F7AE26FF0</ConversationId>
          <ConversationIndex xmlns="Email2:">CD8206EA510011DCEC00FFFF9F122F8002B86D80</ConversationIndex>
          <Categories xmlns="Email:"/>
         </ApplicationData>
        </Fetch>
    device details:
    Device OS:
    iOS 6.0.1 10A523
    Device language:
    en
    User agent:
    Apple-iPhone4C1/1001.523
    Device OS:
    iOS 6.0.1 10A523
    Device language:
    en
    User agent:
    Apple-iPad3C2/1001.523

  • Why does Quickbooks 2015 cause "Excessive Wakeups" and crash?

    I had to buy Quickbooks 2015 because I upgraded to Yosemite. I cannot install it. Every time I install, it crashes before I can register it or even use it. I have re-installed many times and worked with Quickbooks support. It seems to hinge on "Excessive Wakeups."
    See Console Messages:
    11/22/14 8:58:55.000 PM kernel[0]: process QuickBooks 2015[425] caught causing excessive wakeups. Observed wakeups rate (per sec): 2563; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45006
    11/22/14 8:58:55.420 PM com.apple.xpc.launchd[1]: (com.apple.ReportCrash[432]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    11/22/14 8:58:55.421 PM ReportCrash[432]: Invoking spindump for pid=425 wakeups_rate=2563 duration=18 because of excessive wakeups
    11/22/14 8:58:56.653 PM spindump[355]: Saved wakeups_resource.diag report for QuickBooks 2015 version 16.0.1.1384 R2 (16.0.1.1384) to /Library/Logs/DiagnosticReports/QuickBooks 2015_2014-11-22-205856_Donalds-MacBook-Pro-3.wakeups_resource.diag
    11/22/14 8:59:12.931 PM com.apple.xpc.launchd[1]: (com.intuit.QuickBooks2015.357020[425]) Service exited due to signal: Terminated: 15
    11/22/14 8:59:13.519 PM Keychain Access[203]:  SOSCCThisDeviceIsInCircle SOSCCThisDeviceIsInCircle!! 9
    11/22/14 8:59:37.306 PM spindump[355]: Saved hang report for QuickBooks 2015 version 16.0.1.1384 R2 (16.0.1.1384) to /Library/Logs/DiagnosticReports/QuickBooks 2015_2014-11-22-205937_Donalds-MacBook-Pro-3.hang
    11/22/14 8:59:45.808 PM QuickBooks 2015[436]: Cannot find executable for CFBundle 0x40083f5e0 </Applications/QuickBooks 2015.app/Contents/Resources/CarbonResources.bundle> (not loaded)
    11/22/14 8:59:45.811 PM QuickBooks 2015[436]: objc[436]: Class ErrorViewController is implemented in both /Applications/QuickBooks 2015.app/Contents/Resources/ItemImporter.bundle/Contents/MacOS/ItemImporter and /Applications/QuickBooks 2015.app/Contents/Resources/SpreadsheetImporter.bundle/Contents/MacOS/Spreadshe etImporter. One of the two will be used. Which one is undefined.
    11/22/14 8:59:45.811 PM QuickBooks 2015[436]: objc[436]: Class PastableFieldEditor is implemented in both /Applications/QuickBooks 2015.app/Contents/Resources/ItemImporter.bundle/Contents/MacOS/ItemImporter and /Applications/QuickBooks 2015.app/Contents/Resources/SpreadsheetImporter.bundle/Contents/MacOS/Spreadshe etImporter. One of the two will be used. Which one is undefined.
    11/22/14 8:59:45.811 PM QuickBooks 2015[436]: objc[436]: Class PastableTableView is implemented in both /Applications/QuickBooks 2015.app/Contents/Resources/ItemImporter.bundle/Contents/MacOS/ItemImporter and /Applications/QuickBooks 2015.app/Contents/Resources/SpreadsheetImporter.bundle/Contents/MacOS/Spreadshe etImporter. One of the two will be used. Which one is undefined.
    11/22/14 8:59:45.945 PM bird[240]: Assertion failed: ![_xpcClients containsObject:client]
    11/22/14 8:59:45.945 PM bird[240]: Assertion failed: ![_xpcClients containsObject:client]
    11/22/14 8:59:46.388 PM Keychain Access[203]:  SOSCCThisDeviceIsInCircle SOSCCThisDeviceIsInCircle!! 10
    11/22/14 8:59:46.738 PM QuickBooks 2015[436]: {muclient} browsing for serivce
    11/22/14 8:59:49.604 PM QuickBooks 2015[436]: QuickBooks 2015(436,0x10debb000) malloc: reference count underflow for 0x400f793c0, break on auto_refcount_underflow_error to debug.
    11/22/14 8:59:49.604 PM QuickBooks 2015[436]: QuickBooks 2015(436,0x10debb000) malloc: reference count underflow for 0x400f44f20, break on auto_refcount_underflow_error to debug.
    I need the program for work I do.

    Good to know I'm not alone with this particular problem, and that it probably isn't my particular phone. Curiously, when I first installed the new version of PCSuite - it told me that I needed to install some kind of plugin for PCSuite onto my phone. No idea what, and cannot imagine. At that point, though, I do not think PCSuite was crashing, just giving the strange message.
    However, my phone, after its firmware upgrade did keep trying to download something mysterious, and was giving me a message about incompatible software. I solved that problem by deleting a couple of unknown apps (just alphanumeric gobbledegook) found through references on these forums. I wish I could remember the precise messages I was receiving. Phone itself now works fine, however - and no more strange messages, either from the phone or from PCSuite - just the PCSuite alleged crash. Uninstalling and reinstalling PCSuite, and its related apps (eg connectivity wotsit, cable driver wotsit) does not help.
    Sounds like if we could just rename or bump up some version number reference within the PCSuite program and its related installs, we might solve the problem.
    By the way - does anyone know where you can get an up to date PCSuite Cleaner. Seems to have disappeared from the Nokia site?Message Edited by ozerdavid on 07-Dec-200711:39 AM

  • Mac: Flash causes "excessive wakeups" during Adobe Connect meetings

    I posted a message that can be found here last November where Flash was causing Adobe Connect meetings to crash every few minutes.  Since then, there's a new version of Flash (13.0.0.182) and the school has updated their Adobe Connect platform.  However, the problem is still there.
    If it's a meeting with 2 or 3 people everything is fine.  The issue is only present when in a "class" where there are many people (like 8-15) using webcams at once and the instructor is sharing slides or something.  In this situation the meeting window either freezes or restarts every few minutes and upon examining the console log there is a corresponding message stating:
    4/15/14 18:57:27.000 kernel[0]: process PluginProcess[1877] caught causing excessive wakeups. Observed wakeups rate (per sec): 172; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 180731
    4/15/14 18:57:27.867 ReportCrash[1980]: Invoking spindump for pid=1877 wakeups_rate=172 duration=262 because of excessive wakeups
    This happened when using Safari 7.0.2.  When using firefox there is a similar message (only "plugin-container" instead of "PluginProcess" causes the excessive wakeups.  And with Firefox, the wakeup rate tends to be around 1500, not just 172).
    A couple notes:
    1) I've already gone into Safari preferences and allowed Flash to "Run Always" and "Run in Unsafe Mode" for the domain.
    2) I've already removed the Adobe Connect Add-in to eliminate that as a possible source of the problem.  When I examine the Diagnostic Reports in /Library/Logs it's clearly the Flash plugin that's causing the problem, or some interaction between the plugin and the QT Framework, or something.  I don't know.
    3) I've already contacted Apple and (not surprisingly) they told me it's not their problem and to contact Adobe.
    4) Before someone asks - YES my install of Mavericks is a "clean" install.
    5) Adobe Connect works fine on a windows machine on the same connection.
    6) Troubleshooting steps have included reducing the video resolution, disabling hardware acceleration, deleting the preferences files, clearing cache, clearing local storage from the Flash preferences pane, removing and reinstalling the plugin, etc. etc.
    Back when I had Mountain Lion there were problems like this in Safari, and the work-around was to use Firefox or Chrome.  Now it appears it just doesn't work, period.  Has anyone else run into this and is there a work-around?  Thanks.
    -AA

    Yep - makes sense, however that box has been unchecked the whole time.  Also the same thing happens in Firefox which would seem to eliminate that feature as the culprit.
    After researching "excessive wakeups" on other forums it appears there are some similar complaints about PhotoShop, Final Cut, EyeTV, google earth, basically graphics-intensive programs - I can't find any others about Adobe Connect, although the IT folks at the school have told me it's a well-known issue.  I suspect it has something to do with the way Flash interacts with the frameworks in Mavericks but I'm just guessing -  wondering if anyone else has seen this happen or knows a work-around?

  • I have to tell Firefox that I am logging in from "home" every time I log into Facebook. Firefox will not let me unclick ""Send me an email" under Login Notifications in Facebook "My Account" settings. Why? (to both questions)

    I have to tell Firefox that I am logging in from "home" every time I log into Facebook. Firefox will not let me unclick ""Send me an email" under Login Notifications in Facebook "My Account" settings. Why? (to both questions)

    It started last week - I normally use Chrome to play my games in Facebook - but I started getting "Sorry, this feature isn't available
    right now"..... When I used IE..... no problem - a friend said to install Foxfire, which I did, but I made the mistake of having my bookmarks and whatever transferred from Google as it is the browser I used most often and it has all my bookmarks, but
    now it does the same thing when I try to log into Facebook. - I have no problem with any other website.  I deleted both Google and Foxfire and tried to start over - I cleared History and checked all the boxes hoping that this would help - but it did not.
     I can't understand why I can get in with IE, but not Google or Foxfire.  Do you have any suggestions.......
    On Friday, it started working again - and everything was fine.  But on Sunday evening I ran the History Clean in Google and when
    I went to log back in, I couldn't and got the same "Sorry" message and has stayed this way since. 
    I ran a Norton scan of the entire computer, a Hitman scan, a CCleaner scan, ...  all to no avail. Problem still exists.
    I tried to run a restore program prior to the problem, but I am getting error messages like mad.
    there has been two Windows Updates in this time frame and I don't know if this has anything to do with it or not - but my Restore program does not work.
    NYCsDancer -- if its working via Internet Explorer, we can't help you much. Most of the time it has to do with Cookies, or your Java Version. I'd reach out to Google's forums for assistance with Chrome
    https://support.google.com/chrome/?hl=en#topic=3227046
    or Firefox support for assistance with Firefox
    https://support.mozilla.org/en-US/products/firefox
    Or as S.Sengupta said  reach out to the Facebook Help center....
    Entrepreneur, Strategic Technical Advisor, and Sr. Consulting Engineer - Strategic Services and Solutions Check out my book - Powershell 3.0 - WMI: http://amzn.to/1BnjOmo | Mastering PowerShell Coming in April 2015!

Maybe you are looking for

  • Import photos from burned disks into library

    I know this sounds like an easy question/solution, but I have been trying to import my older pictures which were burned onto disks into my library. On the hard drive it appears that I have done this, but when I open the iPhoto application I cannot ac

  • Im desperate....

    my itunes on my computer was erased and all my songs gone. i currently have all my songs still on my ipod. if i insert my ipod into my computer will tunes automatically erase all my songs? is there anyway to transfer all my songs on my ipod to itunes

  • 802.1x using authentication from NT Domain Controller instead of Radius

    I would like to know if it's possible to configure 802.1x using authentication from NT Domain Controller, instead of using Radius or Tacacs.

  • Mapping error "Dynamic Configuration Is Empty"??

    Hi- we have a scenario where we map a SOAP message from a webservice to call a function module in SAP ECC via RFC and then map the returned parameters as response to the webservice. We have configured everything and I get the following error in the t

  • What is latest version of JSF that is used in J2ee 1.4?

    Hi Friends, JSF 1.2 or higher.what is softwarev requirements to use JSF.Please tell me Appliocation Server or Web server that can implement latest specification of JSF.Please reply as earlier as possible. Thanks Bye