summaryrefslogtreecommitdiffstats
path: root/arch/sparc/kernel/sys_solaris.c
blob: 6bef6e5232db336ed45c351ec91207ef73162cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * linux/arch/sparc/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/smp_lock.h>

asmlinkage int
do_solaris_syscall (struct pt_regs *regs)
{
	int ret;

	lock_kernel();
	current->personality = PER_SVR4;
	current->exec_domain = lookup_exec_domain(PER_SVR4);

	if (current->exec_domain && current->exec_domain->handler){
		current->exec_domain->handler (regs);

		/* What is going on here?  Why do we do this? */

		/* XXX current->exec_domain->use_count = 0; XXX */

		ret = regs->u_regs [UREG_I0];
	} else {
		printk ("No solaris handler\n");
		send_sig (SIGSEGV, current, 1);
		ret = 0;
	}
	unlock_kernel();
	return ret;
}