Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.15-rc1 19 lines 653 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2#ifndef _ASM_M68K_SYSCALLS_H 3#define _ASM_M68K_SYSCALLS_H 4 5#include <linux/compiler_types.h> 6#include <linux/linkage.h> 7 8asmlinkage int sys_cacheflush(unsigned long addr, int scope, int cache, 9 unsigned long len); 10asmlinkage int sys_atomic_cmpxchg_32(unsigned long newval, int oldval, int d3, 11 int d4, int d5, unsigned long __user *mem); 12asmlinkage int sys_getpagesize(void); 13asmlinkage unsigned long sys_get_thread_area(void); 14asmlinkage int sys_set_thread_area(unsigned long tp); 15asmlinkage int sys_atomic_barrier(void); 16 17#include <asm-generic/syscalls.h> 18 19#endif /* _ASM_M68K_SYSCALLS_H */