VirtualBox

Changeset 51519 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Jun 4, 2014 5:09:03 AM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
94145
Message:

Runtime: Comment nits.

Location:
trunk/src/VBox/Runtime
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp

    r51450 r51519  
    55
    66/*
    7  * Copyright (C) 2011-2013 Oracle Corporation
     7 * Copyright (C) 2011-2014 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    286286#define DW_ADDR_i386_near32     UINT8_C(4)
    287287#define DW_ADDR_i386_far32      UINT8_C(5)
    288 /** @}  */
     288/** @} */
    289289
    290290
     
    392392    /** Whether there are children or not. */
    393393    bool                fChildren;
    394     /** The tag.  */
     394    /** The tag. */
    395395    uint16_t            uTag;
    396396    /** Offset into the abbrev section of the specification pairs. */
     
    461461    RTDWARFABBREV           LookupAbbrev;
    462462
    463     /** The list of compilation units (RTDWARFDIE).   */
     463    /** The list of compilation units (RTDWARFDIE). */
    464464    RTLISTANCHOR            CompileUnitList;
    465465
     
    484484    PRTDBGDWARFSEG          paSegs;
    485485#ifdef RTDBGMODDWARF_WITH_MEM_CACHE
    486     /** DIE allocators.  */
     486    /** DIE allocators. */
    487487    struct
    488488    {
     
    643643    /** The number of attributes. */
    644644    size_t              cAttributes;
    645     /** The */
     645    /** Pointer to the array of attributes. */
    646646    PCRTDWARFATTRDESC   paAttributes;
    647647} RTDWARFDIEDESC;
    648648typedef struct RTDWARFDIEDESC const *PCRTDWARFDIEDESC;
    649 /** DIE descriptor initializer.  */
     649/** DIE descriptor initializer. */
    650650#define DIE_DESC_INIT(a_Type, a_aAttrs)  { sizeof(a_Type), RT_ELEMENTS(a_aAttrs), &a_aAttrs[0] }
    651651
     
    741741    /** Points to the current top of the stack. Initial value -1. */
    742742    int32_t         iTop;
    743     /** The value stack.  */
     743    /** The value stack. */
    744744    uint64_t        auStack[64];
    745745} RTDWARFLOCST;
     
    860860    RTDWARFREF          SpecRef;
    861861} RTDWARFDIESUBPROGRAM;
    862 /** Pointer to a DW_TAG_subprogram DIE.  */
     862/** Pointer to a DW_TAG_subprogram DIE. */
    863863typedef RTDWARFDIESUBPROGRAM *PRTDWARFDIESUBPROGRAM;
    864 /** Pointer to a const DW_TAG_subprogram DIE.  */
     864/** Pointer to a const DW_TAG_subprogram DIE. */
    865865typedef RTDWARFDIESUBPROGRAM const *PCRTDWARFDIESUBPROGRAM;
    866866
     
    912912    bool                fExternal;
    913913} RTDWARFDIELABEL;
    914 /** Pointer to a DW_TAG_label DIE.  */
     914/** Pointer to a DW_TAG_label DIE. */
    915915typedef RTDWARFDIELABEL *PRTDWARFDIELABEL;
    916 /** Pointer to a const DW_TAG_label DIE.  */
     916/** Pointer to a const DW_TAG_label DIE. */
    917917typedef RTDWARFDIELABEL const *PCRTDWARFDIELABEL;
    918918
     
    936936static const struct RTDWARFTAGDESC
    937937{
    938     /** The tag value.  */
     938    /** The tag value. */
    939939    uint16_t            uTag;
    940940    /** The tag name as string. */
  • trunk/src/VBox/Runtime/common/ldr/ldrMemory.cpp

    r46115 r51519  
    66
    77/*
    8  * Copyright (C) 2006-2013 Oracle Corporation
     8 * Copyright (C) 2006-2014 Oracle Corporation
    99 *
    1010 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    7272    char                szName[1];
    7373} RTLDRRDRMEM;
    74 /** Memory based loader reader instance data.   */
     74/** Memory based loader reader instance data. */
    7575typedef RTLDRRDRMEM *PRTLDRRDRMEM;
    7676
  • trunk/src/VBox/Runtime/include/internal/iprt.h

    r44529 r51519  
    55
    66/*
    7  * Copyright (C) 2009-2012 Oracle Corporation
     7 * Copyright (C) 2009-2014 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    6363
    6464/** @def RT_MORE_STRICT
    65  * Enables more assertions in IPRT.  */
     65 * Enables more assertions in IPRT. */
    6666#if !defined(RT_MORE_STRICT) && (defined(DEBUG) || defined(RT_STRICT) || defined(DOXYGEN_RUNNING)) && !defined(RT_OS_WINDOWS) /** @todo enable on windows after testing */
    6767# define RT_MORE_STRICT
     
    9898 * Extended version of RT_ASSERT_PREEMPT_CPUID for use before
    9999 * RTSpinlockAcquired* returns.  This macro works the idCpuOwner and idAssertCpu
    100  * members of the spinlock instance data.  */
     100 * members of the spinlock instance data. */
    101101#ifdef RT_MORE_STRICT
    102102# define RT_ASSERT_PREEMPT_CPUID_SPIN_ACQUIRED(pThis) \
     
    172172
    173173/** @def RT_ASSERT_INTS_ON
    174  * Asserts that interrupts are disabled when RT_MORE_STRICT is defined.   */
     174 * Asserts that interrupts are disabled when RT_MORE_STRICT is defined. */
    175175#ifdef RT_MORE_STRICT
    176176# if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
  • trunk/src/VBox/Runtime/tools/RTGzip.cpp

    r49320 r51519  
    55
    66/*
    7  * Copyright (C) 2010-2011 Oracle Corporation
     7 * Copyright (C) 2010-2014 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    6969    const char     *pszInput;
    7070} RTGZIPCMDOPTS;
    71 /** Pointer to GZIP options.   */
     71/** Pointer to GZIP options. */
    7272typedef RTGZIPCMDOPTS *PRTGZIPCMDOPTS;
    73 /** Pointer to const GZIP options.   */
     73/** Pointer to const GZIP options. */
    7474typedef RTGZIPCMDOPTS const *PCRTGZIPCMDOPTS;
    7575
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