diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-01 00:26:44 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-01 00:26:44 +0200 |
commit | 6398320759ce4ed84922bb28f715d3c6c66166c4 (patch) | |
tree | d82395c8860a377eef72b28f3cc707ed16e31eff /src/execute.h | |
parent | 6398bea5d22a1d53f2fdabbf6fa4dc6f4ac1b6f4 (diff) |
core: rename struct timestamp to dual_timestamp to avoid name clash with IP system headers
Diffstat (limited to 'src/execute.h')
-rw-r--r-- | src/execute.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/execute.h b/src/execute.h index e618049497..841670aa6d 100644 --- a/src/execute.h +++ b/src/execute.h @@ -67,8 +67,8 @@ typedef enum ExecOutput { } ExecOutput; struct ExecStatus { - usec_t start_timestamp; - usec_t exit_timestamp; + dual_timestamp start_timestamp; + dual_timestamp exit_timestamp; pid_t pid; int code; /* as in siginfo_t::si_code */ int status; /* as in sigingo_t::si_status */ |