]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - include/platform_defs.h.in
insert (experimental) rtcp binary - for eric/others working on realtime
[thirdparty/xfsprogs-dev.git] / include / platform_defs.h.in
CommitLineData
2bd0ea18
NS
1/*
2 * Copyright (c) 2000 Silicon Graphics, Inc. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 *
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22 *
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
25 *
26 * http://www.sgi.com
27 *
28 * For further information regarding this notice, see:
29 *
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31 *
32 * @configure_input@
33 */
34#ifndef __XFS_PLATFORM_DEFS_H__
35#define __XFS_PLATFORM_DEFS_H__
36
37#include <stdio.h>
b26ade3f 38#include <stdarg.h>
2bd0ea18
NS
39#include <assert.h>
40#include <endian.h>
41#include <stddef.h>
42#include <stdlib.h>
43#include <string.h>
44#include <unistd.h>
45#include <sys/param.h>
46#include <sys/types.h>
f91dde66 47#include <uuid/uuid.h>
2bd0ea18 48
f91dde66
NS
49#if defined (__powerpc__) /* ppc fix from: Robert Ramiega (jedi@plukwa.net) */
50# define __BYTEORDER_HAS_U64__
2bd0ea18 51#endif
f91dde66
NS
52#include <asm/byteorder.h>
53
54#include <errno.h>
55#include <fcntl.h>
2bd0ea18 56
f91dde66
NS
57#ifndef O_DIRECT
58# if defined (__powerpc__)
59# define O_DIRECT 0400000
60# elif defined (__sparc__)
61ecf6c2
NS
61# define O_DIRECT 0x100000
62# endif
63#endif
64
f91dde66
NS
65#if (__GLIBC__ < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ <= 1))
66# define constpp const char * const *
67#else
68# define constpp char * const *
69#endif
70
2bd0ea18
NS
71typedef loff_t xfs_off_t;
72typedef __uint64_t xfs_ino_t;
73typedef __uint32_t xfs_dev_t;
74typedef __int64_t xfs_daddr_t;
75typedef char* xfs_caddr_t;
76
77/* long and pointer must be either 32 bit or 64 bit */
78#undef HAVE_64BIT_LONG
79#undef HAVE_32BIT_LONG
80#undef HAVE_32BIT_PTR
81#undef HAVE_64BIT_PTR
82
83/* Check if __psint_t is set to something meaningful */
84#undef HAVE___PSINT_T
85#ifndef HAVE___PSINT_T
86# ifdef HAVE_32BIT_PTR
87typedef int __psint_t;
88# elif defined HAVE_64BIT_PTR
89# ifdef HAVE_64BIT_LONG
90typedef long __psint_t;
91# else
92/* This is a very strange architecture, which has 64 bit pointers but
93 * not 64 bit longs. So, I'd just punt here and assume long long is Ok */
94typedef long long __psint_t;
95# endif
96# else
97# error Unknown pointer size
98# endif
99#endif
100
101/* Check if __psunsigned_t is set to something meaningful */
102#undef HAVE___PSUNSIGNED_T
103#ifndef HAVE___PSUNSIGNED_T
104# ifdef HAVE_32BIT_PTR
105typedef unsigned int __psunsigned_t;
106# elif defined HAVE_64BIT_PTR
107# ifdef HAVE_64BIT_LONG
108typedef long __psunsigned_t;
109# else
110/* This is a very strange architecture, which has 64 bit pointers but
111 * not 64 bit longs. So, I'd just punt here and assume long long is Ok */
112typedef unsigned long long __psunsigned_t;
113# endif
114# else
115# error Unknown pointer size
116# endif
117#endif
118
119#ifdef DEBUG
120# define ASSERT assert
121#else
122# define ASSERT(EX) ((void) 0)
123#endif
124
125#endif /* __XFS_PLATFORM_DEFS_H__ */