aboutsummaryrefslogtreecommitdiff
path: root/mpiosh/mpiosh.h
diff options
context:
space:
mode:
authorcrunchy <crunchy>2002-09-13 15:20:23 +0000
committercrunchy <crunchy>2002-09-13 15:20:23 +0000
commit690c9e245e451dfd9723fd2dd86bac999228b4c9 (patch)
tree34926f17a13e765ee8f2356c611eb82872ba5810 /mpiosh/mpiosh.h
parentc0c5a77e8220f9d1bcdb46f46527d0ef0ca50359 (diff)
downloadmpiosh-690c9e245e451dfd9723fd2dd86bac999228b4c9.tar.gz
mpiosh-690c9e245e451dfd9723fd2dd86bac999228b4c9.tar.bz2
mpiosh-690c9e245e451dfd9723fd2dd86bac999228b4c9.zip
better signal handling, new command lpwd
Diffstat (limited to 'mpiosh/mpiosh.h')
-rw-r--r--mpiosh/mpiosh.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/mpiosh/mpiosh.h b/mpiosh/mpiosh.h
index a26c911..c6e8755 100644
--- a/mpiosh/mpiosh.h
+++ b/mpiosh/mpiosh.h
@@ -2,7 +2,7 @@
*
* Author: Andreas Büsching <crunchy@tzi.de>
*
- * $Id: mpiosh.h,v 1.2 2002/09/13 07:00:46 crunchy Exp $
+ * $Id: mpiosh.h,v 1.3 2002/09/13 15:20:25 crunchy Exp $
*
* Copyright (C) 2002 Andreas Büsching <crunchy@tzi.de>
*
@@ -39,6 +39,9 @@ typedef struct {
cmd_callback func;
} mpiosh_cmd_t;
+/* signal handler */
+void mpiosh_signal_handler(int signal);
+
/* readline extensions */
void mpiosh_readline_init(void);
char **mpiosh_readline_completion(const char *text, int start, int end);
@@ -51,9 +54,10 @@ char **mpiosh_command_split(char *line);
char **mpiosh_command_get_args(char *line);
void mpiosh_command_free_args(char **args);
-/* global structure for device information */
+/* global structures */
extern mpiosh_t mpiosh;
extern mpiosh_cmd_t commands[];
+extern int mpiosh_cancel;
extern const char *PROMPT_INT;
extern const char *PROMPT_EXT;