aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-10-14 21:40:33 +1000
committerGravatar axel <axel@liljencrantz.se>2005-10-14 21:40:33 +1000
commit0ebf6db4b972648ff5a2bed41120bff7b681ea37 (patch)
treef33c14837e2aa75056cf8e1dccb03b6432a43a1b /proc.h
parentf321855c0293ec56c9f61c163bd1ac8927aabd1b (diff)
Increase fish robustness by improving signal handling when forking jobs and minor signal handling improvements
darcs-hash:20051014114033-ac50b-8d0f6274ac590f1b6dbe82c55366f44ed7debf20.gz
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/proc.h b/proc.h
index 9c11a386..67539f71 100644
--- a/proc.h
+++ b/proc.h
@@ -196,11 +196,6 @@ int job_reap( int interactive );
*/
void job_handle_signal( int signal, siginfo_t *info, void *con );
-/**
- Clean up before exiting
-*/
-void proc_destroy();
-
#ifdef HAVE__PROC_SELF_STAT
/**
@@ -225,4 +220,14 @@ void proc_update_jiffies();
*/
void proc_sanity_check();
+/*
+ Initializations
+*/
+void proc_init();
+
+/**
+ Clean up before exiting
+*/
+void proc_destroy();
+
#endif