Last change
on this file since 1 was 1, checked in by vboxsync, 55 years ago |
import
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.8 KB
|
Line | |
---|
1 | ;
|
---|
2 | ; VBox host drivers - Ring-0 support drivers - Shared code
|
---|
3 | ;
|
---|
4 | ; Export definitions
|
---|
5 | ;
|
---|
6 | ; Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
7 | ;
|
---|
8 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
10 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | ; General Public License as published by the Free Software Foundation,
|
---|
12 | ; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | ; distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | ; be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | ;
|
---|
16 | ; If you received this file as part of a commercial VirtualBox
|
---|
17 | ; distribution, then only the terms of your commercial VirtualBox
|
---|
18 | ; license agreement apply instead of the previous paragraph.
|
---|
19 | ;
|
---|
20 |
|
---|
21 | LIBRARY SUPR0
|
---|
22 |
|
---|
23 | EXPORTS
|
---|
24 | SUPR0ObjRegister
|
---|
25 | SUPR0ObjAddRef
|
---|
26 | SUPR0ObjRelease
|
---|
27 | SUPR0ObjVerifyAccess
|
---|
28 | SUPR0LockMem
|
---|
29 | SUPR0UnlockMem
|
---|
30 | SUPR0ContAlloc
|
---|
31 | SUPR0ContFree
|
---|
32 | SUPR0MemAlloc
|
---|
33 | SUPR0MemGetPhys
|
---|
34 | SUPR0MemFree
|
---|
35 | SUPR0Printf
|
---|
36 | RTMemAlloc
|
---|
37 | RTMemAllocZ
|
---|
38 | RTMemFree
|
---|
39 | ; broken - RTSemMutexCreate
|
---|
40 | ; broken - RTSemMutexRequest
|
---|
41 | ; broken - RTSemMutexRelease
|
---|
42 | ; broken - RTSemMutexDestroy
|
---|
43 | RTSemFastMutexCreate
|
---|
44 | RTSemFastMutexDestroy
|
---|
45 | RTSemFastMutexRequest
|
---|
46 | RTSemFastMutexRelease
|
---|
47 | RTSemEventCreate
|
---|
48 | RTSemEventSignal
|
---|
49 | RTSemEventWait
|
---|
50 | RTSemEventDestroy
|
---|
51 | RTSpinlockCreate
|
---|
52 | RTSpinlockDestroy
|
---|
53 | RTSpinlockAcquire
|
---|
54 | RTSpinlockRelease
|
---|
55 | RTSpinlockAcquireNoInts
|
---|
56 | RTSpinlockReleaseNoInts
|
---|
57 | RTThreadSelf
|
---|
58 | RTThreadSleep
|
---|
59 | RTThreadYield
|
---|
60 | RTLogDefaultInstance
|
---|
61 | RTLogRelDefaultInstance
|
---|
62 | RTLogSetDefaultInstanceThread
|
---|
63 | RTLogLogger
|
---|
64 | RTLogLoggerEx
|
---|
65 | RTLogLoggerExV
|
---|
66 | AssertMsg1
|
---|
67 | AssertMsg2
|
---|
68 |
|
---|
69 | ; data
|
---|
70 | g_SUPGlobalInfoPage DATA
|
---|
71 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.