VirtualBox

Changeset 36573 in vbox for trunk/include/iprt


Ignore:
Timestamp:
Apr 6, 2011 10:10:49 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
71009
Message:

include/: a/an nits

Location:
trunk/include/iprt
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/assert.h

    r33520 r36573  
    367367
    368368/** @def AssertCompileMemberOffset
    369  * Asserts a offset of a structure member at compile.
     369 * Asserts an offset of a structure member at compile.
    370370 * @param   type    The type.
    371371 * @param   member  The member.
  • trunk/include/iprt/avl.h

    r34218 r36573  
    236236/** A offset base tree with uint32_t keys. */
    237237typedef AVLOU32         AVLOU32TREE;
    238 /** Pointer to a offset base tree with uint32_t keys. */
     238/** Pointer to an offset base tree with uint32_t keys. */
    239239typedef AVLOU32TREE    *PAVLOU32TREE;
    240240
     
    373373/** A offset base tree with uint32_t keys. */
    374374typedef AVLOGCPHYS         AVLOGCPHYSTREE;
    375 /** Pointer to a offset base tree with uint32_t keys. */
     375/** Pointer to an offset base tree with uint32_t keys. */
    376376typedef AVLOGCPHYSTREE    *PAVLOGCPHYSTREE;
    377377
     
    426426/** A offset base tree with uint32_t keys. */
    427427typedef AVLROGCPHYS         AVLROGCPHYSTREE;
    428 /** Pointer to a offset base tree with uint32_t keys. */
     428/** Pointer to an offset base tree with uint32_t keys. */
    429429typedef AVLROGCPHYSTREE    *PAVLROGCPHYSTREE;
    430430
     
    520520/** A offset base tree with uint32_t keys. */
    521521typedef AVLOGCPTR         AVLOGCPTRTREE;
    522 /** Pointer to a offset base tree with uint32_t keys. */
     522/** Pointer to an offset base tree with uint32_t keys. */
    523523typedef AVLOGCPTRTREE    *PAVLOGCPTRTREE;
    524524
     
    566566/** A offset base tree with RTGCPTR keys. */
    567567typedef PAVLRGCPTRNODECORE AVLRGCPTRTREE;
    568 /** Pointer to a offset base tree with RTGCPTR keys. */
     568/** Pointer to an offset base tree with RTGCPTR keys. */
    569569typedef AVLRGCPTRTREE    *PAVLRGCPTRTREE;
    570570
     
    622622/** A offset base tree with uint32_t keys. */
    623623typedef AVLROGCPTR         AVLROGCPTRTREE;
    624 /** Pointer to a offset base tree with uint32_t keys. */
     624/** Pointer to an offset base tree with uint32_t keys. */
    625625typedef AVLROGCPTRTREE    *PAVLROGCPTRTREE;
    626626
     
    679679/** A offset base tree with uint32_t keys. */
    680680typedef AVLROOGCPTR         AVLROOGCPTRTREE;
    681 /** Pointer to a offset base tree with uint32_t keys. */
     681/** Pointer to an offset base tree with uint32_t keys. */
    682682typedef AVLROOGCPTRTREE    *PAVLROOGCPTRTREE;
    683683
     
    730730/** A pointer based tree with RTUINTPTR keys. */
    731731typedef PAVLUINTPTRNODECORE AVLUINTPTRTREE;
    732 /** Pointer to a offset base tree with RTUINTPTR keys. */
     732/** Pointer to an offset base tree with RTUINTPTR keys. */
    733733typedef AVLUINTPTRTREE     *PAVLUINTPTRTREE;
    734734
     
    836836/** A offset base tree with uint32_t keys. */
    837837typedef AVLOHCPHYS         AVLOHCPHYSTREE;
    838 /** Pointer to a offset base tree with uint32_t keys. */
     838/** Pointer to an offset base tree with uint32_t keys. */
    839839typedef AVLOHCPHYSTREE    *PAVLOHCPHYSTREE;
    840840
     
    886886/** A offset base tree with uint32_t keys. */
    887887typedef AVLOIOPORTPTR      AVLOIOPORTTREE;
    888 /** Pointer to a offset base tree with uint32_t keys. */
     888/** Pointer to an offset base tree with uint32_t keys. */
    889889typedef AVLOIOPORTTREE    *PAVLOIOPORTTREE;
    890890
     
    937937/** A offset base tree with uint32_t keys. */
    938938typedef AVLROIOPORTPTR      AVLROIOPORTTREE;
    939 /** Pointer to a offset base tree with uint32_t keys. */
     939/** Pointer to an offset base tree with uint32_t keys. */
    940940typedef AVLROIOPORTTREE    *PAVLROIOPORTTREE;
    941941
     
    986986/** A offset base tree with RTHCPHYS keys. */
    987987typedef AVLHCPHYSPTR      AVLHCPHYSTREE;
    988 /** Pointer to a offset base tree with RTHCPHYS keys. */
     988/** Pointer to an offset base tree with RTHCPHYS keys. */
    989989typedef AVLHCPHYSTREE    *PAVLHCPHYSTREE;
    990990
     
    10341034/** A offset base tree with RTGCPHYS keys. */
    10351035typedef AVLGCPHYSPTR      AVLGCPHYSTREE;
    1036 /** Pointer to a offset base tree with RTGCPHYS keys. */
     1036/** Pointer to an offset base tree with RTGCPHYS keys. */
    10371037typedef AVLGCPHYSTREE    *PAVLGCPHYSTREE;
    10381038
  • trunk/include/iprt/cpp/list.h

    r36572 r36573  
    6565 * There are some requirements for the types used which follow:
    6666 * -# They need a default and a copy constructor.
    67  * -# Some methods (e.g. RTCList::contains) need a equal operator.
     67 * -# Some methods (e.g. RTCList::contains) need an equal operator.
    6868 * -# If the type is some complex class (that is, having a constructor which
    6969 *    allocates members on the heap) it has to be greater than sizeof(void*) to
  • trunk/include/iprt/cpp/lock.h

    r36522 r36573  
    4444 * The mutex lock.
    4545 *
    46  * This is used as a object data member if the intention is to lock
     46 * This is used as an object data member if the intention is to lock
    4747 * a single object. This can also be used statically, initialized in
    4848 * a global variable, for class wide purposes.
  • trunk/include/iprt/ctype.h

    r34710 r36573  
    102102
    103103/**
    104  * Checks for a octal digit.
     104 * Checks for an octal digit.
    105105 *
    106106 * @returns true / false.
  • trunk/include/iprt/file.h

    r34435 r36573  
    11951195
    11961196/**
    1197  * Associates a file with a async I/O context.
     1197 * Associates a file with an async I/O context.
    11981198 * Requests for this file will arrive at the completion port
    11991199 * associated with the file.
  • trunk/include/iprt/types.h

    r36262 r36573  
    14731473/** Async I/O request handle. */
    14741474typedef R3PTRTYPE(struct RTFILEAIOREQINTERNAL *)    RTFILEAIOREQ;
    1475 /** Pointer to a async I/O request handle. */
     1475/** Pointer to an async I/O request handle. */
    14761476typedef RTFILEAIOREQ                               *PRTFILEAIOREQ;
    14771477/** Nil request handle. */
     
    14801480/** Async I/O completion context handle. */
    14811481typedef R3PTRTYPE(struct RTFILEAIOCTXINTERNAL *)    RTFILEAIOCTX;
    1482 /** Pointer to a async I/O completion context handle. */
     1482/** Pointer to an async I/O completion context handle. */
    14831483typedef RTFILEAIOCTX                               *PRTFILEAIOCTX;
    14841484/** Nil context handle. */
     
    16431643#define NIL_RTHEAPSIMPLE                            ((RTHEAPSIMPLE)0)
    16441644
    1645 /** Handle to a offset based heap. */
     1645/** Handle to an offset based heap. */
    16461646typedef R3R0PTRTYPE(struct RTHEAPOFFSETINTERNAL *)  RTHEAPOFFSET;
    1647 /** Pointer to a handle to a offset based heap. */
     1647/** Pointer to a handle to an offset based heap. */
    16481648typedef RTHEAPOFFSET                               *PRTHEAPOFFSET;
    16491649/** NIL offset based heap handle. */
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