Mercurial > hg > xemacs-beta
comparison src/sysdep.c @ 211:78478c60bfcd r20-4b4
Import from CVS: tag r20-4b4
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:05:51 +0200 |
parents | 41ff10fd062f |
children | 12579d965149 |
comparison
equal
deleted
inserted
replaced
210:49f55ca3ba57 | 211:78478c60bfcd |
---|---|
592 | 592 |
593 #ifdef WINDOWSNT | 593 #ifdef WINDOWSNT |
594 pid = -1; | 594 pid = -1; |
595 #else /* not WINDOWSNT */ | 595 #else /* not WINDOWSNT */ |
596 | 596 |
597 pid = vfork (); | 597 pid = fork (); |
598 | 598 |
599 if (pid == -1) | 599 if (pid == -1) |
600 error ("Can't spawn subshell"); | 600 error ("Can't spawn subshell"); |
601 if (pid == 0) | 601 if (pid == 0) |
602 | 602 |