diff options
author | Christopher Faylor <me@cgf.cx> | 2012-10-09 22:07:10 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2012-10-09 22:07:10 +0000 |
commit | 64f6e90ef7111c2378d8eff8b27a1b28ca99502a (patch) | |
tree | 836460c4fd1e42ed6b92e5676bd011738b3be8dd | |
parent | 9536b817b12280873a5e9efef77d4efbf181c012 (diff) | |
download | cygnal-64f6e90ef7111c2378d8eff8b27a1b28ca99502a.tar.gz cygnal-64f6e90ef7111c2378d8eff8b27a1b28ca99502a.tar.bz2 cygnal-64f6e90ef7111c2378d8eff8b27a1b28ca99502a.zip |
* child_info.h (child_info_spawn::has_execed): Remove unneeded synchronization.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/child_info.h | 2 |
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 (); |