1 /*
2  *  linux/include/asm-arm/posix_types.h
3  *
4  *  Copyright (C) 1996-1998 Russell King.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  *  Changelog:
11  *   27-06-1996	RMK	Created
12  */
13 #ifndef __ARCH_ARM_POSIX_TYPES_H
14 #define __ARCH_ARM_POSIX_TYPES_H
15 
16 /*
17  * This file is generally used by user-level software, so you need to
18  * be a little careful about namespace pollution etc.  Also, we cannot
19  * assume GCC is being used.
20  */
21 
22 typedef unsigned short		__kernel_dev_t;
23 typedef unsigned long		__kernel_ino_t;
24 typedef unsigned short		__kernel_mode_t;
25 typedef unsigned short		__kernel_nlink_t;
26 typedef long			__kernel_off_t;
27 typedef int			__kernel_pid_t;
28 typedef unsigned short		__kernel_ipc_pid_t;
29 typedef unsigned short		__kernel_uid_t;
30 typedef unsigned short		__kernel_gid_t;
31 #if CONFIG_SANDBOX_BITS_PER_LONG == 32
32 typedef unsigned int		__kernel_size_t;
33 typedef int			__kernel_ssize_t;
34 typedef int			__kernel_ptrdiff_t;
35 #else
36 typedef unsigned long		__kernel_size_t;
37 typedef long			__kernel_ssize_t;
38 typedef long			__kernel_ptrdiff_t;
39 #endif
40 typedef long			__kernel_time_t;
41 typedef long			__kernel_suseconds_t;
42 typedef long			__kernel_clock_t;
43 typedef int			__kernel_daddr_t;
44 typedef char			*__kernel_caddr_t;
45 typedef unsigned short		__kernel_uid16_t;
46 typedef unsigned short		__kernel_gid16_t;
47 typedef unsigned int		__kernel_uid32_t;
48 typedef unsigned int		__kernel_gid32_t;
49 
50 typedef unsigned short		__kernel_old_uid_t;
51 typedef unsigned short		__kernel_old_gid_t;
52 
53 #ifdef __GNUC__
54 typedef long long		__kernel_loff_t;
55 #endif
56 
57 #endif
58