1 #ifndef __ASM_SH_SYSCALL_64_H
2 #define __ASM_SH_SYSCALL_64_H
4 #include <linux/kernel.h>
5 #include <linux/sched.h>
6 #include <asm/ptrace.h>
8 /* The system call number is given by the user in R9 */
9 static inline long syscall_get_nr(struct task_struct
*task
,
12 return (regs
->syscall_nr
>= 0) ? regs
->regs
[9] : -1L;
15 static inline void syscall_rollback(struct task_struct
*task
,
19 * XXX: This needs some thought. On SH we don't
20 * save away the original R9 value anywhere.
24 static inline long syscall_get_error(struct task_struct
*task
,
27 return IS_ERR_VALUE(regs
->regs
[9]) ? regs
->regs
[9] : 0;
30 static inline long syscall_get_return_value(struct task_struct
*task
,
36 static inline void syscall_set_return_value(struct task_struct
*task
,
41 regs
->regs
[9] = -error
;
46 static inline void syscall_get_arguments(struct task_struct
*task
,
48 unsigned int i
, unsigned int n
,
52 memcpy(args
, ®s
->regs
[2 + i
], n
* sizeof(args
[0]));
55 static inline void syscall_set_arguments(struct task_struct
*task
,
57 unsigned int i
, unsigned int n
,
58 const unsigned long *args
)
61 memcpy(®s
->regs
[2 + i
], args
, n
* sizeof(args
[0]));
64 #endif /* __ASM_SH_SYSCALL_64_H */