OSDN Git Service

Directly use kernel types for uid_t, gid_t, and dev_t to avoid the
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / common / bits / types.h
1 /* Copyright (C) 1991,92,1994-1999,2000,2001 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
18
19 /*
20  * Never include this file directly; use <sys/types.h> instead.
21  */
22
23 #ifndef _BITS_TYPES_H
24 #define _BITS_TYPES_H   1
25
26 #include <features.h>
27
28 #define __need_size_t
29 #include <stddef.h>
30
31 /* Sigh.  We need to carefully wrap this one... */
32 #ifndef __GLIBC__
33 #define __GLIBC__ 2
34 #include <asm/posix_types.h>
35 #undef __GLIBC__
36 #else
37 #include <asm/posix_types.h>
38 #endif
39
40 /* Convenience types.  */
41 typedef unsigned char __u_char;
42 typedef unsigned short __u_short;
43 typedef unsigned int __u_int;
44 typedef unsigned long __u_long;
45 #ifdef __GNUC__
46 __extension__ typedef unsigned long long int __u_quad_t;
47 __extension__ typedef long long int __quad_t;
48 #else
49 typedef struct
50   {
51     long int __val[2];
52   } __quad_t;
53 typedef struct
54   {
55     __u_long __val[2];
56   } __u_quad_t;
57 #endif
58 typedef signed char __int8_t;
59 typedef unsigned char __uint8_t;
60 typedef signed short int __int16_t;
61 typedef unsigned short int __uint16_t;
62 typedef signed int __int32_t;
63 typedef unsigned int __uint32_t;
64 #ifdef __GNUC__
65 __extension__ typedef signed long long int __int64_t;
66 __extension__ typedef unsigned long long int __uint64_t;
67 #endif
68 typedef __quad_t *__qaddr_t;
69
70 typedef __kernel_dev_t __dev_t;         /* Type of device numbers.  */
71 typedef __kernel_uid_t __uid_t;         /* Type of user identifications.  */
72 typedef __kernel_gid_t __gid_t;         /* Type of group identifications.  */
73 typedef __u_long __ino_t;               /* Type of file serial numbers.  */
74 typedef __u_int __mode_t;               /* Type of file attribute bitmasks.  */
75 typedef __u_int __nlink_t;              /* Type of file link counts.  */
76 typedef long int __off_t;               /* Type of file sizes and offsets.  */
77 typedef __quad_t __loff_t;              /* Type of file sizes and offsets.  */
78 typedef int __pid_t;                    /* Type of process identifications.  */
79 typedef int __ssize_t;                  /* Type of a byte count, or error.  */
80 typedef __u_long __rlim_t;              /* Type of resource counts.  */
81 typedef __u_quad_t __rlim64_t;          /* Type of resource counts (LFS).  */
82 typedef __u_int __id_t;                 /* General type for ID.  */
83
84 typedef struct
85   {
86     int __val[2];
87   } __fsid_t;                           /* Type of file system IDs.  */
88
89 /* Everythin' else.  */
90 typedef int __daddr_t;                  /* The type of a disk address.  */
91 typedef char *__caddr_t;
92 typedef long int __time_t;
93 typedef unsigned int __useconds_t;
94 typedef long int __suseconds_t;
95 typedef long int __swblk_t;             /* Type of a swap block maybe?  */
96 \f
97 typedef long int __clock_t;
98
99 /* Clock ID used in clock and timer functions.  */
100 typedef int __clockid_t;
101
102 /* Timer ID returned by `timer_create'.  */
103 typedef int __timer_t;
104
105
106 /* Number of descriptors that can fit in an `fd_set'.  */
107 #define __FD_SETSIZE    1024
108
109
110 typedef int __key_t;
111
112 /* Used in `struct shmid_ds'.  */
113 typedef unsigned short int __ipc_pid_t;
114
115
116 /* Type to represent block size.  */
117 typedef long int __blksize_t;
118
119 /* Types from the Large File Support interface.  */
120
121 /* Type to count number os disk blocks.  */
122 typedef long int __blkcnt_t;
123 typedef __quad_t __blkcnt64_t;
124
125 /* Type to count file system blocks.  */
126 typedef __u_long __fsblkcnt_t;
127 typedef __u_quad_t __fsblkcnt64_t;
128
129 /* Type to count file system inodes.  */
130 typedef __u_long __fsfilcnt_t;
131 typedef __u_quad_t __fsfilcnt64_t;
132
133 /* Type of file serial numbers.  */
134 typedef __u_quad_t __ino64_t;
135
136 /* Type of file sizes and offsets.  */
137 typedef __loff_t __off64_t;
138
139 /* Used in XTI.  */
140 typedef long int __t_scalar_t;
141 typedef unsigned long int __t_uscalar_t;
142
143 /* Duplicates info from stdint.h but this is used in unistd.h.  */
144 typedef int __intptr_t;
145
146 /* Duplicate info from sys/socket.h.  */
147 typedef unsigned int __socklen_t;
148
149
150 /* Now add the thread types.  */
151 #if defined __UCLIBC_HAS_THREADS__ && (defined __USE_POSIX199506 || defined __USE_UNIX98)
152 # include <bits/pthreadtypes.h>
153 #endif
154
155 #endif /* bits/types.h */