Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(527)

Side by Side Diff: include/asm/posix_types_64.h

Issue 3332021: Import asm headers for 64 bit glibc compilation. (Closed) Base URL: ssh://gitrw.chromium.org/linux-headers-for-nacl
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/asm/page_64.h ('k') | include/asm/unistd_64.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef _ASM_X86_64_POSIX_TYPES_H
2 #define _ASM_X86_64_POSIX_TYPES_H
3
4 /*
5 * This file is generally used by user-level software, so you need to
6 * be a little careful about namespace pollution etc. Also, we cannot
7 * assume GCC is being used.
8 */
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 int __kernel_ipc_pid_t;
16 typedef unsigned int __kernel_uid_t;
17 typedef unsigned int __kernel_gid_t;
18 typedef unsigned long __kernel_size_t;
19 typedef long __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
31 #ifdef __GNUC__
32 typedef long long __kernel_loff_t;
33 #endif
34
35 typedef struct {
36 int val[2];
37 } __kernel_fsid_t;
38
39 typedef unsigned short __kernel_old_uid_t;
40 typedef unsigned short __kernel_old_gid_t;
41 typedef __kernel_uid_t __kernel_uid32_t;
42 typedef __kernel_gid_t __kernel_gid32_t;
43
44 typedef unsigned long __kernel_old_dev_t;
45
46
47 #endif
OLDNEW
« no previous file with comments | « include/asm/page_64.h ('k') | include/asm/unistd_64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698