* child_info.h (child_info_spawn::has_execed): Remove unneeded synchronization.

This commit is contained in:
Christopher Faylor 2012-10-09 22:07:10 +00:00
parent 9536b817b1
commit 64f6e90ef7
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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> 2012-10-09 Christopher Faylor <me.cygwin2012@cgf.cx>
* pinfo.cc: Remove unneeded assert.h. * pinfo.cc: Remove unneeded assert.h.

View File

@ -172,8 +172,6 @@ public:
return true; return true;
if (type != _CH_EXEC) if (type != _CH_EXEC)
return false; return false;
lock->acquire ();
lock->release ();
return !!hExeced; return !!hExeced;
} }
bool get_parent_handle (); bool get_parent_handle ();