Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:13:25

0001 /*
0002    This file is part of Valgrind, a dynamic binary instrumentation framework.
0003 
0004    Copyright (C) 2019 Bart Van Assche <bvanassche@acm.org>
0005 
0006    This program is free software; you can redistribute it and/or
0007    modify it under the terms of the GNU General Public License as
0008    published by the Free Software Foundation; either version 2 of the
0009    License, or (at your option) any later version.
0010 
0011    This program is distributed in the hope that it will be useful, but
0012    WITHOUT ANY WARRANTY; without even the implied warranty of
0013    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0014    General Public License for more details.
0015 
0016    You should have received a copy of the GNU General Public License
0017    along with this program; if not, see <http://www.gnu.org/licenses/>.
0018 
0019    The GNU General Public License is contained in the file COPYING.
0020 */
0021 
0022 #ifndef __VKI_SCNUMS_32BIT_LINUX_H
0023 #define __VKI_SCNUMS_32BIT_LINUX_H
0024 
0025 // Derived from the __BITS_PER_LONG == 32 sections in
0026 // linux-5.2/include/uapi/asm-generic/unistd.h
0027 
0028 #define __NR_clock_gettime64    403
0029 #define __NR_clock_settime64    404
0030 #define __NR_clock_adjtime64    405
0031 #define __NR_clock_getres_time64    406
0032 #define __NR_clock_nanosleep_time64 407
0033 #define __NR_timer_gettime64    408
0034 #define __NR_timer_settime64    409
0035 #define __NR_timerfd_gettime64  410
0036 #define __NR_timerfd_settime64  411
0037 #define __NR_utimensat_time64   412
0038 #define __NR_pselect6_time64    413
0039 #define __NR_ppoll_time64   414
0040 #define __NR_io_pgetevents_time64   416
0041 #define __NR_recvmmsg_time64    417
0042 #define __NR_mq_timedsend_time64    418
0043 #define __NR_mq_timedreceive_time64 419
0044 #define __NR_semtimedop_time64  420
0045 #define __NR_rt_sigtimedwait_time64 421
0046 #define __NR_futex_time64   422
0047 #define __NR_sched_rr_get_interval_time64   423
0048 
0049 #endif