VirtualBox

Changeset 69305 in vbox for trunk/src/VBox/Devices/testcase


Ignore:
Timestamp:
Oct 25, 2017 1:41:41 PM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
118626
Message:

Devices/testcase: scm updates

Location:
trunk/src/VBox/Devices/testcase
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/testcase/tstDevice.cpp

    r69183 r69305  
    4040#include "tstDeviceInternal.h"
    4141
     42
    4243/*********************************************************************************************************************************
    4344*   Defined Constants And Macros                                                                                                 *
     
    189190} TSTDEVPDMR0IMPORTS;
    190191typedef const TSTDEVPDMR0IMPORTS *PCTSTDEVPDMR0IMPORTS;
     192
    191193
    192194/*********************************************************************************************************************************
     
    695697
    696698/**
    697  * Loads the given 
     699 * Loads the given
    698700 */
    699701static int tstDevPdmLoadR3Mod(PTSTDEVPDMMOD pMod)
  • trunk/src/VBox/Devices/testcase/tstDeviceInternal.h

    r69183 r69305  
    1313 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
    1414 * 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 terms
    17  * of the Common Development and Distribution License Version 1.0
    18  * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
    19  * VirtualBox OSE distribution, in which case the provisions of the
    20  * CDDL are applicable instead of those of the GPL.
    21  *
    22  * You may elect to license modified versions of this file under the
    23  * terms and conditions of either the GPL or the CDDL or both.
    2415 */
    2516
  • trunk/src/VBox/Devices/testcase/tstDevicePdmDevHlp.cpp

    r69183 r69305  
    2929
    3030#include "tstDeviceInternal.h"
     31
    3132
    3233/*********************************************************************************************************************************
     
    7576             pDevIns->pReg->szName, pDevIns->iInstance, Port, cPorts, pvUser, pfnOut, pfnIn, pfnOutStr, pfnInStr, pszDesc, pszDesc));
    7677
    77     /** @todo: Verify there is no overlapping. */
     78    /** @todo Verify there is no overlapping. */
    7879
    7980    RT_NOREF(pszDesc);
     
    105106{
    106107    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",
    108109             pDevIns->pReg->szName, pDevIns->iInstance, Port, cPorts, pvUser, pszOut, pszOut, pszIn, pszIn, pszOutStr, pszOutStr, pszInStr, pszInStr, pszDesc, pszDesc));
    109110
     
    123124{
    124125    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",
    126127             pDevIns->pReg->szName, pDevIns->iInstance, Port, cPorts, pvUser, pszOut, pszOut, pszIn, pszIn, pszOutStr, pszOutStr, pszInStr, pszInStr, pszDesc, pszDesc));
    127128
     
    131132    RTListForEach(&pThis->LstIoPorts, pIoPort, RTDEVDUTIOPORT, NdIoPorts)
    132133    {
    133         /** @todo: Support overlapping port ranges. */
     134        /** @todo Support overlapping port ranges. */
    134135        if (   pIoPort->PortStart == Port
    135136            && pIoPort->cPorts == cPorts)
     
    12191220             pDevIns->pReg->szName, pDevIns->iInstance, pCritSect));
    12201221
    1221     /** @todo: Implement default atomatic critical section. */
     1222    /** @todo Implement default atomatic critical section. */
    12221223    pDevIns->pCritSectRoR3 = pCritSect;
    12231224
  • trunk/src/VBox/Devices/testcase/tstDevicePlugin.h

    r69162 r69305  
    1313 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
    1414 * 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 terms
    17  * of the Common Development and Distribution License Version 1.0
    18  * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
    19  * VirtualBox OSE distribution, in which case the provisions of the
    20  * CDDL are applicable instead of those of the GPL.
    21  *
    22  * You may elect to license modified versions of this file under the
    23  * terms and conditions of either the GPL or the CDDL or both.
    2415 */
    2516
  • trunk/src/VBox/Devices/testcase/tstDeviceSUP.cpp

    r69183 r69305  
    2727
    2828#include "tstDeviceInternal.h"
     29
    2930
    3031/*********************************************************************************************************************************
  • trunk/src/VBox/Devices/testcase/tstDeviceVMM.cpp

    r69183 r69305  
    2929#include "tstDeviceInternal.h"
    3030
     31
    3132/*********************************************************************************************************************************
    3233*   Defined Constants And Macros                                                                                                 *
     
    3738/** Frequency of the virtual clock. */
    3839#define TMCLOCK_FREQ_VIRTUAL    UINT32_C(1000000000)
     40
    3941
    4042/*********************************************************************************************************************************
  • trunk/src/VBox/Devices/testcase/tstDeviceVMMStubs.cpp

    r69183 r69305  
    2121 */
    2222
     23
    2324/*********************************************************************************************************************************
    2425*   Header Files                                                                                                                 *
     
    3233
    3334#include "tstDeviceVMMInternal.h"
     35
    3436
    3537/*********************************************************************************************************************************
     
    789791}
    790792
    791 /** @todo: PDMR3AsyncCompletion + BlkCache + CritSect + QueryLun + Thread. */
     793/** @todo PDMR3AsyncCompletion + BlkCache + CritSect + QueryLun + Thread. */
    792794
    793795/**
     
    988990}
    989991
    990 
    991 
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette