(mkdir, rmdir): Also check synch_process_termsig.

This commit is contained in:
Jan Djärv 2004-01-26 23:40:08 +00:00
parent b0c681e2ef
commit 6b0824c950

View file

@ -3741,7 +3741,8 @@ mkdir (dpath, dmode)
wait_for_termination (cpid);
}
if (synch_process_death != 0 || synch_process_retcode != 0)
if (synch_process_death != 0 || synch_process_retcode != 0
|| synch_process_termsig != 0)
{
errno = EIO; /* We don't know why, but */
return -1; /* /bin/mkdir failed */
@ -3787,7 +3788,8 @@ rmdir (dpath)
wait_for_termination (cpid);
}
if (synch_process_death != 0 || synch_process_retcode != 0)
if (synch_process_death != 0 || synch_process_retcode != 0
|| synch_process_termsig != 0)
{
errno = EIO; /* We don't know why, but */
return -1; /* /bin/rmdir failed */