blob: d684c2dda3ad7c1cb1dea3530bd559d62aba6698 [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 ------------------------------------ */
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000100
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000101#if (defined __digital__ && defined __unix__)
102# include <sex.h>
103# define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
104# define __BYTE_ORDER BYTE_ORDER
Rob Landley15d20a02006-05-29 05:00:44 +0000105#elif !defined __APPLE__
106# include <byteswap.h>
107# include <endian.h>
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000108#endif
109
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000110#ifdef __BIG_ENDIAN__
Mike Frysingerf8855132006-03-28 02:35:56 +0000111# define BB_BIG_ENDIAN 1
112# define BB_LITTLE_ENDIAN 0
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000113#elif __BYTE_ORDER == __BIG_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000114# define BB_BIG_ENDIAN 1
115# define BB_LITTLE_ENDIAN 0
Bernhard Reutner-Fischered7bb622006-02-23 14:25:15 +0000116#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000117# define BB_BIG_ENDIAN 0
118# define BB_LITTLE_ENDIAN 1
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000119#endif
120
Rob Landleydae6aa22006-03-09 22:39:08 +0000121/* ---- Networking ------------------------------------------ */
122#ifndef __APPLE__
Mike Frysingerf8855132006-03-28 02:35:56 +0000123# include <arpa/inet.h>
Rob Landleydae6aa22006-03-09 22:39:08 +0000124#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000125# include <netinet/in.h>
Rob Landleydae6aa22006-03-09 22:39:08 +0000126#endif
127
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000128#ifndef __socklen_t_defined
129typedef int socklen_t;
130#endif
131
132/* ---- Compiler dependent settings ------------------------- */
133#ifndef __GNUC__
134#if defined __INTEL_COMPILER
135__extension__ typedef __signed__ long long __s64;
136__extension__ typedef unsigned long long __u64;
137#endif /* __INTEL_COMPILER */
138#endif /* ifndef __GNUC__ */
139
140#if (defined __digital__ && defined __unix__)
141# undef HAVE_STDBOOL_H
142# undef HAVE_MNTENT_H
143#else
144# define HAVE_STDBOOL_H 1
145# define HAVE_MNTENT_H 1
146#endif /* ___digital__ && __unix__ */
147
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000148/*----- Kernel versioning ------------------------------------*/
149#ifdef __linux__
150#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000151#endif
152
Bernhard Reutner-Fischered7bb622006-02-23 14:25:15 +0000153/* ---- miscellaneous --------------------------------------- */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000154
155#if __GNU_LIBRARY__ < 5 && \
156 !defined(__dietlibc__) && \
157 !defined(_NEWLIB_VERSION) && \
158 !(defined __digital__ && defined __unix__)
159#error "Sorry, this libc version is not supported :("
160#endif
161
162#if defined __GLIBC__ || defined __UCLIBC__ \
163 || defined __dietlibc__ || defined _NEWLIB_VERSION
164#include <features.h>
165#define HAVE_FEATURES_H
166#include <stdint.h>
167#define HAVE_STDINT_H
168#else
169/* Largest integral types. */
170#if __BIG_ENDIAN__
171typedef long int intmax_t;
172typedef unsigned long int uintmax_t;
173#else
174__extension__
175typedef long long int intmax_t;
176__extension__
177typedef unsigned long long int uintmax_t;
178#endif
179#endif
180
181#if (defined __digital__ && defined __unix__)
182#include <standards.h>
183#define HAVE_STANDARDS_H
184#include <inttypes.h>
185#define HAVE_INTTYPES_H
186#define PRIu32 "u"
187#endif
188
Rob Landley15d20a02006-05-29 05:00:44 +0000189// Need to implement fdprintf for platforms that haven't got dprintf.
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000190#define fdprintf dprintf
Rob Landleyc020f5f2006-05-21 18:28:13 +0000191
Bernhard Reutner-Fischer4ed1f1d2006-05-26 13:34:25 +0000192/* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
193/* FIXME: fix tar.c! */
194#ifndef FNM_LEADING_DIR
195#define FNM_LEADING_DIR 0
196#endif
197
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000198/* move to platform.c */
199#if (defined __digital__ && defined __unix__)
200/* use legacy setpgrp(pidt_,pid_t) for now.. */
201#define bb_setpgrp do{pid_t __me = getpid();setpgrp(__me,__me);}while(0)
202#else
203#define bb_setpgrp setpgrp()
204#endif
Rob Landley8fba99f2006-05-27 22:08:01 +0000205
206// I have no idea what platform this was for since aldot didn't say, but
207// it belongs here since Linux doesn't need it.
208
209#if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
210#define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
211#endif
212#if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
213#define ADJ_FREQUENCY MOD_FREQUENCY
214#endif
215#if !defined ADJ_TIMECONST && defined MOD_TIMECONST
216#define ADJ_TIMECONST MOD_TIMECONST
217#endif
218#if !defined ADJ_TICK && defined MOD_CLKB
219#define ADJ_TICK MOD_CLKB
220#endif
221
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000222#endif /* platform.h */