In the Win32 implementation of PR_CreatePipe, mark the pipe endpoints

as inheritable.  (We probably should create them as non-inheritable.)
This commit is contained in:
wtc%netscape.com 1999-02-12 18:47:18 +00:00
Родитель 19fafdf58c
Коммит 9b9e8b9c7f
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -551,6 +551,8 @@ PR_IMPLEMENT(PRStatus) PR_CreatePipe(
(*readPipe)->secret->md.sync_file_io = PR_TRUE;
(*writePipe)->secret->md.sync_file_io = PR_TRUE;
#endif
(*readPipe)->secret->inheritable = PR_TRUE;
(*writePipe)->secret->inheritable = PR_TRUE;
return PR_SUCCESS;
#elif defined(XP_UNIX)
int pipefd[2];