diff options
author | Denis Vlasenko | 2007-08-23 10:52:52 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-08-23 10:52:52 +0000 |
commit | 6ee023cf629c83af8d10b383ab0780ec043f0785 (patch) | |
tree | 4ec08b459891bde261e36eef785e92eb71bac44c /runit | |
parent | de4c5d3d8c77f0c1f68b72fff3d7e3be0dc2dec2 (diff) | |
download | busybox-6ee023cf629c83af8d10b383ab0780ec043f0785.zip busybox-6ee023cf629c83af8d10b383ab0780ec043f0785.tar.gz |
*: compile fixes for 64-bit build
Diffstat (limited to 'runit')
-rw-r--r-- | runit/runit_lib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runit/runit_lib.h b/runit/runit_lib.h index c73befc..c644f5b 100644 --- a/runit/runit_lib.h +++ b/runit/runit_lib.h @@ -86,9 +86,9 @@ extern unsigned pmatch(const char *, const char *, unsigned); * runsv / supervise / sv stuff */ typedef struct svstatus_t { - uint64_t time_be64; - uint32_t time_nsec_be32; - uint32_t pid_le32; + uint64_t time_be64 ATTRIBUTE_PACKED; + uint32_t time_nsec_be32 ATTRIBUTE_PACKED; + uint32_t pid_le32 ATTRIBUTE_PACKED; uint8_t paused; uint8_t want; uint8_t got_term; |