Changeset 36573 in vbox for trunk/include/iprt
- Timestamp:
- Apr 6, 2011 10:10:49 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71009
- Location:
- trunk/include/iprt
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/assert.h
r33520 r36573 367 367 368 368 /** @def AssertCompileMemberOffset 369 * Asserts a offset of a structure member at compile.369 * Asserts an offset of a structure member at compile. 370 370 * @param type The type. 371 371 * @param member The member. -
trunk/include/iprt/avl.h
r34218 r36573 236 236 /** A offset base tree with uint32_t keys. */ 237 237 typedef AVLOU32 AVLOU32TREE; 238 /** Pointer to a offset base tree with uint32_t keys. */238 /** Pointer to an offset base tree with uint32_t keys. */ 239 239 typedef AVLOU32TREE *PAVLOU32TREE; 240 240 … … 373 373 /** A offset base tree with uint32_t keys. */ 374 374 typedef AVLOGCPHYS AVLOGCPHYSTREE; 375 /** Pointer to a offset base tree with uint32_t keys. */375 /** Pointer to an offset base tree with uint32_t keys. */ 376 376 typedef AVLOGCPHYSTREE *PAVLOGCPHYSTREE; 377 377 … … 426 426 /** A offset base tree with uint32_t keys. */ 427 427 typedef AVLROGCPHYS AVLROGCPHYSTREE; 428 /** Pointer to a offset base tree with uint32_t keys. */428 /** Pointer to an offset base tree with uint32_t keys. */ 429 429 typedef AVLROGCPHYSTREE *PAVLROGCPHYSTREE; 430 430 … … 520 520 /** A offset base tree with uint32_t keys. */ 521 521 typedef AVLOGCPTR AVLOGCPTRTREE; 522 /** Pointer to a offset base tree with uint32_t keys. */522 /** Pointer to an offset base tree with uint32_t keys. */ 523 523 typedef AVLOGCPTRTREE *PAVLOGCPTRTREE; 524 524 … … 566 566 /** A offset base tree with RTGCPTR keys. */ 567 567 typedef PAVLRGCPTRNODECORE AVLRGCPTRTREE; 568 /** Pointer to a offset base tree with RTGCPTR keys. */568 /** Pointer to an offset base tree with RTGCPTR keys. */ 569 569 typedef AVLRGCPTRTREE *PAVLRGCPTRTREE; 570 570 … … 622 622 /** A offset base tree with uint32_t keys. */ 623 623 typedef AVLROGCPTR AVLROGCPTRTREE; 624 /** Pointer to a offset base tree with uint32_t keys. */624 /** Pointer to an offset base tree with uint32_t keys. */ 625 625 typedef AVLROGCPTRTREE *PAVLROGCPTRTREE; 626 626 … … 679 679 /** A offset base tree with uint32_t keys. */ 680 680 typedef AVLROOGCPTR AVLROOGCPTRTREE; 681 /** Pointer to a offset base tree with uint32_t keys. */681 /** Pointer to an offset base tree with uint32_t keys. */ 682 682 typedef AVLROOGCPTRTREE *PAVLROOGCPTRTREE; 683 683 … … 730 730 /** A pointer based tree with RTUINTPTR keys. */ 731 731 typedef PAVLUINTPTRNODECORE AVLUINTPTRTREE; 732 /** Pointer to a offset base tree with RTUINTPTR keys. */732 /** Pointer to an offset base tree with RTUINTPTR keys. */ 733 733 typedef AVLUINTPTRTREE *PAVLUINTPTRTREE; 734 734 … … 836 836 /** A offset base tree with uint32_t keys. */ 837 837 typedef AVLOHCPHYS AVLOHCPHYSTREE; 838 /** Pointer to a offset base tree with uint32_t keys. */838 /** Pointer to an offset base tree with uint32_t keys. */ 839 839 typedef AVLOHCPHYSTREE *PAVLOHCPHYSTREE; 840 840 … … 886 886 /** A offset base tree with uint32_t keys. */ 887 887 typedef AVLOIOPORTPTR AVLOIOPORTTREE; 888 /** Pointer to a offset base tree with uint32_t keys. */888 /** Pointer to an offset base tree with uint32_t keys. */ 889 889 typedef AVLOIOPORTTREE *PAVLOIOPORTTREE; 890 890 … … 937 937 /** A offset base tree with uint32_t keys. */ 938 938 typedef AVLROIOPORTPTR AVLROIOPORTTREE; 939 /** Pointer to a offset base tree with uint32_t keys. */939 /** Pointer to an offset base tree with uint32_t keys. */ 940 940 typedef AVLROIOPORTTREE *PAVLROIOPORTTREE; 941 941 … … 986 986 /** A offset base tree with RTHCPHYS keys. */ 987 987 typedef AVLHCPHYSPTR AVLHCPHYSTREE; 988 /** Pointer to a offset base tree with RTHCPHYS keys. */988 /** Pointer to an offset base tree with RTHCPHYS keys. */ 989 989 typedef AVLHCPHYSTREE *PAVLHCPHYSTREE; 990 990 … … 1034 1034 /** A offset base tree with RTGCPHYS keys. */ 1035 1035 typedef AVLGCPHYSPTR AVLGCPHYSTREE; 1036 /** Pointer to a offset base tree with RTGCPHYS keys. */1036 /** Pointer to an offset base tree with RTGCPHYS keys. */ 1037 1037 typedef AVLGCPHYSTREE *PAVLGCPHYSTREE; 1038 1038 -
trunk/include/iprt/cpp/list.h
r36572 r36573 65 65 * There are some requirements for the types used which follow: 66 66 * -# 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. 68 68 * -# If the type is some complex class (that is, having a constructor which 69 69 * allocates members on the heap) it has to be greater than sizeof(void*) to -
trunk/include/iprt/cpp/lock.h
r36522 r36573 44 44 * The mutex lock. 45 45 * 46 * This is used as a object data member if the intention is to lock46 * This is used as an object data member if the intention is to lock 47 47 * a single object. This can also be used statically, initialized in 48 48 * a global variable, for class wide purposes. -
trunk/include/iprt/ctype.h
r34710 r36573 102 102 103 103 /** 104 * Checks for a octal digit.104 * Checks for an octal digit. 105 105 * 106 106 * @returns true / false. -
trunk/include/iprt/file.h
r34435 r36573 1195 1195 1196 1196 /** 1197 * Associates a file with a async I/O context.1197 * Associates a file with an async I/O context. 1198 1198 * Requests for this file will arrive at the completion port 1199 1199 * associated with the file. -
trunk/include/iprt/types.h
r36262 r36573 1473 1473 /** Async I/O request handle. */ 1474 1474 typedef R3PTRTYPE(struct RTFILEAIOREQINTERNAL *) RTFILEAIOREQ; 1475 /** Pointer to a async I/O request handle. */1475 /** Pointer to an async I/O request handle. */ 1476 1476 typedef RTFILEAIOREQ *PRTFILEAIOREQ; 1477 1477 /** Nil request handle. */ … … 1480 1480 /** Async I/O completion context handle. */ 1481 1481 typedef R3PTRTYPE(struct RTFILEAIOCTXINTERNAL *) RTFILEAIOCTX; 1482 /** Pointer to a async I/O completion context handle. */1482 /** Pointer to an async I/O completion context handle. */ 1483 1483 typedef RTFILEAIOCTX *PRTFILEAIOCTX; 1484 1484 /** Nil context handle. */ … … 1643 1643 #define NIL_RTHEAPSIMPLE ((RTHEAPSIMPLE)0) 1644 1644 1645 /** Handle to a offset based heap. */1645 /** Handle to an offset based heap. */ 1646 1646 typedef R3R0PTRTYPE(struct RTHEAPOFFSETINTERNAL *) RTHEAPOFFSET; 1647 /** Pointer to a handle to a offset based heap. */1647 /** Pointer to a handle to an offset based heap. */ 1648 1648 typedef RTHEAPOFFSET *PRTHEAPOFFSET; 1649 1649 /** NIL offset based heap handle. */
Note:
See TracChangeset
for help on using the changeset viewer.