Blame view

include/asm-generic/compat.h 658 Bytes
2b5a9a37e   Arnd Bergmann   time: Add an asm-...
1
  /* SPDX-License-Identifier: GPL-2.0 */
fb3739759   Arnd Bergmann   asm-generic: Move...
2
3
  #ifndef __ASM_GENERIC_COMPAT_H
  #define __ASM_GENERIC_COMPAT_H
2b5a9a37e   Arnd Bergmann   time: Add an asm-...
4

fb3739759   Arnd Bergmann   asm-generic: Move...
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  /* These types are common across all compat ABIs */
  typedef u32 compat_size_t;
  typedef s32 compat_ssize_t;
  typedef s32 compat_clock_t;
  typedef s32 compat_pid_t;
  typedef u32 compat_ino_t;
  typedef s32 compat_off_t;
  typedef s64 compat_loff_t;
  typedef s32 compat_daddr_t;
  typedef s32 compat_timer_t;
  typedef s32 compat_key_t;
  typedef s16 compat_short_t;
  typedef s32 compat_int_t;
  typedef s32 compat_long_t;
  typedef u16 compat_ushort_t;
  typedef u32 compat_uint_t;
  typedef u32 compat_ulong_t;
  typedef u32 compat_uptr_t;
  typedef u32 compat_aio_context_t;
  
  #endif