Changeset 32417 in vbox
- Timestamp:
- Sep 10, 2010 3:37:57 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65779
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r32414 r32417 41 41 #include <iprt/mem.h> 42 42 #include <iprt/mp.h> 43 #include <iprt/avl.h>44 43 #include <iprt/power.h> 45 44 #include <iprt/process.h> … … 341 340 { "RTCrc32Process", (void *)RTCrc32Process }, 342 341 { "RTCrc32Start", (void *)RTCrc32Start }, 343 { "RTAvlGCPtrDestroy", (void *)RTAvlGCPtrDestroy },344 { "RTAvlGCPtrDoWithAll", (void *)RTAvlGCPtrDoWithAll },345 { "RTAvlGCPtrGet", (void *)RTAvlGCPtrGet },346 { "RTAvlGCPtrGetBestFit", (void *)RTAvlGCPtrGetBestFit },347 { "RTAvlGCPtrInsert", (void *)RTAvlGCPtrInsert },348 { "RTAvlGCPtrRemove", (void *)RTAvlGCPtrRemove },349 { "RTAvlGCPtrRemoveBestFit", (void *)RTAvlGCPtrRemoveBestFit },350 { "RTAvlHCPhysDestroy", (void *)RTAvlHCPhysDestroy },351 { "RTAvlHCPhysDoWithAll", (void *)RTAvlHCPhysDoWithAll },352 { "RTAvlHCPhysGet", (void *)RTAvlHCPhysGet },353 { "RTAvlHCPhysGetBestFit", (void *)RTAvlHCPhysGetBestFit },354 { "RTAvlHCPhysInsert", (void *)RTAvlHCPhysInsert },355 { "RTAvlHCPhysRemove", (void *)RTAvlHCPhysRemove },356 { "RTAvlHCPhysRemoveBestFit", (void *)RTAvlHCPhysRemoveBestFit },357 { "RTAvlU32Destroy", (void *)RTAvlU32Destroy },358 { "RTAvlU32DoWithAll", (void *)RTAvlU32DoWithAll },359 { "RTAvlU32Get", (void *)RTAvlU32Get },360 { "RTAvlU32GetBestFit", (void *)RTAvlU32GetBestFit },361 { "RTAvlU32Insert", (void *)RTAvlU32Insert },362 { "RTAvlU32Remove", (void *)RTAvlU32Remove },363 { "RTAvlU32RemoveBestFit", (void *)RTAvlU32RemoveBestFit },364 342 }; 365 343 -
trunk/src/VBox/HostDrivers/Support/SUPR0.def
r32414 r32417 198 198 RTHandleTableLookupWithCtx 199 199 200 RTAvlGCPtrDestroy201 RTAvlGCPtrDoWithAll202 RTAvlGCPtrGet203 RTAvlGCPtrGetBestFit204 RTAvlGCPtrInsert205 RTAvlGCPtrRemove206 RTAvlGCPtrRemoveBestFit207 RTAvlHCPhysDestroy208 RTAvlHCPhysDoWithAll209 RTAvlHCPhysGet210 RTAvlHCPhysGetBestFit211 RTAvlHCPhysInsert212 RTAvlHCPhysRemove213 RTAvlHCPhysRemoveBestFit214 RTAvlU32Destroy215 RTAvlU32DoWithAll216 RTAvlU32Get217 RTAvlU32GetBestFit218 RTAvlU32Insert219 RTAvlU32Remove220 RTAvlU32RemoveBestFit221 222 200 ; data 223 201 g_pSUPGlobalInfoPage DATA ; NT
Note:
See TracChangeset
for help on using the changeset viewer.