aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2008-07-17 09:07:32 +0000
committerYAMAMOTO Mitsuharu2008-07-17 09:07:32 +0000
commit69955d31c4b59034d3429b14ca9f33ea102dde73 (patch)
tree00eefe80b7c14c7c1babb2b9b0f567e43004116f /src
parent2c4df14348bbe667422a0205e1de215ae56ea4ed (diff)
downloademacs-69955d31c4b59034d3429b14ca9f33ea102dde73.tar.gz
emacs-69955d31c4b59034d3429b14ca9f33ea102dde73.zip
Mention setsid after vfork.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog11
-rw-r--r--src/s/darwin.h3
2 files changed, 13 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 54f1fd65d29..e1c93051548 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * gtkutil.c: Include <config.h> instead of "config.h".
4
5 * lisp.h (Foverlay_buffer): Add EXFUN.
6
7 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
8 child process to complete child_setup. Undo 2005-09-21 change.
9
10 * s/darwin.h: Mention setsid after vfork.
11
12008-07-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 122008-07-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 13
3 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o): 14 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
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