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 v2.6.32-rc5 25 lines 705 B view raw
1#ifndef __ASM_SH_SYSCALLS_H 2#define __ASM_SH_SYSCALLS_H 3 4#ifdef __KERNEL__ 5 6struct old_utsname; 7 8asmlinkage int old_mmap(unsigned long addr, unsigned long len, 9 unsigned long prot, unsigned long flags, 10 int fd, unsigned long off); 11asmlinkage long sys_mmap2(unsigned long addr, unsigned long len, 12 unsigned long prot, unsigned long flags, 13 unsigned long fd, unsigned long pgoff); 14asmlinkage int sys_ipc(uint call, int first, int second, 15 int third, void __user *ptr, long fifth); 16asmlinkage int sys_uname(struct old_utsname __user *name); 17 18#ifdef CONFIG_SUPERH32 19# include "syscalls_32.h" 20#else 21# include "syscalls_64.h" 22#endif 23 24#endif /* __KERNEL__ */ 25#endif /* __ASM_SH_SYSCALLS_H */