e63340ae6b
Remove includes of <linux/smp_lock.h> where it is not used/needed. Suggested by Al Viro. Builds cleanly on x86_64, i386, alpha, ia64, powerpc, sparc, sparc64, and arm (all 59 defconfigs). Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
35 lines
745 B
C
35 lines
745 B
C
/*
|
|
* linux/arch/sparc/kernel/sys_solaris.c
|
|
*
|
|
* Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx)
|
|
*/
|
|
|
|
#include <linux/sched.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/string.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/personality.h>
|
|
#include <linux/ptrace.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/smp.h>
|
|
#include <linux/module.h>
|
|
|
|
asmlinkage int
|
|
do_solaris_syscall (struct pt_regs *regs)
|
|
{
|
|
static int cnt = 0;
|
|
if (++cnt < 10) printk ("No solaris handler\n");
|
|
force_sig(SIGSEGV, current);
|
|
return 0;
|
|
}
|
|
|
|
#ifndef CONFIG_SUNOS_EMUL
|
|
asmlinkage int
|
|
do_sunos_syscall (struct pt_regs *regs)
|
|
{
|
|
static int cnt = 0;
|
|
if (++cnt < 10) printk ("SunOS binary emulation not compiled in\n");
|
|
force_sig (SIGSEGV, current);
|
|
return 0;
|
|
}
|
|
#endif
|