Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/nios2/include/asm/syscalls.h
29271 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
* Copyright Altera Corporation (C) 2013. All rights reserved
4
*/
5
#ifndef __ASM_NIOS2_SYSCALLS_H
6
#define __ASM_NIOS2_SYSCALLS_H
7
8
int sys_cacheflush(unsigned long addr, unsigned long len,
9
unsigned int op);
10
asmlinkage long __sys_clone3(struct clone_args __user *uargs, size_t size);
11
12
#include <asm-generic/syscalls.h>
13
14
#endif /* __ASM_NIOS2_SYSCALLS_H */
15
16