Whamcloud - gitweb
1845ac2ba0feccc19f704424388d02c57fe09644
[fs/lustre-release.git] / libcfs / include / libcfs / darwin / darwin-types.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * libcfs/include/libcfs/darwin/darwin-types.h
37  *
38  * Basic library routines.
39  */
40
41 #ifndef __LIBCFS_DARWIN_XNU_TYPES_H__
42 #define __LIBCFS_DARWIN_XNU_TYPES_H__
43
44 #ifndef __LIBCFS_LIBCFS_H__
45 #error Do not #include this file directly. #include <libcfs/libcfs.h> instead
46 #endif
47
48 #include <mach/mach_types.h>
49 #include <sys/types.h>
50
51 #ifndef _BLKID_TYPES_H
52 #define _BLKID_TYPES_H
53 #endif
54
55 typedef u_int8_t        __u8;
56 typedef u_int16_t       __u16;
57 typedef u_int32_t       __u32;
58 typedef u_int64_t       __u64;
59 typedef int8_t          __s8;
60 typedef int16_t         __s16;
61 typedef int32_t         __s32;
62 typedef int64_t         __s64;
63
64 #ifdef __KERNEL__
65
66 #include <kern/kern_types.h>
67
68
69 typedef struct { int e; }               event_chan_t;
70 typedef dev_t                           kdev_t;
71
72 /*
73  * Atmoic define
74  */
75 #include <libkern/OSAtomic.h>
76
77 typedef struct { volatile uint32_t counter; }   atomic_t;
78
79 #define ATOMIC_INIT(i)                  { (i) }
80 #define atomic_read(a)                  ((a)->counter)
81 #define atomic_set(a, v)                (((a)->counter) = (v))
82 #ifdef __DARWIN8__
83 /* OS*Atomic return the value before the operation */
84 #define atomic_add(v, a)                OSAddAtomic(v, (SInt32 *)&((a)->counter))
85 #define atomic_sub(v, a)                OSAddAtomic(-(v), (SInt32 *)&((a)->counter))
86 #define atomic_inc(a)                   OSIncrementAtomic((SInt32 *)&((a)->counter))
87 #define atomic_dec(a)                   OSDecrementAtomic((SInt32 *)&((a)->counter))
88 #else /* !__DARWIN8__ */
89 #define atomic_add(v, a)                hw_atomic_add((__u32 *)&((a)->counter), v)
90 #define atomic_sub(v, a)                hw_atomic_sub((__u32 *)&((a)->counter), v)
91 #define atomic_inc(a)                   atomic_add(1, a)
92 #define atomic_dec(a)                   atomic_sub(1, a)
93 #endif /* !__DARWIN8__ */
94 #define atomic_sub_and_test(v, a)       (atomic_sub(v, a) == (v))
95 #define atomic_dec_and_test(a)          (atomic_dec(a) == 1)
96 #define atomic_inc_return(a)            (atomic_inc(a) + 1)
97 #define atomic_dec_return(a)            (atomic_dec(a) - 1)
98
99 #include <libsa/mach/mach.h>
100 typedef off_t                           loff_t;
101
102 #else   /* !__KERNEL__ */
103
104 #include <stdint.h>
105
106 typedef off_t                           loff_t;
107
108 #endif  /* __KERNEL END */
109 typedef unsigned short                  umode_t;
110
111 #endif  /* __XNU_CFS_TYPES_H__ */