Bernhard Reutner-Fischer | b1629b1 | 2006-05-19 19:29:19 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 2 | /* |
| 3 | Copyright 2006, Bernhard Fischer |
| 4 | |
| 5 | Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
| 6 | */ |
| 7 | #ifndef __PLATFORM_H |
| 8 | #define __PLATFORM_H 1 |
| 9 | |
| 10 | /* Convenience macros to test the version of gcc. */ |
| 11 | #undef __GNUC_PREREQ |
| 12 | #if defined __GNUC__ && defined __GNUC_MINOR__ |
| 13 | # define __GNUC_PREREQ(maj, min) \ |
| 14 | ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) |
| 15 | #else |
| 16 | # define __GNUC_PREREQ(maj, min) 0 |
| 17 | #endif |
| 18 | |
| 19 | /* __restrict is known in EGCS 1.2 and above. */ |
| 20 | #if !__GNUC_PREREQ (2,92) |
| 21 | # ifndef __restrict |
| 22 | # define __restrict /* Ignore */ |
| 23 | # endif |
| 24 | #endif |
| 25 | |
| 26 | /* Define macros for some gcc attributes. This permits us to use the |
| 27 | macros freely, and know that they will come into play for the |
| 28 | version of gcc in which they are supported. */ |
| 29 | |
| 30 | #if !__GNUC_PREREQ (2,7) |
| 31 | # ifndef __attribute__ |
| 32 | # define __attribute__(x) |
| 33 | # endif |
| 34 | #endif |
| 35 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame^] | 36 | #undef inline |
| 37 | #if __STDC_VERSION__ > 199901L |
| 38 | /* it's a keyword */ |
| 39 | #else |
| 40 | # if __GNUC_PREREQ (2,7) |
| 41 | # define inline __inline__ |
| 42 | # else |
| 43 | # define inline |
| 44 | # endif |
| 45 | #endif |
| 46 | |
| 47 | #ifndef __const |
| 48 | # define __const const |
| 49 | #endif |
| 50 | |
| 51 | #ifndef __THROW |
| 52 | # define __THROW |
| 53 | #endif |
| 54 | |
| 55 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 56 | #ifndef ATTRIBUTE_UNUSED |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 57 | # define ATTRIBUTE_UNUSED __attribute__ ((__unused__)) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 58 | #endif /* ATTRIBUTE_UNUSED */ |
| 59 | |
| 60 | #ifndef ATTRIBUTE_NORETURN |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 61 | # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__)) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 62 | #endif /* ATTRIBUTE_NORETURN */ |
| 63 | |
| 64 | #ifndef ATTRIBUTE_PACKED |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 65 | # define ATTRIBUTE_PACKED __attribute__ ((__packed__)) |
Mike Frysinger | 64bef2a | 2006-03-23 02:06:29 +0000 | [diff] [blame] | 66 | #endif /* ATTRIBUTE_PACKED */ |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 67 | |
Bernhard Reutner-Fischer | 9f4a1e1 | 2006-01-31 09:53:53 +0000 | [diff] [blame] | 68 | #ifndef ATTRIBUTE_ALIGNED |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 69 | # define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m))) |
Bernhard Reutner-Fischer | 9f4a1e1 | 2006-01-31 09:53:53 +0000 | [diff] [blame] | 70 | #endif /* ATTRIBUTE_ALIGNED */ |
| 71 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame^] | 72 | #ifndef ATTRIBUTE_ALWAYS_INLINE |
| 73 | # if __GNUC_PREREQ (3,0) |
| 74 | # define ATTRIBUTE_ALWAYS_INLINE __attribute__ ((always_inline)) inline |
| 75 | # else |
| 76 | # define ATTRIBUTE_ALWAYS_INLINE inline |
| 77 | # endif |
| 78 | #endif |
| 79 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 80 | /* -fwhole-program makes all symbols local. The attribute externally_visible |
| 81 | forces a symbol global. */ |
| 82 | #ifndef ATTRIBUTE_EXTERNALLY_VISIBLE |
| 83 | # if __GNUC_PREREQ (4,1) |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 84 | # define ATTRIBUTE_EXTERNALLY_VISIBLE __attribute__ ((__externally_visible__)) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 85 | # else |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 86 | # define ATTRIBUTE_EXTERNALLY_VISIBLE |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 87 | # endif /* GNUC >= 4.1 */ |
| 88 | #endif /* ATTRIBUTE_EXTERNALLY_VISIBLE */ |
| 89 | |
| 90 | /* We use __extension__ in some places to suppress -pedantic warnings |
| 91 | about GCC extensions. This feature didn't work properly before |
| 92 | gcc 2.8. */ |
| 93 | #if !__GNUC_PREREQ (2,8) |
| 94 | # ifndef __extension__ |
| 95 | # define __extension__ |
| 96 | # endif |
| 97 | #endif |
| 98 | |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 99 | /* ---- Endian Detection ------------------------------------ */ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame^] | 100 | #if !defined __APPLE__ && !(defined __digital__ && defined __unix__) |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 101 | # include <byteswap.h> |
| 102 | # include <endian.h> |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 103 | #endif |
| 104 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame^] | 105 | #if (defined __digital__ && defined __unix__) |
| 106 | # include <sex.h> |
| 107 | # define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN) |
| 108 | # define __BYTE_ORDER BYTE_ORDER |
| 109 | #endif |
| 110 | |
| 111 | |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 112 | #ifdef __BIG_ENDIAN__ |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 113 | # define BB_BIG_ENDIAN 1 |
| 114 | # define BB_LITTLE_ENDIAN 0 |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 115 | #elif __BYTE_ORDER == __BIG_ENDIAN |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 116 | # define BB_BIG_ENDIAN 1 |
| 117 | # define BB_LITTLE_ENDIAN 0 |
Bernhard Reutner-Fischer | ed7bb62 | 2006-02-23 14:25:15 +0000 | [diff] [blame] | 118 | #else |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 119 | # define BB_BIG_ENDIAN 0 |
| 120 | # define BB_LITTLE_ENDIAN 1 |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 121 | #endif |
| 122 | |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 123 | /* ---- Networking ------------------------------------------ */ |
| 124 | #ifndef __APPLE__ |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 125 | # include <arpa/inet.h> |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 126 | #else |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 127 | # include <netinet/in.h> |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 128 | #endif |
| 129 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame^] | 130 | #ifndef __socklen_t_defined |
| 131 | typedef int socklen_t; |
| 132 | #endif |
| 133 | |
| 134 | /* ---- Compiler dependent settings ------------------------- */ |
| 135 | #ifndef __GNUC__ |
| 136 | #if defined __INTEL_COMPILER |
| 137 | __extension__ typedef __signed__ long long __s64; |
| 138 | __extension__ typedef unsigned long long __u64; |
| 139 | #endif /* __INTEL_COMPILER */ |
| 140 | #endif /* ifndef __GNUC__ */ |
| 141 | |
| 142 | #if (defined __digital__ && defined __unix__) |
| 143 | # undef HAVE_STDBOOL_H |
| 144 | # undef HAVE_MNTENT_H |
| 145 | #else |
| 146 | # define HAVE_STDBOOL_H 1 |
| 147 | # define HAVE_MNTENT_H 1 |
| 148 | #endif /* ___digital__ && __unix__ */ |
| 149 | |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 150 | /*----- Kernel versioning ------------------------------------*/ |
| 151 | #ifdef __linux__ |
| 152 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 153 | #endif |
| 154 | |
Bernhard Reutner-Fischer | ed7bb62 | 2006-02-23 14:25:15 +0000 | [diff] [blame] | 155 | /* ---- miscellaneous --------------------------------------- */ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame^] | 156 | |
| 157 | #if __GNU_LIBRARY__ < 5 && \ |
| 158 | !defined(__dietlibc__) && \ |
| 159 | !defined(_NEWLIB_VERSION) && \ |
| 160 | !(defined __digital__ && defined __unix__) |
| 161 | #error "Sorry, this libc version is not supported :(" |
| 162 | #endif |
| 163 | |
| 164 | #if defined __GLIBC__ || defined __UCLIBC__ \ |
| 165 | || defined __dietlibc__ || defined _NEWLIB_VERSION |
| 166 | #include <features.h> |
| 167 | #define HAVE_FEATURES_H |
| 168 | #include <stdint.h> |
| 169 | #define HAVE_STDINT_H |
| 170 | #else |
| 171 | /* Largest integral types. */ |
| 172 | #if __BIG_ENDIAN__ |
| 173 | typedef long int intmax_t; |
| 174 | typedef unsigned long int uintmax_t; |
| 175 | #else |
| 176 | __extension__ |
| 177 | typedef long long int intmax_t; |
| 178 | __extension__ |
| 179 | typedef unsigned long long int uintmax_t; |
| 180 | #endif |
| 181 | #endif |
| 182 | |
| 183 | #if (defined __digital__ && defined __unix__) |
| 184 | #include <standards.h> |
| 185 | #define HAVE_STANDARDS_H |
| 186 | #include <inttypes.h> |
| 187 | #define HAVE_INTTYPES_H |
| 188 | #define PRIu32 "u" |
| 189 | #endif |
| 190 | |
| 191 | |
Bernhard Reutner-Fischer | ed7bb62 | 2006-02-23 14:25:15 +0000 | [diff] [blame] | 192 | /* NLS stuff */ |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 193 | /* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */ |
Bernhard Reutner-Fischer | ed7bb62 | 2006-02-23 14:25:15 +0000 | [diff] [blame] | 194 | #define _(Text) Text |
| 195 | #define N_(Text) (Text) |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 196 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame^] | 197 | /* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */ |
| 198 | #define fdprintf dprintf |
Rob Landley | c020f5f | 2006-05-21 18:28:13 +0000 | [diff] [blame] | 199 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame^] | 200 | /* move to platform.c */ |
| 201 | #if (defined __digital__ && defined __unix__) |
| 202 | /* use legacy setpgrp(pidt_,pid_t) for now.. */ |
| 203 | #define bb_setpgrp do{pid_t __me = getpid();setpgrp(__me,__me);}while(0) |
| 204 | #else |
| 205 | #define bb_setpgrp setpgrp() |
| 206 | #endif |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 207 | #endif /* platform.h */ |