* sigproc.cc (proc_subproc): Fix handling of waiting for pids with zero value.

* strace.cc (strace::hello): Report parent pid of executing process.
This commit is contained in:
Christopher Faylor
2005-04-20 20:43:36 +00:00
parent 2e98459145
commit c6cb7f8f01
3 changed files with 21 additions and 1 deletions

View File

@ -4073,3 +4073,16 @@ dirname (char *path)
strcpy (bs, ".");
return buf;
}
muto path_uglification::locker;
path_uglification::~path_uglification ()
{
if (locker.ismine ())
locker.release ();
}
win_path::win_path (const char *_path)
{
path = _path;
}