blob: 9f9faf63b48c2e37d3cf0987737ca67e86512478 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Paul Mundtfa439722008-09-04 18:53:58 +09002#ifndef __ASM_SH_SYSCALLS_32_H
3#define __ASM_SH_SYSCALLS_32_H
4
5#ifdef __KERNEL__
6
7#include <linux/compiler.h>
8#include <linux/linkage.h>
9#include <linux/types.h>
10
11struct pt_regs;
12
Bobby Binghamabafe5d2014-04-03 14:46:39 -070013asmlinkage int sys_sigreturn(void);
14asmlinkage int sys_rt_sigreturn(void);
15asmlinkage int sys_sh_pipe(void);
Paul Mundtfa439722008-09-04 18:53:58 +090016asmlinkage ssize_t sys_pread_wrapper(unsigned int fd, char __user *buf,
17 size_t count, long dummy, loff_t pos);
18asmlinkage ssize_t sys_pwrite_wrapper(unsigned int fd, const char __user *buf,
19 size_t count, long dummy, loff_t pos);
20asmlinkage int sys_fadvise64_64_wrapper(int fd, u32 offset0, u32 offset1,
21 u32 len0, u32 len1, int advice);
22
23/* Misc syscall related bits */
24asmlinkage long do_syscall_trace_enter(struct pt_regs *regs);
25asmlinkage void do_syscall_trace_leave(struct pt_regs *regs);
26asmlinkage void do_notify_resume(struct pt_regs *regs, unsigned int save_r0,
27 unsigned long thread_info_flags);
28
29#endif /* __KERNEL__ */
30#endif /* __ASM_SH_SYSCALLS_32_H */