mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 11:09:34 -05:00
Apply patch to better behave under Solaris threads (thr).
Could still deadlock on the close(). A surrogate parent should be used to create the children...
This commit is contained in:
parent
7fe153acaa
commit
9da13f321c
1 changed files with 13 additions and 1 deletions
|
|
@ -32,8 +32,20 @@ forkandexec(
|
|||
* parent *rfp <- c2p[0] | c2p[1] <- stdout child
|
||||
*/
|
||||
|
||||
switch ( (pid = fork()) ) {
|
||||
#ifdef HAVE_THR
|
||||
switch ( (pid = fork1()) )
|
||||
#else
|
||||
switch ( (pid = fork()) )
|
||||
#endif
|
||||
{
|
||||
case 0: /* child */
|
||||
/*
|
||||
* child could deadlock here due to resources locked
|
||||
* by our parent
|
||||
*
|
||||
* If so, configure --without-threads or implement forking
|
||||
* via a surrogate parent.
|
||||
*/
|
||||
close( p2c[1] );
|
||||
close( c2p[0] );
|
||||
if ( dup2( p2c[0], 0 ) == -1 || dup2( c2p[1], 1 ) == -1 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue