search for: __aligned_le64

Displaying 2 results from an estimated 2 matches for "__aligned_le64".

Did you mean: __aligned_be64
2011 Nov 06
3
sys/types.h -> linux/types.h and __aligned_u64
...--- a/klibc/usr/include/sys/types.h +++ b/klibc/usr/include/sys/types.h @@ -100,6 +100,10 @@ typedef uint16_t __sum16; typedef uint32_t __sum32; typedef uint64_t __sum64; +#define __aligned_u64 __u64 __attribute__((aligned(8))) +#define __aligned_be64 __be64 __attribute__((aligned(8))) +#define __aligned_le64 __le64 __attribute__((aligned(8))) + /* * Some headers seem to require this... */ seems to fix this (__aligned_be64/le64 aren't actually needed), but I'm not sure if this is the right way to go... Is the klibc git tree available somewhere? Is there a newer version of klibc I should...
2011 Dec 04
0
[GIT PULL] klibc minor fixes
...c738 100644 --- a/usr/include/sys/types.h +++ b/usr/include/sys/types.h @@ -100,6 +100,10 @@ typedef uint16_t __sum16; typedef uint32_t __sum32; typedef uint64_t __sum64; +#define __aligned_u64 __u64 __attribute__((aligned(8))) +#define __aligned_be64 __be64 __attribute__((aligned(8))) +#define __aligned_le64 __le64 __attribute__((aligned(8))) + /* * Some headers seem to require this... */ commit 731d82caecbc309eea5e719ca0c6dfb03afd34c3 Author: maximilian attems <max at stro.at> Date: Wed Sep 7 12:26:19 2011 +0200 [klibc] kbuild: add static to prototypes Warnings found via gc...