]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/xtensa/bits/kernel_types.h
Inital import
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / xtensa / bits / kernel_types.h
1 /* Note that we use the exact same include guard #define names
2  * as asm/posix_types.h.  This will avoid gratuitous conflicts
3  * with the posix_types.h kernel header, and will ensure that
4  * our private content, and not the kernel header, will win.
5  *  -Erik
6  */
7 #ifndef _XTENSA_POSIX_TYPES_H
8 #define _XTENSA_POSIX_TYPES_H
9
10 typedef unsigned long   __kernel_ino_t;
11 typedef unsigned int    __kernel_mode_t;
12 typedef unsigned long   __kernel_nlink_t;
13 typedef long            __kernel_off_t;
14 typedef int             __kernel_pid_t;
15 typedef unsigned short  __kernel_ipc_pid_t;
16 typedef unsigned int    __kernel_uid_t;
17 typedef unsigned int    __kernel_gid_t;
18 typedef unsigned int    __kernel_size_t;
19 typedef int             __kernel_ssize_t;
20 typedef long            __kernel_ptrdiff_t;
21 typedef long            __kernel_time_t;
22 typedef long            __kernel_suseconds_t;
23 typedef long            __kernel_clock_t;
24 typedef int             __kernel_timer_t;
25 typedef int             __kernel_clockid_t;
26 typedef int             __kernel_daddr_t;
27 typedef char *          __kernel_caddr_t;
28 typedef unsigned short  __kernel_uid16_t;
29 typedef unsigned short  __kernel_gid16_t;
30 typedef unsigned int    __kernel_uid32_t;
31 typedef unsigned int    __kernel_gid32_t;
32
33 typedef unsigned short  __kernel_old_uid_t;
34 typedef unsigned short  __kernel_old_gid_t;
35 typedef unsigned short  __kernel_old_dev_t;
36 typedef long long       __kernel_loff_t;
37
38 /* Beginning in 2.6 kernels, which is the first version that includes the
39    Xtensa port, __kernel_dev_t is defined in "linux/types.h" and is no longer
40    architecture-specific.  It is defined here in uClibc for consistency with
41    other uClibc ports and for lack of a better place.  */
42 typedef unsigned int    __kernel_dev_t;
43
44 typedef struct {
45         int     val[2];
46 } __kernel_fsid_t;
47
48 #endif /* _XTENSA_POSIX_TYPES_H */