Changeset 85121 in vbox for trunk/src/VBox/ValidationKit/utils
- Timestamp:
- Jul 8, 2020 7:33:26 PM (5 years ago)
- Location:
- trunk/src/VBox/ValidationKit/utils
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/cpu/cidet-app.cpp
r82968 r85121 186 186 187 187 #ifdef RT_OS_WINDOWS 188 static int CidetAppXcptFilter(EXCEPTION_POINTERS *pXcptPtrs) 188 static int CidetAppXcptFilter(EXCEPTION_POINTERS *pXcptPtrs) RT_NOTHROW_DEF 189 189 { 190 190 /* … … 382 382 * @param pXcptPtrs The exception record. 383 383 */ 384 static LONG CALLBACK CidetAppVectoredXcptHandler(EXCEPTION_POINTERS *pXcptPtrs) 384 static LONG CALLBACK CidetAppVectoredXcptHandler(EXCEPTION_POINTERS *pXcptPtrs) RT_NOTHROW_DEF 385 385 { 386 386 RTStrmPrintf(g_pStdErr, "CidetAppVectoredXcptHandler!\n"); … … 398 398 * @param pXcptPtrs The exception record. 399 399 */ 400 static LONG CALLBACK CidetAppUnhandledXcptFilter(EXCEPTION_POINTERS *pXcptPtrs) 400 static LONG CALLBACK CidetAppUnhandledXcptFilter(EXCEPTION_POINTERS *pXcptPtrs) RT_NOTHROW_DEF 401 401 { 402 402 RTStrmPrintf(g_pStdErr, "CidetAppUnhandledXcptFilter!\n"); -
trunk/src/VBox/ValidationKit/utils/cpu/cidet.h
r82968 r85121 121 121 * cause exceptions/faults. 122 122 */ 123 typedef DECLCALLBACK (int) FNCIDETSETUPINOUT(struct CIDETCORE *pThis, bool fInvalid);123 typedef DECLCALLBACKTYPE(int, FNCIDETSETUPINOUT,(struct CIDETCORE *pThis, bool fInvalid)); 124 124 /** Pointer to a FNCIDETSETUPINOUT function. */ 125 125 typedef FNCIDETSETUPINOUT *PFNCIDETSETUPINOUT; … … 807 807 * @param pBuf Pointer to the buffer structure. 808 808 */ 809 DECLCALLBACKMEMBER(bool, pfnReInitDataBuf )(struct CIDETCORE *pThis, PCIDETBUF pBuf);809 DECLCALLBACKMEMBER(bool, pfnReInitDataBuf,(struct CIDETCORE *pThis, PCIDETBUF pBuf)); 810 810 811 811 /** … … 818 818 * given in pfnReinitBuf call). 819 819 */ 820 DECLCALLBACKMEMBER(bool, pfnSetupDataBuf )(struct CIDETCORE *pThis, PCIDETBUF pBuf, void const *pvSrc);820 DECLCALLBACKMEMBER(bool, pfnSetupDataBuf,(struct CIDETCORE *pThis, PCIDETBUF pBuf, void const *pvSrc)); 821 821 822 822 /** … … 834 834 * buffer offset given in pfnReinitBuf call). 835 835 */ 836 DECLCALLBACKMEMBER(bool, pfnIsBufEqual )(struct CIDETCORE *pThis, struct CIDETBUF *pBuf, void const *pvExpected);836 DECLCALLBACKMEMBER(bool, pfnIsBufEqual,(struct CIDETCORE *pThis, struct CIDETBUF *pBuf, void const *pvExpected)); 837 837 838 838 /** … … 845 845 * execute. 846 846 */ 847 DECLCALLBACKMEMBER(bool, pfnReInitCodeBuf )(struct CIDETCORE *pThis, PCIDETBUF pBuf);847 DECLCALLBACKMEMBER(bool, pfnReInitCodeBuf,(struct CIDETCORE *pThis, PCIDETBUF pBuf)); 848 848 849 849 /** … … 855 855 * @param pvInstr Pointer to the encoded instruction bytes. 856 856 */ 857 DECLCALLBACKMEMBER(bool, pfnSetupCodeBuf )(struct CIDETCORE *pThis, PCIDETBUF pBuf, void const *pvInstr);857 DECLCALLBACKMEMBER(bool, pfnSetupCodeBuf,(struct CIDETCORE *pThis, PCIDETBUF pBuf, void const *pvInstr)); 858 858 859 859 /** … … 863 863 * @param pThis Pointer to the core structure. 864 864 */ 865 DECLCALLBACKMEMBER(bool, pfnExecute )(struct CIDETCORE *pThis);865 DECLCALLBACKMEMBER(bool, pfnExecute,(struct CIDETCORE *pThis)); 866 866 867 867 /** … … 872 872 * @param va Arguments referenced in @a pszFormat. 873 873 */ 874 DECLCALLBACKMEMBER(void, pfnFailure )(struct CIDETCORE *pThis, const char *pszFormat, va_list va);874 DECLCALLBACKMEMBER(void, pfnFailure,(struct CIDETCORE *pThis, const char *pszFormat, va_list va)); 875 875 876 876 /** Array of indexes for use by FNCIDETSETUPINOUT. -
trunk/src/VBox/ValidationKit/utils/serial/SerialTest.cpp
r82968 r85121 83 83 * @param pSerialTest The serial test instance data. 84 84 */ 85 typedef DECLCALLBACK (int) FNSERIALTESTRUN(PSERIALTEST pSerialTest);85 typedef DECLCALLBACKTYPE(int, FNSERIALTESTRUN,(PSERIALTEST pSerialTest)); 86 86 /** Pointer to the serial test callback. */ 87 87 typedef FNSERIALTESTRUN *PFNSERIALTESTRUN; -
trunk/src/VBox/ValidationKit/utils/usb/UsbTest.cpp
r82968 r85121 122 122 * @param pParams The USB test parameters to set up. 123 123 */ 124 typedef DECLCALLBACK (int) FNUSBTESTPARAMSSETUP(unsigned idxTest, const char *pszTest, PUSBTESTPARAMS pParams);124 typedef DECLCALLBACKTYPE(int, FNUSBTESTPARAMSSETUP,(unsigned idxTest, const char *pszTest, PUSBTESTPARAMS pParams)); 125 125 /** Pointer to a USB test parameters setup callback. */ 126 126 typedef FNUSBTESTPARAMSSETUP *PFNUSBTESTPARAMSSETUP;
Note:
See TracChangeset
for help on using the changeset viewer.