diff options
| author | YAMAMOTO Mitsuharu | 2008-07-17 09:07:32 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2008-07-17 09:07:32 +0000 |
| commit | 69955d31c4b59034d3429b14ca9f33ea102dde73 (patch) | |
| tree | 00eefe80b7c14c7c1babb2b9b0f567e43004116f /src/s | |
| parent | 2c4df14348bbe667422a0205e1de215ae56ea4ed (diff) | |
| download | emacs-69955d31c4b59034d3429b14ca9f33ea102dde73.tar.gz emacs-69955d31c4b59034d3429b14ca9f33ea102dde73.zip | |
Mention setsid after vfork.
Diffstat (limited to 'src/s')
| -rw-r--r-- | src/s/darwin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/s/darwin.h b/src/s/darwin.h index 2017bd2e6cf..5ec850d4472 100644 --- a/src/s/darwin.h +++ b/src/s/darwin.h | |||
| @@ -337,7 +337,8 @@ Boston, MA 02110-1301, USA. */ | |||
| 337 | 337 | ||
| 338 | /* The following solves the problem that Emacs hangs when evaluating | 338 | /* The following solves the problem that Emacs hangs when evaluating |
| 339 | (make-comint "test0" "/nodir/nofile" nil "") when /nodir/nofile | 339 | (make-comint "test0" "/nodir/nofile" nil "") when /nodir/nofile |
| 340 | does not exist. */ | 340 | does not exist. Also, setsid is not allowed in the vfork child's |
| 341 | context as of Darwin 9/Mac OS X 10.5. */ | ||
| 341 | #undef HAVE_WORKING_VFORK | 342 | #undef HAVE_WORKING_VFORK |
| 342 | #define vfork fork | 343 | #define vfork fork |
| 343 | 344 | ||