From c0ed9fe0d3bd8bf7cf05c5183539e3d72a3d3875 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sat, 7 Mar 2015 18:27:34 +0100 Subject: Implement wait and exec. --- src/common/include/proc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/common') 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 :*/ -- cgit v1.2.3