blob: 68cd2cc8eff901312f045fca8995bba6b08281f6 [file] [log] [blame]
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00001/* vi: set sw=4 ts=4: */
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +00002/*
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-Fischere00fc162006-05-26 13:10:10 +000036#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-Fischer86f5c992006-01-22 22:55:11 +000056#ifndef ATTRIBUTE_UNUSED
Mike Frysingerf8855132006-03-28 02:35:56 +000057# define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000058#endif /* ATTRIBUTE_UNUSED */
59
60#ifndef ATTRIBUTE_NORETURN
Mike Frysingerf8855132006-03-28 02:35:56 +000061# define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000062#endif /* ATTRIBUTE_NORETURN */
63
64#ifndef ATTRIBUTE_PACKED
Mike Frysingerf8855132006-03-28 02:35:56 +000065# define ATTRIBUTE_PACKED __attribute__ ((__packed__))
Mike Frysinger64bef2a2006-03-23 02:06:29 +000066#endif /* ATTRIBUTE_PACKED */
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000067
Bernhard Reutner-Fischer9f4a1e12006-01-31 09:53:53 +000068#ifndef ATTRIBUTE_ALIGNED
Mike Frysingerf8855132006-03-28 02:35:56 +000069# define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m)))
Bernhard Reutner-Fischer9f4a1e12006-01-31 09:53:53 +000070#endif /* ATTRIBUTE_ALIGNED */
71
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000072#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-Fischer86f5c992006-01-22 22:55:11 +000080/* -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 Frysingerf8855132006-03-28 02:35:56 +000084# define ATTRIBUTE_EXTERNALLY_VISIBLE __attribute__ ((__externally_visible__))
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000085# else
Mike Frysingerf8855132006-03-28 02:35:56 +000086# define ATTRIBUTE_EXTERNALLY_VISIBLE
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000087# 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 Landley5cf7c2d2006-02-21 06:44:43 +000099/* ---- Endian Detection ------------------------------------ */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000100#if !defined __APPLE__ && !(defined __digital__ && defined __unix__)
Mike Frysingerf8855132006-03-28 02:35:56 +0000101# include <byteswap.h>
102# include <endian.h>
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000103#endif
104
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000105#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 Landley5cf7c2d2006-02-21 06:44:43 +0000112#ifdef __BIG_ENDIAN__
Mike Frysingerf8855132006-03-28 02:35:56 +0000113# define BB_BIG_ENDIAN 1
114# define BB_LITTLE_ENDIAN 0
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000115#elif __BYTE_ORDER == __BIG_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000116# define BB_BIG_ENDIAN 1
117# define BB_LITTLE_ENDIAN 0
Bernhard Reutner-Fischered7bb622006-02-23 14:25:15 +0000118#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000119# define BB_BIG_ENDIAN 0
120# define BB_LITTLE_ENDIAN 1
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000121#endif
122
Rob Landleydae6aa22006-03-09 22:39:08 +0000123/* ---- Networking ------------------------------------------ */
124#ifndef __APPLE__
Mike Frysingerf8855132006-03-28 02:35:56 +0000125# include <arpa/inet.h>
Rob Landleydae6aa22006-03-09 22:39:08 +0000126#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000127# include <netinet/in.h>
Rob Landleydae6aa22006-03-09 22:39:08 +0000128#endif
129
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000130#ifndef __socklen_t_defined
131typedef 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-Fischere2e56c72006-05-19 11:54:02 +0000150/*----- Kernel versioning ------------------------------------*/
151#ifdef __linux__
152#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000153#endif
154
Bernhard Reutner-Fischered7bb622006-02-23 14:25:15 +0000155/* ---- miscellaneous --------------------------------------- */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000156
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__
173typedef long int intmax_t;
174typedef unsigned long int uintmax_t;
175#else
176__extension__
177typedef long long int intmax_t;
178__extension__
179typedef 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-Fischered7bb622006-02-23 14:25:15 +0000192/* NLS stuff */
Rob Landleydae6aa22006-03-09 22:39:08 +0000193/* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
Bernhard Reutner-Fischered7bb622006-02-23 14:25:15 +0000194#define _(Text) Text
195#define N_(Text) (Text)
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000196
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000197/* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
198#define fdprintf dprintf
Rob Landleyc020f5f2006-05-21 18:28:13 +0000199
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000200/* 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-Fischer86f5c992006-01-22 22:55:11 +0000207#endif /* platform.h */