aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c
index 94033fa7ee3..85470b66c3e 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1841,6 +1841,9 @@ create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
1841 1841
1842 signal (SIGINT, SIG_DFL); 1842 signal (SIGINT, SIG_DFL);
1843 signal (SIGQUIT, SIG_DFL); 1843 signal (SIGQUIT, SIG_DFL);
1844#ifdef SIGPROF
1845 signal (SIGPROF, SIG_DFL);
1846#endif
1844 1847
1845 /* Emacs ignores SIGPIPE, but the child should not. */ 1848 /* Emacs ignores SIGPIPE, but the child should not. */
1846 signal (SIGPIPE, SIG_DFL); 1849 signal (SIGPIPE, SIG_DFL);