summaryrefslogtreecommitdiff
path: root/src/fe-common
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe-common')
-rw-r--r--src/fe-common/core/fe-exec.c2
-rw-r--r--src/fe-common/core/fe-exec.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-exec.c b/src/fe-common/core/fe-exec.c
index b8aedefa..1bac8eb6 100644
--- a/src/fe-common/core/fe-exec.c
+++ b/src/fe-common/core/fe-exec.c
@@ -35,7 +35,7 @@
#include <signal.h>
#include <sys/wait.h>
-static GSList *processes;
+GSList *processes;
static int signal_exec_input;
static void exec_wi_destroy(EXEC_WI_REC *rec)
diff --git a/src/fe-common/core/fe-exec.h b/src/fe-common/core/fe-exec.h
index e82a4c7e..bebd1f82 100644
--- a/src/fe-common/core/fe-exec.h
+++ b/src/fe-common/core/fe-exec.h
@@ -40,6 +40,8 @@ struct PROCESS_REC {
unsigned int silent:1; /* don't print "process exited with level xx" */
};
+extern GSList *processes;
+
void fe_exec_init(void);
void fe_exec_deinit(void);