aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-02-16 23:36:32 +1000
committerGravatar axel <axel@liljencrantz.se>2006-02-16 23:36:32 +1000
commitcc69afc4fec7d5d2918a6ee086cef8e3f03324aa (patch)
tree60c3fb7f54db0afc593916819973e09cf61c192f /proc.h
parent777a559e1205278d50b80d5f96505b662fe02d24 (diff)
Fix bug in fish causing occasionally incorrect signal handlers
darcs-hash:20060216133632-ac50b-f24c049830f9c6deca50aca640189ad3f87b630a.gz
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/proc.h b/proc.h
index 4e46b2ae..405d4d45 100644
--- a/proc.h
+++ b/proc.h
@@ -337,4 +337,16 @@ void proc_init();
*/
void proc_destroy();
+/**
+ Set new value for is_interactive flag, saving previous value. If
+ needed, update signal handlers.
+*/
+void proc_push_interactive( int value );
+
+/**
+ Set is_interactive flag to the previous value. If needed, update
+ signal handlers.
+*/
+void proc_pop_interactive();
+
#endif