aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-10-12 05:23:43 +1000
committerGravatar axel <axel@liljencrantz.se>2005-10-12 05:23:43 +1000
commit838ba08eaa883026d6fb88cd65dde33b16a564fd (patch)
tree164ec92c2b27f82e7fced328e5f0922813645d00 /proc.h
parent0a4b983afa4137da9392b2bb198a02f6d1df38f7 (diff)
Event handling and job reaping updates
darcs-hash:20051011192343-ac50b-aa3f5ae5e2b34d122f10e3b59ceb6fdd447f4ae3.gz
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/proc.h b/proc.h
index 9f8e85d6..9c11a386 100644
--- a/proc.h
+++ b/proc.h
@@ -92,7 +92,7 @@ typedef struct job
*/
int constructed;
/**
- Whether the specified job is a part of a subshell or some other form of special job that should not be reported
+ Whether the specified job is a part of a subshell, event handler or some other form of special job that should not be reported
*/
int skip_notification;
@@ -185,8 +185,10 @@ void job_continue( job_t *j, int cont );
/**
Notify user of nog events. Notify the user about stopped or
terminated jobs. Delete terminated jobs from the active job list.
+
+ \param interactive whether interactive jobs should be reaped as well
*/
-int job_do_notification();
+int job_reap( int interactive );
/**
Signal handler for SIGCHLD. Mark any processes with relevant
information.