GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / mn10300 / include / asm / posix_types.h
blob56ffbc1587986d5a7dd9ded3e5541a41d4c989a9
1 /* MN10300 POSIX types
3 * Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd.
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
11 #ifndef _ASM_POSIX_TYPES_H
12 #define _ASM_POSIX_TYPES_H
15 * This file is generally used by user-level software, so you need to
16 * be a little careful about namespace pollution etc. Also, we cannot
17 * assume GCC is being used.
20 typedef unsigned long __kernel_ino_t;
21 typedef unsigned short __kernel_mode_t;
22 typedef unsigned short __kernel_nlink_t;
23 typedef long __kernel_off_t;
24 typedef int __kernel_pid_t;
25 typedef unsigned short __kernel_ipc_pid_t;
26 typedef unsigned short __kernel_uid_t;
27 typedef unsigned short __kernel_gid_t;
28 #if __GNUC__ == 4
29 typedef unsigned int __kernel_size_t;
30 typedef signed int __kernel_ssize_t;
31 #else
32 typedef unsigned long __kernel_size_t;
33 typedef signed long __kernel_ssize_t;
34 #endif
35 typedef int __kernel_ptrdiff_t;
36 typedef long __kernel_time_t;
37 typedef long __kernel_suseconds_t;
38 typedef long __kernel_clock_t;
39 typedef int __kernel_timer_t;
40 typedef int __kernel_clockid_t;
41 typedef int __kernel_daddr_t;
42 typedef char * __kernel_caddr_t;
43 typedef unsigned short __kernel_uid16_t;
44 typedef unsigned short __kernel_gid16_t;
45 typedef unsigned int __kernel_uid32_t;
46 typedef unsigned int __kernel_gid32_t;
48 typedef unsigned short __kernel_old_uid_t;
49 typedef unsigned short __kernel_old_gid_t;
50 typedef unsigned short __kernel_old_dev_t;
52 #ifdef __GNUC__
53 typedef long long __kernel_loff_t;
54 #endif
56 typedef struct {
57 #if defined(__KERNEL__) || defined(__USE_ALL)
58 int val[2];
59 #else /* !defined(__KERNEL__) && !defined(__USE_ALL) */
60 int __val[2];
61 #endif /* !defined(__KERNEL__) && !defined(__USE_ALL) */
62 } __kernel_fsid_t;
64 #if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2)
66 #undef __FD_SET
67 static inline void __FD_SET(unsigned long __fd, __kernel_fd_set *__fdsetp)
69 unsigned long __tmp = __fd / __NFDBITS;
70 unsigned long __rem = __fd % __NFDBITS;
71 __fdsetp->fds_bits[__tmp] |= (1UL<<__rem);
74 #undef __FD_CLR
75 static inline void __FD_CLR(unsigned long __fd, __kernel_fd_set *__fdsetp)
77 unsigned long __tmp = __fd / __NFDBITS;
78 unsigned long __rem = __fd % __NFDBITS;
79 __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem);
83 #undef __FD_ISSET
84 static inline int __FD_ISSET(unsigned long __fd, const __kernel_fd_set *__p)
86 unsigned long __tmp = __fd / __NFDBITS;
87 unsigned long __rem = __fd % __NFDBITS;
88 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0;
92 * This will unroll the loop for the normal constant case (8 ints,
93 * for a 256-bit fd_set)
95 #undef __FD_ZERO
96 static inline void __FD_ZERO(__kernel_fd_set *__p)
98 unsigned long *__tmp = __p->fds_bits;
99 int __i;
101 if (__builtin_constant_p(__FDSET_LONGS)) {
102 switch (__FDSET_LONGS) {
103 case 16:
104 __tmp[ 0] = 0; __tmp[ 1] = 0;
105 __tmp[ 2] = 0; __tmp[ 3] = 0;
106 __tmp[ 4] = 0; __tmp[ 5] = 0;
107 __tmp[ 6] = 0; __tmp[ 7] = 0;
108 __tmp[ 8] = 0; __tmp[ 9] = 0;
109 __tmp[10] = 0; __tmp[11] = 0;
110 __tmp[12] = 0; __tmp[13] = 0;
111 __tmp[14] = 0; __tmp[15] = 0;
112 return;
114 case 8:
115 __tmp[ 0] = 0; __tmp[ 1] = 0;
116 __tmp[ 2] = 0; __tmp[ 3] = 0;
117 __tmp[ 4] = 0; __tmp[ 5] = 0;
118 __tmp[ 6] = 0; __tmp[ 7] = 0;
119 return;
121 case 4:
122 __tmp[ 0] = 0; __tmp[ 1] = 0;
123 __tmp[ 2] = 0; __tmp[ 3] = 0;
124 return;
127 __i = __FDSET_LONGS;
128 while (__i) {
129 __i--;
130 *__tmp = 0;
131 __tmp++;
135 #endif /* defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) */
137 #endif /* _ASM_POSIX_TYPES_H */