diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-23 10:52:52 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-23 10:52:52 +0000 |
commit | 6ee023cf629c83af8d10b383ab0780ec043f0785 (patch) | |
tree | 4ec08b459891bde261e36eef785e92eb71bac44c /runit | |
parent | de4c5d3d8c77f0c1f68b72fff3d7e3be0dc2dec2 (diff) | |
download | busybox-w32-6ee023cf629c83af8d10b383ab0780ec043f0785.tar.gz busybox-w32-6ee023cf629c83af8d10b383ab0780ec043f0785.tar.bz2 busybox-w32-6ee023cf629c83af8d10b383ab0780ec043f0785.zip |
*: 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 c73befcb6..c644f5b9d 100644 --- a/runit/runit_lib.h +++ b/runit/runit_lib.h | |||
@@ -86,9 +86,9 @@ extern unsigned pmatch(const char *, const char *, unsigned); | |||
86 | * runsv / supervise / sv stuff | 86 | * runsv / supervise / sv stuff |
87 | */ | 87 | */ |
88 | typedef struct svstatus_t { | 88 | typedef struct svstatus_t { |
89 | uint64_t time_be64; | 89 | uint64_t time_be64 ATTRIBUTE_PACKED; |
90 | uint32_t time_nsec_be32; | 90 | uint32_t time_nsec_be32 ATTRIBUTE_PACKED; |
91 | uint32_t pid_le32; | 91 | uint32_t pid_le32 ATTRIBUTE_PACKED; |
92 | uint8_t paused; | 92 | uint8_t paused; |
93 | uint8_t want; | 93 | uint8_t want; |
94 | uint8_t got_term; | 94 | uint8_t got_term; |