Changeset 19892 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- May 21, 2009 3:29:29 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47587
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/Makefile.kmk
r18181 r19892 82 82 SUPR3_SOURCES = \ 83 83 SUPLib.cpp \ 84 SUPLibSem.cpp \ 84 85 SUPR3HardenedIPRT.cpp \ 85 86 SUPR3HardenedVerify.cpp \ -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r19454 r19892 100 100 * Well, at least parts of it, specificly the parts that are being handed over 101 101 * via the pre-init mechanism from the hardened executable stub. */ 102 static SUPLIBDATAg_supLibData =102 SUPLIBDATA g_supLibData = 103 103 { 104 104 NIL_RTFILE -
trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h
r16335 r19892 97 97 98 98 /******************************************************************************* 99 * Global Variables *100 *******************************************************************************/101 /** The negotiated interrupt number. */102 extern DECLHIDDEN(uint8_t) g_uchInterruptNo;103 /** The negotiated cookie. */104 extern DECLHIDDEN(uint32_t) g_u32Cookie;105 /** The negotiated cookie. */106 extern DECLHIDDEN(uint32_t) g_u32CookieSession;107 108 109 /*******************************************************************************110 99 * Structures and Typedefs * 111 100 *******************************************************************************/ … … 243 232 244 233 /******************************************************************************* 234 * Global Variables * 235 *******************************************************************************/ 236 extern DECLHIDDEN(uint32_t) g_u32Cookie; 237 extern DECLHIDDEN(uint32_t) g_u32SessionCookie; 238 extern DECLHIDDEN(SUPLIBDATA) g_supLibData; 239 240 241 /******************************************************************************* 245 242 * OS Specific Function * 246 243 *******************************************************************************/ -
trunk/src/VBox/HostDrivers/Support/testcase/Makefile.kmk
r18191 r19892 5 5 6 6 # 7 # Copyright (C) 2006-200 7Sun Microsystems, Inc.7 # Copyright (C) 2006-2009 Sun Microsystems, Inc. 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 45 45 tstPin \ 46 46 tstGIP-2 \ 47 tstGetPagingMode 47 tstGetPagingMode \ 48 tstSupSem 48 49 endif # VBOX_WITH_TESTCASES 49 50 … … 85 86 tstGetPagingMode_SOURCES = tstGetPagingMode.cpp 86 87 88 tstSupSem_TEMPLATE = VBOXR3TSTEXE 89 tstSupSem_SOURCES = tstSupSem.cpp 90 87 91 include $(KBUILD_PATH)/subfooter.kmk 88 92
Note:
See TracChangeset
for help on using the changeset viewer.