* process.c (create_process): Reset SIGPROF handler in the child.
* callproc.c (call_process): Likewise.
+2014-01-30 Andreas Schwab <schwab@linux-m68k.org>
+
+ * process.c (create_process): Reset SIGPROF handler in the child.
+ * callproc.c (call_process): Likewise.
+
2014-01-29 Paul Eggert <eggert@cs.ucla.edu>
* xmenu.c (create_and_show_popup_menu): Port comment to C89.
/* Emacs ignores SIGPIPE, but the child should not. */
signal (SIGPIPE, SIG_DFL);
+ /* Likewise for SIGPROF. */
+#ifdef SIGPROF
+ signal (SIGPROF, SIG_DFL);
+#endif
child_setup (filefd, fd_output, fd_error, new_argv, 0, current_dir);
}
signal (SIGINT, SIG_DFL);
signal (SIGQUIT, SIG_DFL);
+#ifdef SIGPROF
+ signal (SIGPROF, SIG_DFL);
+#endif
/* Emacs ignores SIGPIPE, but the child should not. */
signal (SIGPIPE, SIG_DFL);