File: syscall-x86_64.h

package info (click to toggle)
libaio 0.3.113-9
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,404 kB
  • sloc: ansic: 956; makefile: 150; sh: 45
file content (16 lines) | stat: -rw-r--r-- 544 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if __ILP32__
#define __X32_SYSCALL_BIT	0x40000000UL
#define __NR_io_setup		(__X32_SYSCALL_BIT + 543)
#define __NR_io_destroy		(__X32_SYSCALL_BIT + 207)
#define __NR_io_submit		(__X32_SYSCALL_BIT + 544)
#define __NR_io_cancel		(__X32_SYSCALL_BIT + 210)
#define __NR_io_getevents	(__X32_SYSCALL_BIT + 208)
#define __NR_io_pgetevents	(__X32_SYSCALL_BIT + 333)
#else
#define __NR_io_setup		206
#define __NR_io_destroy		207
#define __NR_io_getevents	208
#define __NR_io_submit		209
#define __NR_io_cancel		210
#define __NR_io_pgetevents	333
#endif