VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/netbsd/the-netbsd-kernel.h@ 77120

Last change on this file since 77120 was 77120, checked in by vboxsync, 6 years ago

IPRT: Some license header cleanups.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1/* $Id: the-netbsd-kernel.h 77120 2019-02-01 15:08:46Z vboxsync $ */
2/** @file
3 * IPRT - Ring-0 Driver, The NetBSD Kernel Headers.
4 */
5
6/*
7 * Contributed by knut st. osmundsen.
8 *
9 * Copyright (C) 2007-2019 Oracle Corporation
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * The contents of this file may alternatively be used under the terms
20 * of the Common Development and Distribution License Version 1.0
21 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
22 * VirtualBox OSE distribution, in which case the provisions of the
23 * CDDL are applicable instead of those of the GPL.
24 *
25 * You may elect to license modified versions of this file under the
26 * terms and conditions of either the GPL or the CDDL or both.
27 *
28 * --------------------------------------------------------------------
29 *
30 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>
31 *
32 * Permission is hereby granted, free of charge, to any person
33 * obtaining a copy of this software and associated documentation
34 * files (the "Software"), to deal in the Software without
35 * restriction, including without limitation the rights to use,
36 * copy, modify, merge, publish, distribute, sublicense, and/or sell
37 * copies of the Software, and to permit persons to whom the
38 * Software is furnished to do so, subject to the following
39 * conditions:
40 *
41 * The above copyright notice and this permission notice shall be
42 * included in all copies or substantial portions of the Software.
43 *
44 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
45 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
46 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
47 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
48 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
49 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
50 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
51 * OTHER DEALINGS IN THE SOFTWARE.
52 */
53
54#ifndef IPRT_INCLUDED_SRC_r0drv_netbsd_the_netbsd_kernel_h
55#define IPRT_INCLUDED_SRC_r0drv_netbsd_the_netbsd_kernel_h
56#ifndef RT_WITHOUT_PRAGMA_ONCE
57# pragma once
58#endif
59
60#include <iprt/types.h>
61
62/* Deal with conflicts first. */
63#include <sys/param.h>
64#undef PVM
65#include <sys/bus.h>
66#include <sys/types.h>
67#include <sys/errno.h>
68#include <sys/kernel.h>
69#include <sys/uio.h>
70#include <sys/systm.h>
71#include <sys/malloc.h>
72#include <sys/proc.h>
73#include <sys/syslimits.h>
74#include <sys/sleepq.h>
75#include <sys/unistd.h>
76#include <sys/kthread.h>
77#include <sys/lock.h>
78#include <sys/mutex.h>
79#include <sys/sched.h>
80#include <sys/callout.h>
81#include <sys/rwlock.h>
82#include <sys/kmem.h>
83#include <sys/cpu.h>
84#include <sys/vmmeter.h> /* cnt */
85#include <sys/resourcevar.h>
86#include <uvm/uvm.h>
87#include <uvm/uvm_extern.h>
88#include <uvm/uvm_page.h>
89#include <machine/cpu.h>
90
91/**
92 * Check whether we can use kmem_alloc_prot.
93 */
94#if 0 /** @todo Not available yet. */
95# define USE_KMEM_ALLOC_PROT
96#endif
97
98#endif /* !IPRT_INCLUDED_SRC_r0drv_netbsd_the_netbsd_kernel_h */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette