Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-arm / posix_types.h
blobc37379dadcb294f92a88d1c145029f935eed7c78
1 /*
2 * linux/include/asm-arm/posix_types.h
4 * Copyright (C) 1996-1998 Russell King.
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.
10 * Changelog:
11 * 27-06-1996 RMK Created
13 #ifndef __ARCH_ARM_POSIX_TYPES_H
14 #define __ARCH_ARM_POSIX_TYPES_H
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.
22 typedef unsigned long __kernel_ino_t;
23 typedef unsigned short __kernel_mode_t;
24 typedef unsigned short __kernel_nlink_t;
25 typedef long __kernel_off_t;
26 typedef int __kernel_pid_t;
27 typedef unsigned short __kernel_ipc_pid_t;
28 typedef unsigned short __kernel_uid_t;
29 typedef unsigned short __kernel_gid_t;
30 typedef unsigned int __kernel_size_t;
31 typedef int __kernel_ssize_t;
32 typedef int __kernel_ptrdiff_t;
33 typedef long __kernel_time_t;
34 typedef long __kernel_suseconds_t;
35 typedef long __kernel_clock_t;
36 typedef int __kernel_timer_t;
37 typedef int __kernel_clockid_t;
38 typedef int __kernel_daddr_t;
39 typedef char * __kernel_caddr_t;
40 typedef unsigned short __kernel_uid16_t;
41 typedef unsigned short __kernel_gid16_t;
42 typedef unsigned int __kernel_uid32_t;
43 typedef unsigned int __kernel_gid32_t;
45 typedef unsigned short __kernel_old_uid_t;
46 typedef unsigned short __kernel_old_gid_t;
47 typedef unsigned short __kernel_old_dev_t;
49 #ifdef __GNUC__
50 typedef long long __kernel_loff_t;
51 #endif
53 typedef struct {
54 int val[2];
55 } __kernel_fsid_t;
57 #if defined(__KERNEL__)
59 #undef __FD_SET
60 #define __FD_SET(fd, fdsetp) \
61 (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
63 #undef __FD_CLR
64 #define __FD_CLR(fd, fdsetp) \
65 (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
67 #undef __FD_ISSET
68 #define __FD_ISSET(fd, fdsetp) \
69 ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
71 #undef __FD_ZERO
72 #define __FD_ZERO(fdsetp) \
73 (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
75 #endif
77 #endif