diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2015-03-07 18:27:34 +0100 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2015-03-07 18:27:34 +0100 |
commit | c0ed9fe0d3bd8bf7cf05c5183539e3d72a3d3875 (patch) | |
tree | bafb110b838ea4e8b85c18ef618823c2afab51c0 /src/common | |
parent | 92731869cbf96c96b6c79f49310b1982ba3f86ee (diff) | |
download | kogata-c0ed9fe0d3bd8bf7cf05c5183539e3d72a3d3875.tar.gz kogata-c0ed9fe0d3bd8bf7cf05c5183539e3d72a3d3875.zip |
Implement wait and exec.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/include/proc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/include/proc.h b/src/common/include/proc.h index af50001..831e5c6 100644 --- a/src/common/include/proc.h +++ b/src/common/include/proc.h @@ -16,8 +16,8 @@ typedef struct { int pid; - int state; // one of PS_* - int return_code; // an error code if state == PS_FAILURE + int status; // one of PS_* + int exit_code; // an error code if state == PS_FAILURE } proc_status_t; /* vim: set ts=4 sw=4 tw=0 noet :*/ |