]> git.eshelyaron.com Git - emacs.git/commitdiff
Initialize child signal handling before posix_spawn too.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 2 Nov 2022 20:24:26 +0000 (13:24 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 2 Nov 2022 20:25:11 +0000 (13:25 -0700)
Problem reported by Tino Calancha (Bug#58960).
* src/callproc.c (call_process): Initialize SIGCHLD handling
before possibly creating a child with emacs_span.  This need not
be in the critical section that calls emacs_spawn, so do it
outside the critical section.
* src/process.c (child_signal_init): Now extern.

src/callproc.c
src/lisp.h
src/process.c

index 4d4b86629cf24e2a7f38e53164b5d88a2d309b9d..f9f840e54400bed6dc3e672fb28a8a4d059fa520 100644 (file)
@@ -648,6 +648,7 @@ call_process (ptrdiff_t nargs, Lisp_Object *args, int filefd,
 
 #ifndef MSDOS
 
+  child_signal_init ();
   block_input ();
   block_child_signal (&oldset);
 
index d87f95493824a6bd03f23ebfa03bf6c09bab73df..eafa241adfe041c4546af07ebcbf13a74b76731f 100644 (file)
@@ -4915,6 +4915,7 @@ extern bool running_asynch_code;
 
 /* Defined in process.c.  */
 struct Lisp_Process;
+extern void child_signal_init (void);
 extern void kill_buffer_processes (Lisp_Object);
 extern int wait_reading_process_output (intmax_t, int, int, bool, Lisp_Object,
                                        struct Lisp_Process *, int);
index 358899cdedec44a439d69f42fa7c597e77727085..5144c5d6c9285324618f0d7e845d9153b132f643 100644 (file)
@@ -292,7 +292,6 @@ static int child_signal_read_fd = -1;
    descriptor to notify `wait_reading_process_output' of process
    status changes.  */
 static int child_signal_write_fd = -1;
-static void child_signal_init (void);
 #ifndef WINDOWSNT
 static void child_signal_read (int, void *);
 #endif
@@ -7323,7 +7322,7 @@ process has been transmitted to the serial port.  */)
 
 /* Set up `child_signal_read_fd' and `child_signal_write_fd'.  */
 
-static void
+void
 child_signal_init (void)
 {
   /* Either both are initialized, or both are uninitialized.  */