Changeset 66240 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Mar 23, 2017 7:14:34 PM (8 years ago)
- Location:
- trunk/src/VBox/ValidationKit/bootsectors/bs3kit
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/Makefile.kmk
r66226 r66240 84 84 bs3-cmn-MemFree.c \ 85 85 bs3-cmn-MemGuardedTestPage.c \ 86 bs3-cmn-MemPrintInfo.c \ 86 87 bs3-cmn-PagingData.c \ 87 88 bs3-cmn-PagingInitRootForPP.c \ -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3kit-autostubs.kmk
r66226 r66240 85 85 $(call BS3KIT_FN_GEN_CMN_NEARSTUB,bs3kit-common-16,Bs3MemFree) 86 86 $(call BS3KIT_FN_GEN_CMN_NEARSTUB,bs3kit-common-16,Bs3MemGuardedTestPageFree) 87 $(call BS3KIT_FN_GEN_CMN_NEARSTUB,bs3kit-common-16,Bs3MemPrintInfo) 87 88 $(call BS3KIT_FN_GEN_CMN_NEARSTUB,bs3kit-common-16,Bs3PicMaskAll) 88 89 $(call BS3KIT_FN_GEN_CMN_NEARSTUB,bs3kit-common-16,Bs3PicSetup) -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3kit-mangling-code-define.h
r66226 r66240 54 54 #define Bs3MemMove BS3_CMN_MANGLER(Bs3MemMove) 55 55 #define Bs3MemPCpy BS3_CMN_MANGLER(Bs3MemPCpy) 56 #define Bs3MemPrintInfo BS3_CMN_MANGLER(Bs3MemPrintInfo) 56 57 #define Bs3MemSet BS3_CMN_MANGLER(Bs3MemSet) 57 58 #define Bs3MemZero BS3_CMN_MANGLER(Bs3MemZero) -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3kit-mangling-code-undef.h
r66226 r66240 54 54 #undef Bs3MemMove 55 55 #undef Bs3MemPCpy 56 #undef Bs3MemPrintInfo 56 57 #undef Bs3MemSet 57 58 #undef Bs3MemZero -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3kit.h
r66226 r66240 2124 2124 BS3_CMN_PROTO_STUB(void, Bs3MemGuardedTestPageFree,(void BS3_FAR *pvGuardedPage)); 2125 2125 2126 /** 2127 * Print all heap info. 2128 */ 2129 BS3_CMN_PROTO_STUB(void, Bs3MemPrintInfo, (void)); 2130 2126 2131 /** Highes RAM byte below 4G. */ 2127 2132 extern uint32_t g_uBs3EndOfRamBelow4G;
Note:
See TracChangeset
for help on using the changeset viewer.