aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/include/proc.h4
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 :*/