Changeset 69305 in vbox for trunk/src/VBox/Devices/testcase
- Timestamp:
- Oct 25, 2017 1:41:41 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118626
- Location:
- trunk/src/VBox/Devices/testcase
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/testcase/tstDevice.cpp
r69183 r69305 40 40 #include "tstDeviceInternal.h" 41 41 42 42 43 /********************************************************************************************************************************* 43 44 * Defined Constants And Macros * … … 189 190 } TSTDEVPDMR0IMPORTS; 190 191 typedef const TSTDEVPDMR0IMPORTS *PCTSTDEVPDMR0IMPORTS; 192 191 193 192 194 /********************************************************************************************************************************* … … 695 697 696 698 /** 697 * Loads the given 699 * Loads the given 698 700 */ 699 701 static int tstDevPdmLoadR3Mod(PTSTDEVPDMMOD pMod) -
trunk/src/VBox/Devices/testcase/tstDeviceInternal.h
r69183 r69305 13 13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the 14 14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 15 *16 * The contents of this file may alternatively be used under the terms17 * of the Common Development and Distribution License Version 1.018 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the19 * VirtualBox OSE distribution, in which case the provisions of the20 * CDDL are applicable instead of those of the GPL.21 *22 * You may elect to license modified versions of this file under the23 * terms and conditions of either the GPL or the CDDL or both.24 15 */ 25 16 -
trunk/src/VBox/Devices/testcase/tstDevicePdmDevHlp.cpp
r69183 r69305 29 29 30 30 #include "tstDeviceInternal.h" 31 31 32 32 33 /********************************************************************************************************************************* … … 75 76 pDevIns->pReg->szName, pDevIns->iInstance, Port, cPorts, pvUser, pfnOut, pfnIn, pfnOutStr, pfnInStr, pszDesc, pszDesc)); 76 77 77 /** @todo :Verify there is no overlapping. */78 /** @todo Verify there is no overlapping. */ 78 79 79 80 RT_NOREF(pszDesc); … … 105 106 { 106 107 PDMDEV_ASSERT_DEVINS(pDevIns); 107 LogFlow(("pdmR3DevHlp_IOPortRegisterRC: caller='%s'/%d: Port=%#x cPorts=%#x pvUser=%p pszOut=%p:{%s} pszIn=%p:{%s} pszOutStr=%p:{%s} pszInStr=%p:{%s} pszDesc=%p:{%s}\n", 108 LogFlow(("pdmR3DevHlp_IOPortRegisterRC: caller='%s'/%d: Port=%#x cPorts=%#x pvUser=%p pszOut=%p:{%s} pszIn=%p:{%s} pszOutStr=%p:{%s} pszInStr=%p:{%s} pszDesc=%p:{%s}\n", 108 109 pDevIns->pReg->szName, pDevIns->iInstance, Port, cPorts, pvUser, pszOut, pszOut, pszIn, pszIn, pszOutStr, pszOutStr, pszInStr, pszInStr, pszDesc, pszDesc)); 109 110 … … 123 124 { 124 125 PDMDEV_ASSERT_DEVINS(pDevIns); 125 LogFlow(("pdmR3DevHlp_IOPortRegisterR0: caller='%s'/%d: Port=%#x cPorts=%#x pvUser=%p pszOut=%p:{%s} pszIn=%p:{%s} pszOutStr=%p:{%s} pszInStr=%p:{%s} pszDesc=%p:{%s}\n", 126 LogFlow(("pdmR3DevHlp_IOPortRegisterR0: caller='%s'/%d: Port=%#x cPorts=%#x pvUser=%p pszOut=%p:{%s} pszIn=%p:{%s} pszOutStr=%p:{%s} pszInStr=%p:{%s} pszDesc=%p:{%s}\n", 126 127 pDevIns->pReg->szName, pDevIns->iInstance, Port, cPorts, pvUser, pszOut, pszOut, pszIn, pszIn, pszOutStr, pszOutStr, pszInStr, pszInStr, pszDesc, pszDesc)); 127 128 … … 131 132 RTListForEach(&pThis->LstIoPorts, pIoPort, RTDEVDUTIOPORT, NdIoPorts) 132 133 { 133 /** @todo :Support overlapping port ranges. */134 /** @todo Support overlapping port ranges. */ 134 135 if ( pIoPort->PortStart == Port 135 136 && pIoPort->cPorts == cPorts) … … 1219 1220 pDevIns->pReg->szName, pDevIns->iInstance, pCritSect)); 1220 1221 1221 /** @todo :Implement default atomatic critical section. */1222 /** @todo Implement default atomatic critical section. */ 1222 1223 pDevIns->pCritSectRoR3 = pCritSect; 1223 1224 -
trunk/src/VBox/Devices/testcase/tstDevicePlugin.h
r69162 r69305 13 13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the 14 14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 15 *16 * The contents of this file may alternatively be used under the terms17 * of the Common Development and Distribution License Version 1.018 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the19 * VirtualBox OSE distribution, in which case the provisions of the20 * CDDL are applicable instead of those of the GPL.21 *22 * You may elect to license modified versions of this file under the23 * terms and conditions of either the GPL or the CDDL or both.24 15 */ 25 16 -
trunk/src/VBox/Devices/testcase/tstDeviceSUP.cpp
r69183 r69305 27 27 28 28 #include "tstDeviceInternal.h" 29 29 30 30 31 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/testcase/tstDeviceVMM.cpp
r69183 r69305 29 29 #include "tstDeviceInternal.h" 30 30 31 31 32 /********************************************************************************************************************************* 32 33 * Defined Constants And Macros * … … 37 38 /** Frequency of the virtual clock. */ 38 39 #define TMCLOCK_FREQ_VIRTUAL UINT32_C(1000000000) 40 39 41 40 42 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/testcase/tstDeviceVMMStubs.cpp
r69183 r69305 21 21 */ 22 22 23 23 24 /********************************************************************************************************************************* 24 25 * Header Files * … … 32 33 33 34 #include "tstDeviceVMMInternal.h" 35 34 36 35 37 /********************************************************************************************************************************* … … 789 791 } 790 792 791 /** @todo :PDMR3AsyncCompletion + BlkCache + CritSect + QueryLun + Thread. */793 /** @todo PDMR3AsyncCompletion + BlkCache + CritSect + QueryLun + Thread. */ 792 794 793 795 /** … … 988 990 } 989 991 990 991
Note:
See TracChangeset
for help on using the changeset viewer.