Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-12-22 07:16:43 +0400
committerChristopher Faylor <me@cgf.cx>2012-12-22 07:16:43 +0400
commite97256cf70fc1627641f0a10390b61ba904a6fe5 (patch)
treeae45ee5ea606fa6e4892ecb7fa3fc069beadda01 /winsup/cygwin/sync.h
parentd3a03427bc2f8b17b7e87c07ba318f6a1df9dd70 (diff)
Back out prematurely checked-in change.
Diffstat (limited to 'winsup/cygwin/sync.h')
-rw-r--r--winsup/cygwin/sync.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/sync.h b/winsup/cygwin/sync.h
index 2afa1199e..d424d39ab 100644
--- a/winsup/cygwin/sync.h
+++ b/winsup/cygwin/sync.h
@@ -48,9 +48,9 @@ class lock_process
public:
static void init () {locker.init ("lock_process");}
void dont_bother () {skip_unlock = true;}
- lock_process (bool exiting = false, DWORD howlong = INFINITE)
+ lock_process (bool exiting = false)
{
- locker.acquire (howlong);
+ locker.acquire ();
skip_unlock = exiting;
if (exiting && exit_state < ES_PROCESS_LOCKED)
exit_state = ES_PROCESS_LOCKED;