2008-10-26 10:05:00 +03:00
|
|
|
/* $NetBSD: i386_vm86.c,v 1.9 2008/10/26 07:05:00 mrg Exp $ */
|
1996-02-21 03:21:45 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by John Kohl.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
1997-07-31 02:53:50 +04:00
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
1996-02-21 03:21:45 +03:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/types.h>
|
1998-09-17 09:15:11 +04:00
|
|
|
#include <sys/signal.h>
|
2003-09-11 23:19:31 +04:00
|
|
|
#include <sys/ucontext.h>
|
1996-02-21 03:21:45 +03:00
|
|
|
#include <machine/segments.h>
|
|
|
|
#include <machine/sysarch.h>
|
2008-10-26 10:05:00 +03:00
|
|
|
#include <i386/vm86.h>
|
1996-02-21 03:21:45 +03:00
|
|
|
|
|
|
|
int
|
|
|
|
i386_vm86(vmcp)
|
1998-02-03 22:12:13 +03:00
|
|
|
struct vm86_struct *vmcp;
|
1996-02-21 03:21:45 +03:00
|
|
|
{
|
|
|
|
|
1998-02-26 00:24:56 +03:00
|
|
|
return sysarch(I386_VM86, (void *)vmcp);
|
1996-02-21 03:21:45 +03:00
|
|
|
}
|