Changeset 64366 in vbox for trunk/src/VBox/ValidationKit/utils/cpu
- Timestamp:
- Oct 22, 2016 4:36:39 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 111471
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/cpu/cidet-app.cpp
r62673 r64366 59 59 * restore the lower 32-bits of the base when saving and restoring the register). 60 60 */ 61 #if defined(RT_OS_DARWIN) && defined(RT_ARCH_AMD64)61 #if (defined(RT_OS_DARWIN) && defined(RT_ARCH_AMD64)) || defined(DOXYGEN_RUNNING) 62 62 # define CIDET_LEAVE_GS_ALONE 63 63 #endif … … 709 709 710 710 /** 711 * @interface_method_impl{CIDETCORE ::pfnReInitDataBuf}711 * @interface_method_impl{CIDETCORE,pfnReInitDataBuf} 712 712 */ 713 713 static DECLCALLBACK(bool) CidetAppCbReInitDataBuf(PCIDETCORE pThis, PCIDETBUF pBuf) … … 763 763 764 764 /** 765 * @interface_method_impl{CIDETCORE ::pfnSetupDataBuf}765 * @interface_method_impl{CIDETCORE,pfnSetupDataBuf} 766 766 */ 767 767 static DECLCALLBACK(bool) CidetAppCbSetupDataBuf(PCIDETCORE pThis, PCIDETBUF pBuf, void const *pvSrc) … … 787 787 788 788 /** 789 * @interface_method_impl{CIDETCORE ::pfnIsBufEqual}789 * @interface_method_impl{CIDETCORE,pfnIsBufEqual} 790 790 */ 791 791 static DECLCALLBACK(bool) CidetAppCbIsBufEqual(PCIDETCORE pThis, struct CIDETBUF *pBuf, void const *pvExpected) … … 831 831 832 832 /** 833 * @interface_method_impl{CIDETCORE ::pfnReInitCodeBuf}833 * @interface_method_impl{CIDETCORE,pfnReInitCodeBuf} 834 834 */ 835 835 static DECLCALLBACK(bool) CidetAppCbReInitCodeBuf(PCIDETCORE pThis, PCIDETBUF pBuf) … … 885 885 886 886 /** 887 * @interface_method_impl{CIDETCORE ::pfnSetupCodeBuf}887 * @interface_method_impl{CIDETCORE,pfnSetupCodeBuf} 888 888 */ 889 889 static DECLCALLBACK(bool) CidetAppCbSetupCodeBuf(PCIDETCORE pThis, PCIDETBUF pBuf, void const *pvInstr) … … 1055 1055 1056 1056 /** 1057 * @interface_method_impl{CIDETCORE ::pfnExecute}1057 * @interface_method_impl{CIDETCORE,pfnExecute} 1058 1058 */ 1059 1059 static DECLCALLBACK(bool) CidetAppCbExecute(PCIDETCORE pThis) … … 1105 1105 1106 1106 /** 1107 * @interface_method_impl{CIDETCORE ::pfnSetupBuf}1108 */ 1109 static DECLCALLBACK(void) CidetAppCbFailureV(PCIDETCORE pThis, const char *psz Msg, va_list va)1107 * @interface_method_impl{CIDETCORE,pfnFailure} 1108 */ 1109 static DECLCALLBACK(void) CidetAppCbFailureV(PCIDETCORE pThis, const char *pszFormat, va_list va) 1110 1110 { 1111 1111 RT_NOREF_PV(pThis); 1112 RTTestIFailedV(psz Msg, va);1112 RTTestIFailedV(pszFormat, va); 1113 1113 } 1114 1114
Note:
See TracChangeset
for help on using the changeset viewer.