diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-01-24 00:39:29 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-01-24 00:39:29 +0100 |
commit | 9152c765065184d0c1267ed2499e3fe4cac53755 (patch) | |
tree | 70047967e77e502779d1febc6209a4f7b67a1bbf /execute.h | |
parent | 476fe607ecbabc5beffafc8efb0778e3d9e1030a (diff) |
add simple event loop
Diffstat (limited to 'execute.h')
-rw-r--r-- | execute.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 { |