X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=utils.h;h=5323c6f9619fa4c96664dabc261d7adda325424e;hb=bbdfee8182c5c8d3704f343c6402bd68dd05071e;hp=41ea02cc95b6f07acc07fe50449714590e1a9b74;hpb=fcd5ba8fbdf745fd6dac672d8891260bdc5669c9;p=project%2Flibubox.git diff --git a/utils.h b/utils.h index 41ea02c..5323c6f 100644 --- a/utils.h +++ b/utils.h @@ -22,6 +22,7 @@ #include #include #include +#include #include /* @@ -99,7 +100,10 @@ void clock_gettime(int type, struct timespec *tv); #define __LITTLE_ENDIAN LITTLE_ENDIAN #endif -#define __u_bswap16(x) ((uint16_t)((((x) >> 8) & 0xffu) | (((x) & 0xffu) << 8))) +static inline uint16_t __u_bswap16(uint16_t val) +{ + return ((val >> 8) & 0xffu) | ((val & 0xffu) << 8); +} #if _GNUC_MIN_VER(4, 2) #define __u_bswap32(x) __builtin_bswap32(x) @@ -151,4 +155,26 @@ void clock_gettime(int type, struct timespec *tv); #define __packed __attribute__((packed)) #endif +#ifndef __constructor +#define __constructor __attribute__((constructor)) +#endif + +#ifndef __hidden +#define __hidden __attribute__((visibility("hidden"))) +#endif + +#ifndef BITS_PER_LONG +#define BITS_PER_LONG (8 * sizeof(unsigned long)) +#endif + +static inline void bitfield_set(unsigned long *bits, int bit) +{ + bits[bit / BITS_PER_LONG] |= (1UL << (bit % BITS_PER_LONG)); +} + +static inline bool bitfield_test(unsigned long *bits, int bit) +{ + return !!(bits[bit / BITS_PER_LONG] & (1UL << (bit % BITS_PER_LONG))); +} + #endif