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-10-10 02:07:10 +0400
committerChristopher Faylor <me@cgf.cx>2012-10-10 02:07:10 +0400
commit64f6e90ef7111c2378d8eff8b27a1b28ca99502a (patch)
tree836460c4fd1e42ed6b92e5676bd011738b3be8dd
parent9536b817b12280873a5e9efef77d4efbf181c012 (diff)
* child_info.h (child_info_spawn::has_execed): Remove unneeded synchronization.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/child_info.h2
2 files changed, 5 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 67d5157ae..f5d8808d7 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,10 @@
2012-10-09 Christopher Faylor <me.cygwin2012@cgf.cx>
+ * child_info.h (child_info_spawn::has_execed): Remove unneeded
+ synchronization.
+
+2012-10-09 Christopher Faylor <me.cygwin2012@cgf.cx>
+
* pinfo.cc: Remove unneeded assert.h.
2012-09-17 Christopher Faylor <me.cygwin2012@cgf.cx>
diff --git a/winsup/cygwin/child_info.h b/winsup/cygwin/child_info.h
index eac40c247..13f6d6991 100644
--- a/winsup/cygwin/child_info.h
+++ b/winsup/cygwin/child_info.h
@@ -172,8 +172,6 @@ public:
return true;
if (type != _CH_EXEC)
return false;
- lock->acquire ();
- lock->release ();
return !!hExeced;
}
bool get_parent_handle ();