diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-04 20:57:58 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-04 20:57:58 +0000 |
commit | 076bf0b69eafa42accb20e5ccfe23805ed91655d (patch) | |
tree | 9db5d60018d0b35a87a87549ae82614e8b0f3e21 /base/process_util_win.cc | |
parent | 07c00d99969c6584079c78a2e31cb0d5ad5beda7 (diff) | |
download | chromium_src-076bf0b69eafa42accb20e5ccfe23805ed91655d.zip chromium_src-076bf0b69eafa42accb20e5ccfe23805ed91655d.tar.gz chromium_src-076bf0b69eafa42accb20e5ccfe23805ed91655d.tar.bz2 |
Make UITest::CrashAwareSleep portable.
Review URL: http://codereview.chromium.org/40119
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10916 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util_win.cc')
-rw-r--r-- | base/process_util_win.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/base/process_util_win.cc b/base/process_util_win.cc index 0ed5d86..9829a41 100644 --- a/base/process_util_win.cc +++ b/base/process_util_win.cc @@ -353,6 +353,11 @@ bool WaitForSingleProcess(ProcessHandle handle, int wait_milliseconds) { return retval; } +bool CrashAwareSleep(ProcessHandle handle, int wait_milliseconds) { + bool retval = WaitForSingleObject(handle, wait_milliseconds) == WAIT_TIMEOUT; + return retval; +} + bool CleanupProcesses(const std::wstring& executable_name, int wait_milliseconds, int exit_code, |