summaryrefslogtreecommitdiff
path: root/execute.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-01-24 00:39:29 +0100
committerLennart Poettering <lennart@poettering.net>2010-01-24 00:39:29 +0100
commit9152c765065184d0c1267ed2499e3fe4cac53755 (patch)
tree70047967e77e502779d1febc6209a4f7b67a1bbf /execute.h
parent476fe607ecbabc5beffafc8efb0778e3d9e1030a (diff)
add simple event loop
Diffstat (limited to 'execute.h')
-rw-r--r--execute.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/execute.h b/execute.h
index fb952d1e6a..552e4a9e63 100644
--- a/execute.h
+++ b/execute.h
@@ -18,7 +18,8 @@ typedef struct ExecContext ExecContext;
struct ExecStatus {
pid_t pid;
time_t timestamp;
- int status; /* as in wait() */
+ int code; /* as in siginfo_t::si_code */
+ int status; /* as in sigingo_t::si_status */
};
struct ExecCommand {