Remco;6031 wrote:Do you know anything about what kind of tests may have been running in the process previously? Anything that involves background processing or making use of unmanaged code?
Only managed code, except some funky integration tests modifying system time using below dll import but these have not caused similar previously. We do have some integration tests doing "background" processing via new threads/TPL tasks but I guess these should be shown in stack trace as well as killed via default timeout if they were the culprit.
Code:
[DllImport("kernel32.dll", SetLastError = true)]
public static extern bool SetSystemTime(ref SYSTEMTIME st);
I've had some other weird OS issues lately when I upgraded to 32GB RAM (e.g. cpu choking WmiPrvSE.exe) so I will try rebooting and see if it re-appears.