We still have wrappers, but nowhere near as scary as they used to be. I'm not sure how necessary that flushw is now, TBH... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
16 lines
360 B
C
16 lines
360 B
C
#ifndef _SPARC64_SYSCALLS_H
|
|
#define _SPARC64_SYSCALLS_H
|
|
|
|
struct pt_regs;
|
|
|
|
extern asmlinkage long sparc_do_fork(unsigned long clone_flags,
|
|
unsigned long stack_start,
|
|
struct pt_regs *regs,
|
|
unsigned long stack_size);
|
|
|
|
#ifndef __arch64__
|
|
extern asmlinkage int sparc_execve(struct pt_regs *regs);
|
|
#endif
|
|
|
|
#endif /* _SPARC64_SYSCALLS_H */
|