]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/arm/bits/typesizes.h
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / arm / bits / typesizes.h
CommitLineData
929ea132 1/* bits/typesizes.h -- underlying types for *_t. ARM version.
6d7e8eda 2 Copyright (C) 2002-2023 Free Software Foundation, Inc.
a63c7fa1 3 This file is part of the GNU C Library.
a63c7fa1
CM
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
929ea132 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
a63c7fa1
CM
18
19#ifndef _BITS_TYPES_H
20# error "Never include <bits/typesizes.h> directly; use <sys/types.h> instead."
21#endif
22
23#ifndef _BITS_TYPESIZES_H
24#define _BITS_TYPESIZES_H 1
25
26/* See <bits/types.h> for the meaning of these macros. This file exists so
27 that <bits/types.h> need not vary across different GNU platforms. */
28
29#define __DEV_T_TYPE __UQUAD_TYPE
30#define __UID_T_TYPE __U32_TYPE
31#define __GID_T_TYPE __U32_TYPE
929ea132 32#define __INO_T_TYPE __ULONGWORD_TYPE
a63c7fa1
CM
33#define __INO64_T_TYPE __UQUAD_TYPE
34#define __MODE_T_TYPE __U32_TYPE
929ea132
AZN
35#define __NLINK_T_TYPE __UWORD_TYPE
36#define __OFF_T_TYPE __SLONGWORD_TYPE
a63c7fa1
CM
37#define __OFF64_T_TYPE __SQUAD_TYPE
38#define __PID_T_TYPE __S32_TYPE
929ea132 39#define __RLIM_T_TYPE __ULONGWORD_TYPE
a63c7fa1 40#define __RLIM64_T_TYPE __UQUAD_TYPE
929ea132 41#define __BLKCNT_T_TYPE __SLONGWORD_TYPE
a63c7fa1 42#define __BLKCNT64_T_TYPE __SQUAD_TYPE
929ea132 43#define __FSBLKCNT_T_TYPE __ULONGWORD_TYPE
a63c7fa1 44#define __FSBLKCNT64_T_TYPE __UQUAD_TYPE
929ea132 45#define __FSFILCNT_T_TYPE __ULONGWORD_TYPE
a63c7fa1 46#define __FSFILCNT64_T_TYPE __UQUAD_TYPE
fa6da45c 47#define __FSWORD_T_TYPE __SWORD_TYPE
a63c7fa1
CM
48#define __ID_T_TYPE __U32_TYPE
49#define __CLOCK_T_TYPE __SLONGWORD_TYPE
929ea132 50#define __TIME_T_TYPE __SLONGWORD_TYPE
a63c7fa1 51#define __USECONDS_T_TYPE __U32_TYPE
929ea132 52#define __SUSECONDS_T_TYPE __SLONGWORD_TYPE
3fced064 53#define __SUSECONDS64_T_TYPE __SQUAD_TYPE
a63c7fa1 54#define __DADDR_T_TYPE __S32_TYPE
a63c7fa1
CM
55#define __KEY_T_TYPE __S32_TYPE
56#define __CLOCKID_T_TYPE __S32_TYPE
57#define __TIMER_T_TYPE void *
929ea132 58#define __BLKSIZE_T_TYPE __SLONGWORD_TYPE
a63c7fa1
CM
59#define __FSID_T_TYPE struct { int __val[2]; }
60#define __SSIZE_T_TYPE __SWORD_TYPE
a110b27e
CM
61#define __SYSCALL_SLONG_TYPE __SLONGWORD_TYPE
62#define __SYSCALL_ULONG_TYPE __ULONGWORD_TYPE
7635a88d 63#define __CPU_MASK_TYPE __ULONGWORD_TYPE
a63c7fa1 64
929ea132
AZN
65#define __RLIM_T_MATCHES_RLIM64_T 0
66#define __STATFS_MATCHES_STATFS64 0
1c634e67 67/* And for getitimer, setitimer and rusage */
929ea132 68#define __KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64 0
1c634e67 69
a63c7fa1
CM
70/* Number of descriptors that can fit in an `fd_set'. */
71#define __FD_SETSIZE 1024
72
73
74#endif /* bits/typesizes.h */