* child_info.h: Reset magic number.
(child_info_spawn::wait_for_myself): Move function to sigproc.cc. * pinfo.cc (is_toplevel_proc): Delete unneeded variable. * sigproc.cc (child_info_spawn::wait_for_myself): Move function from header to here. Do all setup required to properly wait for top-level execed process to exit. * spawn.cc (child_info_spawn::worker): Attempt to properly handle _P_DETACH. Set wr_proc_pipe if top-level process even when execing. Just call wait_for_myself() to... wait for myself. Don't call cleanup twice.
This commit is contained in:
@@ -35,7 +35,7 @@ enum child_status
|
||||
#define EXEC_MAGIC_SIZE sizeof(child_info)
|
||||
|
||||
/* Change this value if you get a message indicating that it is out-of-sync. */
|
||||
#define CURR_CHILD_INFO_MAGIC 0xa49e665eU
|
||||
#define CURR_CHILD_INFO_MAGIC 0x4a52da7eU
|
||||
|
||||
#define NPROCS 256
|
||||
|
||||
@@ -158,7 +158,7 @@ public:
|
||||
return true;
|
||||
}
|
||||
}
|
||||
void wait_for_myself () { WaitForSingleObject (ev, INFINITE); }
|
||||
void wait_for_myself ();
|
||||
bool has_execed () const
|
||||
{
|
||||
if (hExeced)
|
||||
|
Reference in New Issue
Block a user