2001-09-18 23:36:32 +04:00
|
|
|
/* $NetBSD: sunos_exec.c,v 1.35 2001/09/18 19:36:40 jdolecek Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-11-28 21:03:18 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993 Theo de Raadt
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
1994-01-29 02:43:26 +03:00
|
|
|
* derived from this software without specific prior written permission
|
1993-11-28 21:03:18 +03:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2001-05-30 15:37:21 +04:00
|
|
|
#if defined(_KERNEL_OPT)
|
2000-06-06 22:52:30 +04:00
|
|
|
#include "opt_syscall_debug.h"
|
2000-12-01 22:24:36 +03:00
|
|
|
#endif
|
2000-06-06 22:52:30 +04:00
|
|
|
|
1993-11-28 21:03:18 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/mount.h>
|
1995-04-22 23:48:19 +04:00
|
|
|
#include <sys/signalvar.h>
|
1993-11-28 21:03:18 +03:00
|
|
|
#include <sys/vnode.h>
|
2001-09-18 23:36:32 +04:00
|
|
|
#include <sys/exec.h>
|
1993-11-28 21:03:18 +03:00
|
|
|
|
1996-05-05 16:01:45 +04:00
|
|
|
#include <compat/sunos/sunos.h>
|
1995-04-22 23:48:19 +04:00
|
|
|
#include <compat/sunos/sunos_syscall.h>
|
1993-11-28 21:03:18 +03:00
|
|
|
|
1995-04-22 23:48:19 +04:00
|
|
|
extern int nsunos_sysent;
|
|
|
|
extern struct sysent sunos_sysent[];
|
|
|
|
#ifdef SYSCALL_DEBUG
|
2000-11-14 00:32:15 +03:00
|
|
|
extern const char * const sunos_syscallnames[];
|
1995-04-22 23:48:19 +04:00
|
|
|
#endif
|
1999-04-29 20:14:04 +04:00
|
|
|
extern char sunos_sigcode[], sunos_esigcode[];
|
2000-12-09 15:38:23 +03:00
|
|
|
void syscall __P((void));
|
1995-04-22 23:48:19 +04:00
|
|
|
|
|
|
|
struct emul emul_sunos = {
|
|
|
|
"sunos",
|
2000-12-01 16:21:37 +03:00
|
|
|
"/emul/sunos",
|
2001-06-17 01:44:27 +04:00
|
|
|
0,
|
1995-04-22 23:48:19 +04:00
|
|
|
NULL,
|
|
|
|
SUNOS_SYS_syscall,
|
|
|
|
SUNOS_SYS_MAXSYSCALL,
|
|
|
|
sunos_sysent,
|
|
|
|
#ifdef SYSCALL_DEBUG
|
|
|
|
sunos_syscallnames,
|
|
|
|
#else
|
|
|
|
NULL,
|
|
|
|
#endif
|
2000-12-11 08:28:59 +03:00
|
|
|
sunos_sendsig,
|
2001-06-18 06:00:48 +04:00
|
|
|
trapsignal,
|
1999-04-29 20:14:04 +04:00
|
|
|
sunos_sigcode,
|
|
|
|
sunos_esigcode,
|
2001-09-18 23:36:32 +04:00
|
|
|
setregs,
|
2000-12-01 22:24:36 +03:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2000-12-09 15:38:23 +03:00
|
|
|
syscall
|
1995-04-22 23:48:19 +04:00
|
|
|
};
|