aboutsummaryrefslogtreecommitdiff
path: root/src/common/include
diff options
context:
space:
mode:
authorAlex Auvolat <alex.auvolat@ens.fr>2015-03-02 23:30:16 +0100
committerAlex Auvolat <alex.auvolat@ens.fr>2015-03-03 00:07:27 +0100
commitbb1a5fc74769301c0a792cb83d3fa0bda8a780cb (patch)
tree14b406cc83798524e12d24ab211c4580d1c52f1f /src/common/include
parent0d47724c5f6201fdc7679327ad4a132c708b8042 (diff)
downloadkogata-bb1a5fc74769301c0a792cb83d3fa0bda8a780cb.tar.gz
kogata-bb1a5fc74769301c0a792cb83d3fa0bda8a780cb.zip
Add prototypes for process management...
Diffstat (limited to 'src/common/include')
-rw-r--r--src/common/include/proc.h18
-rw-r--r--src/common/include/syscallproto.h18
2 files changed, 22 insertions, 14 deletions
diff --git a/src/common/include/proc.h b/src/common/include/proc.h
new file mode 100644
index 0000000..01a6722
--- /dev/null
+++ b/src/common/include/proc.h
@@ -0,0 +1,18 @@
+#pragma once
+
+#include <stddef.h>
+#include <stdint.h>
+
+#define PS_LOADING 1
+#define PS_RUNNING 2
+#define PS_DONE 3
+#define PS_FAILURE 4 // exception or segfault or stuff
+#define PS_KILLED 5
+
+typedef struct {
+ int pid;
+ int state; // one of PS_*
+ int return_code; // an error code if state == PS_FAILURE
+} proc_status_t;
+
+/* vim: set ts=4 sw=4 tw=0 noet :*/
diff --git a/src/common/include/syscallproto.h b/src/common/include/syscallproto.h
index 7b85a49..518cdb4 100644
--- a/src/common/include/syscallproto.h
+++ b/src/common/include/syscallproto.h
@@ -1,5 +1,6 @@
#pragma once
+#include <proc.h>
#define SC_MAX 128 // maximum number of syscalls
@@ -40,8 +41,9 @@
#define SC_PROC_EXEC 55 // args: pid, exec_name, exec_name_strlen -- execute binary in process
#define SC_PROC_STATUS 56 // args: pid, proc_status_t*
#define SC_PROC_KILL 57 // args: pid, proc_status_t* -- inconditionnally kill child process
-#define SC_PROC_WAIT 58 // args: pid, proc_status_t*
-#define SC_PROC_WAIT_ANY 59 // args: proc_status_t*
+#define SC_PROC_WAIT 58 // args: pid?, block?, proc_status_t*
+
+#define INVALID_PID 0 // do a wait with this PID to wayt for any child
typedef struct {
const char* driver;
@@ -71,16 +73,4 @@ typedef struct {
int bind_to_pid; // used only for SC_BIND_SUBFS
} sc_subfs_args_t;
-#define PS_LOADING 1
-#define PS_RUNNING 2
-#define PS_DONE 3
-#define PS_FAILURE 4 // exception or segfault or stuff
-#define PS_KILLED 5
-typedef struct {
- int pid;
- int state; // one of PS_*
- int return_code; // an error code if state == PS_FAILURE
-} proc_status_t;
-
-
/* vim: set ts=4 sw=4 tw=0 noet :*/