| * linux/arch/h8300/kernel/sys_h8300.c |
| * This file contains various random system calls that |
| * have a non-standard calling sequence on the H8/300 |
| #include <linux/syscalls.h> |
| #include <asm/cachectl.h> |
| /* sys_cacheflush -- no support. */ |
| sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len) |
| asmlinkage int sys_getpagesize(void) |
| #if defined(CONFIG_SYSCALL_PRINT) |
| asmlinkage void syscall_print(void *dummy,...) |
| struct pt_regs *regs = (struct pt_regs *) ((unsigned char *)&dummy-4); |
| printk("call %06lx:%ld 1:%08lx,2:%08lx,3:%08lx,ret:%08lx\n", |
| ((regs->pc)&0xffffff)-2,regs->orig_er0,regs->er1,regs->er2,regs->er3,regs->er0); |