Files

31 lines
785 B
C
Raw Permalink Normal View History

// SPDX-License-Identifier: GPL-2.0-only
2011-10-31 18:35:16 -05:00
/*
* System call table for Hexagon
*
2012-09-19 16:22:02 -05:00
* Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
2011-10-31 18:35:16 -05:00
*/
#include <linux/syscalls.h>
#include <linux/signal.h>
#include <linux/unistd.h>
#include <asm/syscall.h>
#define __SYSCALL(nr, call) [nr] = (call),
2024-06-20 15:36:30 +02:00
#define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
#define sys_mmap2 sys_mmap_pgoff
2011-10-31 18:35:16 -05:00
SYSCALL_DEFINE6(hexagon_fadvise64_64, int, fd, int, advice,
SC_ARG64(offset), SC_ARG64(len))
{
return ksys_fadvise64_64(fd, SC_VAL64(loff_t, offset), SC_VAL64(loff_t, len), advice);
}
#define sys_fadvise64_64 sys_hexagon_fadvise64_64
2024-06-20 15:36:30 +02:00
#define sys_sync_file_range sys_sync_file_range2
2011-10-31 18:35:16 -05:00
void *sys_call_table[__NR_syscalls] = {
2024-06-20 15:36:30 +02:00
#include <asm/syscall_table_32.h>
2011-10-31 18:35:16 -05:00
};