repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
20 lines
337 B
C
20 lines
337 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <uapi/linux/unistd.h>
|
|
#include <linux/kbuild.h>
|
|
|
|
#define SYSNR(_NR) DEFINE(SYS ## _NR, _NR)
|
|
|
|
void syscall_defines(void)
|
|
{
|
|
COMMENT("Linux system call numbers.");
|
|
SYSNR(__NR_write);
|
|
SYSNR(__NR_read);
|
|
#ifdef __NR_mmap2
|
|
SYSNR(__NR_mmap2);
|
|
#endif
|
|
#ifdef __NR_mmap
|
|
SYSNR(__NR_mmap);
|
|
#endif
|
|
|
|
}
|