Merge branch 'fix/pcm-jiffies-check' into fix/asoc
[pandora-kernel.git] / arch / sh / include / asm / posix_types_64.h
1 #ifndef __ASM_SH64_POSIX_TYPES_H
2 #define __ASM_SH64_POSIX_TYPES_H
3
4 /*
5  * This file is subject to the terms and conditions of the GNU General Public
6  * License.  See the file "COPYING" in the main directory of this archive
7  * for more details.
8  *
9  * include/asm-sh64/posix_types.h
10  *
11  * Copyright (C) 2000, 2001  Paolo Alberelli
12  * Copyright (C) 2003  Paul Mundt
13  *
14  * This file is generally used by user-level software, so you need to
15  * be a little careful about namespace pollution etc.  Also, we cannot
16  * assume GCC is being used.
17  */
18
19 typedef unsigned long   __kernel_ino_t;
20 typedef unsigned short  __kernel_mode_t;
21 typedef unsigned short  __kernel_nlink_t;
22 typedef long            __kernel_off_t;
23 typedef int             __kernel_pid_t;
24 typedef unsigned short  __kernel_ipc_pid_t;
25 typedef unsigned short  __kernel_uid_t;
26 typedef unsigned short  __kernel_gid_t;
27 typedef long unsigned int       __kernel_size_t;
28 typedef int             __kernel_ssize_t;
29 typedef int             __kernel_ptrdiff_t;
30 typedef long            __kernel_time_t;
31 typedef long            __kernel_suseconds_t;
32 typedef long            __kernel_clock_t;
33 typedef int             __kernel_timer_t;
34 typedef int             __kernel_clockid_t;
35 typedef int             __kernel_daddr_t;
36 typedef char *          __kernel_caddr_t;
37 typedef unsigned short  __kernel_uid16_t;
38 typedef unsigned short  __kernel_gid16_t;
39 typedef unsigned int    __kernel_uid32_t;
40 typedef unsigned int    __kernel_gid32_t;
41
42 typedef unsigned short  __kernel_old_uid_t;
43 typedef unsigned short  __kernel_old_gid_t;
44 typedef unsigned short  __kernel_old_dev_t;
45
46 #ifdef __GNUC__
47 typedef long long       __kernel_loff_t;
48 #endif
49
50 typedef struct {
51         int     val[2];
52 } __kernel_fsid_t;
53
54 #if defined(__KERNEL__)
55
56 #undef  __FD_SET
57 static __inline__ void __FD_SET(unsigned long __fd, __kernel_fd_set *__fdsetp)
58 {
59         unsigned long __tmp = __fd / __NFDBITS;
60         unsigned long __rem = __fd % __NFDBITS;
61         __fdsetp->fds_bits[__tmp] |= (1UL<<__rem);
62 }
63
64 #undef  __FD_CLR
65 static __inline__ void __FD_CLR(unsigned long __fd, __kernel_fd_set *__fdsetp)
66 {
67         unsigned long __tmp = __fd / __NFDBITS;
68         unsigned long __rem = __fd % __NFDBITS;
69         __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem);
70 }
71
72
73 #undef  __FD_ISSET
74 static __inline__ int __FD_ISSET(unsigned long __fd, const __kernel_fd_set *__p)
75 {
76         unsigned long __tmp = __fd / __NFDBITS;
77         unsigned long __rem = __fd % __NFDBITS;
78         return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0;
79 }
80
81 /*
82  * This will unroll the loop for the normal constant case (8 ints,
83  * for a 256-bit fd_set)
84  */
85 #undef  __FD_ZERO
86 static __inline__ void __FD_ZERO(__kernel_fd_set *__p)
87 {
88         unsigned long *__tmp = __p->fds_bits;
89         int __i;
90
91         if (__builtin_constant_p(__FDSET_LONGS)) {
92                 switch (__FDSET_LONGS) {
93                 case 16:
94                         __tmp[ 0] = 0; __tmp[ 1] = 0;
95                         __tmp[ 2] = 0; __tmp[ 3] = 0;
96                         __tmp[ 4] = 0; __tmp[ 5] = 0;
97                         __tmp[ 6] = 0; __tmp[ 7] = 0;
98                         __tmp[ 8] = 0; __tmp[ 9] = 0;
99                         __tmp[10] = 0; __tmp[11] = 0;
100                         __tmp[12] = 0; __tmp[13] = 0;
101                         __tmp[14] = 0; __tmp[15] = 0;
102                         return;
103
104                 case 8:
105                         __tmp[ 0] = 0; __tmp[ 1] = 0;
106                         __tmp[ 2] = 0; __tmp[ 3] = 0;
107                         __tmp[ 4] = 0; __tmp[ 5] = 0;
108                         __tmp[ 6] = 0; __tmp[ 7] = 0;
109                         return;
110
111                 case 4:
112                         __tmp[ 0] = 0; __tmp[ 1] = 0;
113                         __tmp[ 2] = 0; __tmp[ 3] = 0;
114                         return;
115                 }
116         }
117         __i = __FDSET_LONGS;
118         while (__i) {
119                 __i--;
120                 *__tmp = 0;
121                 __tmp++;
122         }
123 }
124
125 #endif /* defined(__KERNEL__) */
126
127 #endif /* __ASM_SH64_POSIX_TYPES_H */