blob: 5d6a181071ebed5df4add7f07253aee515365d91 [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/*
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00003 Copyright 2006, Bernhard Reutner-Fischer
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +00004
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) \
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000014 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000015#else
16# define __GNUC_PREREQ(maj, min) 0
17#endif
18
19/* __restrict is known in EGCS 1.2 and above. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000020#if !__GNUC_PREREQ(2,92)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000021# 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
Denis Vlasenko98636eb2008-05-09 17:59:34 +000030#if !__GNUC_PREREQ(2,7)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000031# ifndef __attribute__
32# define __attribute__(x)
33# endif
34#endif
35
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000036#undef inline
Denis Vlasenkoa7189f02006-11-17 20:29:00 +000037#if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000038/* it's a keyword */
39#else
Denis Vlasenko98636eb2008-05-09 17:59:34 +000040# if __GNUC_PREREQ(2,7)
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000041# define inline __inline__
42# else
43# define inline
44# endif
45#endif
46
47#ifndef __const
48# define __const const
49#endif
50
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000051#define UNUSED_PARAM __attribute__ ((__unused__))
52#define NORETURN __attribute__ ((__noreturn__))
53#define PACKED __attribute__ ((__packed__))
54#define ALIGNED(m) __attribute__ ((__aligned__(m)))
Denis Vlasenko0f3a5802008-03-20 13:13:09 +000055/* __NO_INLINE__: some gcc's do not honor inlining! :( */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000056#if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__)
57# define ALWAYS_INLINE __attribute__ ((always_inline)) inline
Denis Vlasenko77f1ec12007-10-13 03:36:03 +000058/* I've seen a toolchain where I needed __noinline__ instead of noinline */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000059# define NOINLINE __attribute__((__noinline__))
60# if !ENABLE_WERROR
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000061# define DEPRECATED __attribute__ ((__deprecated__))
62# define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result))
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000063# else
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000064# define DEPRECATED /* n/a */
65# define UNUSED_PARAM_RESULT /* n/a */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000066# endif
Denis Vlasenko98636eb2008-05-09 17:59:34 +000067#else
68# define ALWAYS_INLINE inline /* n/a */
69# define NOINLINE /* n/a */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000070# define DEPRECATED /* n/a */
71# define UNUSED_PARAM_RESULT /* n/a */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000072#endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000073
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000074/* -fwhole-program makes all symbols local. The attribute externally_visible
75 forces a symbol global. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000076#if __GNUC_PREREQ(4,1)
77# define EXTERNALLY_VISIBLE __attribute__(( visibility("default") ))
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000078//__attribute__ ((__externally_visible__))
Denis Vlasenko98636eb2008-05-09 17:59:34 +000079#else
80# define EXTERNALLY_VISIBLE
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +000081#endif
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000082
83/* We use __extension__ in some places to suppress -pedantic warnings
84 about GCC extensions. This feature didn't work properly before
85 gcc 2.8. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000086#if !__GNUC_PREREQ(2,8)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000087# ifndef __extension__
88# define __extension__
89# endif
90#endif
91
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +000092/* gcc-2.95 had no va_copy but only __va_copy. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000093#if !__GNUC_PREREQ(3,0)
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +000094# include <stdarg.h>
95# if !defined va_copy && defined __va_copy
96# define va_copy(d,s) __va_copy((d),(s))
97# endif
98#endif
99
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000100/* FAST_FUNC is a qualifier which (possibly) makes function call faster
101 * and/or smaller by using modified ABI. It is usually only needed
102 * on non-static, busybox internal functions. Recent versions of gcc
103 * optimize statics automatically. FAST_FUNC on static is required
104 * only if you need to match a function pointer's type */
Denis Vlasenkoac2b50e2008-06-27 04:30:48 +0000105#if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */
106/* stdcall makes callee to pop arguments from stack, not caller */
107# define FAST_FUNC __attribute__((regparm(3),stdcall))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000108/* #elif ... - add your favorite arch today! */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000109#else
110# define FAST_FUNC
111#endif
112
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000113/* ---- Endian Detection ------------------------------------ */
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000114
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000115#if (defined __digital__ && defined __unix__)
116# include <sex.h>
117# define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
118# define __BYTE_ORDER BYTE_ORDER
Rob Landley15d20a02006-05-29 05:00:44 +0000119#elif !defined __APPLE__
120# include <byteswap.h>
121# include <endian.h>
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000122#endif
123
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000124#ifdef __BIG_ENDIAN__
Mike Frysingerf8855132006-03-28 02:35:56 +0000125# define BB_BIG_ENDIAN 1
126# define BB_LITTLE_ENDIAN 0
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000127#elif __BYTE_ORDER == __BIG_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000128# define BB_BIG_ENDIAN 1
129# define BB_LITTLE_ENDIAN 0
Bernhard Reutner-Fischered7bb622006-02-23 14:25:15 +0000130#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000131# define BB_BIG_ENDIAN 0
132# define BB_LITTLE_ENDIAN 1
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000133#endif
134
Denis Vlasenko9b0f6e12008-11-01 13:40:32 +0000135/* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */
Rob Landleybba7f082006-05-29 05:51:12 +0000136#if BB_BIG_ENDIAN
Rob Landley752f0a62006-05-30 06:28:03 +0000137#define SWAP_BE16(x) (x)
138#define SWAP_BE32(x) (x)
139#define SWAP_BE64(x) (x)
Rob Landleybba7f082006-05-29 05:51:12 +0000140#define SWAP_LE16(x) bswap_16(x)
141#define SWAP_LE32(x) bswap_32(x)
142#define SWAP_LE64(x) bswap_64(x)
143#else
144#define SWAP_BE16(x) bswap_16(x)
145#define SWAP_BE32(x) bswap_32(x)
146#define SWAP_BE64(x) bswap_64(x)
Rob Landley752f0a62006-05-30 06:28:03 +0000147#define SWAP_LE16(x) (x)
148#define SWAP_LE32(x) (x)
149#define SWAP_LE64(x) (x)
Rob Landleybba7f082006-05-29 05:51:12 +0000150#endif
151
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000152/* ---- Unaligned access ------------------------------------ */
153
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000154/* NB: unaligned parameter should be a pointer, aligned one -
155 * a lvalue. This makes it more likely to not swap them by mistake
156 */
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000157#if defined(i386) || defined(__x86_64__)
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000158#define move_from_unaligned16(v, u16p) ((v) = *(uint16_t*)(u16p))
159#define move_from_unaligned32(v, u32p) ((v) = *(uint32_t*)(u32p))
160#define move_to_unaligned32(u32p, v) (*(uint32_t*)(u32p) = (v))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000161/* #elif ... - add your favorite arch today! */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000162#else
163/* performs reasonably well (gcc usually inlines memcpy here) */
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000164#define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2))
165#define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4))
166#define move_to_unaligned32(u32p, v) (memcpy((u32p), &(v), 4))
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000167#endif
168
Rob Landleydae6aa22006-03-09 22:39:08 +0000169/* ---- Networking ------------------------------------------ */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000170
Rob Landleydae6aa22006-03-09 22:39:08 +0000171#ifndef __APPLE__
Mike Frysingerf8855132006-03-28 02:35:56 +0000172# include <arpa/inet.h>
Mike Frysinger9412ec72008-02-07 22:41:33 +0000173# ifndef __socklen_t_defined
174typedef int socklen_t;
175# endif
Rob Landleydae6aa22006-03-09 22:39:08 +0000176#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000177# include <netinet/in.h>
Rob Landleydae6aa22006-03-09 22:39:08 +0000178#endif
179
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000180/* ---- Compiler dependent settings ------------------------- */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000181
Mike Frysinger22876c72008-02-07 22:10:07 +0000182#if (defined __digital__ && defined __unix__) || defined __APPLE__
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000183# undef HAVE_MNTENT_H
Mike Frysinger9412ec72008-02-07 22:41:33 +0000184# undef HAVE_SYS_STATFS_H
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000185#else
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000186# define HAVE_MNTENT_H 1
Mike Frysinger9412ec72008-02-07 22:41:33 +0000187# define HAVE_SYS_STATFS_H 1
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000188#endif /* ___digital__ && __unix__ */
189
Bernhard Reutner-Fischerbe862092007-03-19 15:15:06 +0000190/* linux/loop.h relies on __u64. Make sure we have that as a proper type
191 * until userspace is widely fixed. */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000192#if (defined __INTEL_COMPILER && !defined __GNUC__) || \
193 (defined __GNUC__ && defined __STRICT_ANSI__)
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000194__extension__ typedef long long __s64;
Bernhard Reutner-Fischerbe862092007-03-19 15:15:06 +0000195__extension__ typedef unsigned long long __u64;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000196#endif
Bernhard Reutner-Fischerbe862092007-03-19 15:15:06 +0000197
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000198/*----- Kernel versioning ------------------------------------*/
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000199
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000200#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000201
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000202/* ---- Miscellaneous --------------------------------------- */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000203
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000204#if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000205 !defined(__dietlibc__) && \
206 !defined(_NEWLIB_VERSION) && \
207 !(defined __digital__ && defined __unix__)
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000208# error "Sorry, this libc version is not supported :("
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000209#endif
210
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000211/* Don't perpetuate e2fsck crap into the headers. Clean up e2fsck instead. */
Rob Landley18958e92006-06-13 18:28:33 +0000212
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000213#if defined __GLIBC__ || defined __UCLIBC__ \
214 || defined __dietlibc__ || defined _NEWLIB_VERSION
215#include <features.h>
216#define HAVE_FEATURES_H
217#include <stdint.h>
218#define HAVE_STDINT_H
Mike Frysinger9412ec72008-02-07 22:41:33 +0000219#elif !defined __APPLE__
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000220/* Largest integral types. */
221#if __BIG_ENDIAN__
Denis Vlasenko87468852007-04-13 23:22:00 +0000222typedef long intmax_t;
223typedef unsigned long uintmax_t;
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000224#else
225__extension__
Denis Vlasenko87468852007-04-13 23:22:00 +0000226typedef long long intmax_t;
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000227__extension__
Denis Vlasenko87468852007-04-13 23:22:00 +0000228typedef unsigned long long uintmax_t;
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000229#endif
230#endif
231
Bernhard Reutner-Fischerc966ba42007-01-18 10:32:09 +0000232/* Size-saving "small" ints (arch-dependent) */
233#if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__)
234/* add other arches which benefit from this... */
235typedef signed char smallint;
236typedef unsigned char smalluint;
237#else
238/* for arches where byte accesses generate larger code: */
239typedef int smallint;
240typedef unsigned smalluint;
241#endif
242
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000243/* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */
244#if (defined __digital__ && defined __unix__)
245/* old system without (proper) C99 support */
246#define bool smalluint
247#else
248/* modern system, so use it */
249#include <stdbool.h>
250#endif
251
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000252/* Try to defeat gcc's alignment of "char message[]"-like data */
253#if 1 /* if needed: !defined(arch1) && !defined(arch2) */
254#define ALIGN1 __attribute__((aligned(1)))
255#define ALIGN2 __attribute__((aligned(2)))
256#else
257/* Arches which MUST have 2 or 4 byte alignment for everything are here */
258#define ALIGN1
259#define ALIGN2
260#endif
261
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000262
Mike Frysinger88407592006-07-20 19:31:07 +0000263/* uclibc does not implement daemon() for no-mmu systems.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000264 * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably.
265 * For earlier versions there is no reliable way to check if we are building
Denis Vlasenko9e589212008-01-24 01:33:42 +0000266 * for a mmu-less system.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000267 */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +0000268#if ENABLE_NOMMU || \
269 (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
270 __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__)
Denis Vlasenko473dae02007-04-11 07:04:23 +0000271#define BB_MMU 0
Denis Vlasenko473dae02007-04-11 07:04:23 +0000272#define USE_FOR_NOMMU(...) __VA_ARGS__
273#define USE_FOR_MMU(...)
274#else
275#define BB_MMU 1
Denis Vlasenko473dae02007-04-11 07:04:23 +0000276#define USE_FOR_NOMMU(...)
277#define USE_FOR_MMU(...) __VA_ARGS__
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000278#endif
279
Rob Landley18958e92006-06-13 18:28:33 +0000280/* Platforms that haven't got dprintf need to implement fdprintf() in
281 * libbb. This would require a platform.c. It's not going to be cleaned
282 * out of the tree, so stop saying it should be. */
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000283#if !defined(__dietlibc__)
284/* Needed for: glibc */
285/* Not needed for: dietlibc */
286/* Others: ?? (add as needed) */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000287#define fdprintf dprintf
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000288#endif
289
290#if defined(__dietlibc__)
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000291static ALWAYS_INLINE char* strchrnul(const char *s, char c)
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000292{
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000293 while (*s && *s != c) ++s;
294 return (char*)s;
295}
Denis Vlasenkoc8e6e352006-12-18 22:10:24 +0000296#endif
Rob Landleyc020f5f2006-05-21 18:28:13 +0000297
Denis Vlasenko473dae02007-04-11 07:04:23 +0000298/* Don't use lchown with glibc older than 2.1.x ... uClibc lacks it */
Mike Frysinger88407592006-07-20 19:31:07 +0000299#if (defined __GLIBC__ && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1) || \
300 defined __UC_LIBC__
301# define lchown chown
302#endif
303
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000304#if (defined __digital__ && defined __unix__)
Rob Landley8fba99f2006-05-27 22:08:01 +0000305
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000306# include <standards.h>
307# define HAVE_STANDARDS_H
308# include <inttypes.h>
309# define HAVE_INTTYPES_H
310# define PRIu32 "u"
Denis Vlasenko0de3c552007-04-12 12:31:02 +0000311/* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000312# define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me,__me); } while (0)
Rob Landley18958e92006-06-13 18:28:33 +0000313
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000314# if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
315# define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
316# endif
317# if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
318# define ADJ_FREQUENCY MOD_FREQUENCY
319# endif
320# if !defined ADJ_TIMECONST && defined MOD_TIMECONST
321# define ADJ_TIMECONST MOD_TIMECONST
322# endif
323# if !defined ADJ_TICK && defined MOD_CLKB
324# define ADJ_TICK MOD_CLKB
325# endif
Rob Landley8fba99f2006-05-27 22:08:01 +0000326
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000327#else /* !__digital__ */
328
329# define bb_setpgrp() setpgrp()
330
Rob Landley18958e92006-06-13 18:28:33 +0000331#endif
332
Rob Landley22d26fc2006-06-15 15:49:36 +0000333#if defined(__linux__)
334#include <sys/mount.h>
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000335/* Make sure we have all the new mount flags we actually try to use. */
Rob Landleye3781b72006-08-08 01:39:49 +0000336#ifndef MS_BIND
337#define MS_BIND (1<<12)
338#endif
339#ifndef MS_MOVE
340#define MS_MOVE (1<<13)
341#endif
342#ifndef MS_RECURSIVE
343#define MS_RECURSIVE (1<<14)
344#endif
345#ifndef MS_SILENT
346#define MS_SILENT (1<<15)
347#endif
348
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000349/* The shared subtree stuff, which went in around 2.6.15. */
Rob Landleye3781b72006-08-08 01:39:49 +0000350#ifndef MS_UNBINDABLE
351#define MS_UNBINDABLE (1<<17)
352#endif
353#ifndef MS_PRIVATE
354#define MS_PRIVATE (1<<18)
355#endif
356#ifndef MS_SLAVE
357#define MS_SLAVE (1<<19)
358#endif
359#ifndef MS_SHARED
360#define MS_SHARED (1<<20)
361#endif
Bernhard Reutner-Fischerfb5902c2008-08-06 18:14:38 +0000362#ifndef MS_RELATIME
363#define MS_RELATIME (1 << 21)
364#endif
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000365
Rob Landley7077ea32006-06-29 19:00:12 +0000366#if !defined(BLKSSZGET)
367#define BLKSSZGET _IO(0x12, 104)
368#endif
Rob Landley22d26fc2006-06-15 15:49:36 +0000369#if !defined(BLKGETSIZE64)
Rob Landley18958e92006-06-13 18:28:33 +0000370#define BLKGETSIZE64 _IOR(0x12,114,size_t)
371#endif
Rob Landley22d26fc2006-06-15 15:49:36 +0000372#endif
Rob Landley18958e92006-06-13 18:28:33 +0000373
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000374#endif /* platform.h */