VirtualBox

Changeset 40630 in vbox


Ignore:
Timestamp:
Mar 26, 2012 9:52:02 AM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
77049
Message:

include/iprt: asm.h comment fixes.

File:
1 edited

Legend:

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

    r40504 r40630  
    189189/** @def ASMBreakpoint
    190190 * Debugger Breakpoint.
    191  * @deprecated Use RT_BREAKPOINT instead. 
    192  * @internal 
     191 * @deprecated Use RT_BREAKPOINT instead.
     192 * @internal
    193193 */
    194194#define ASMBreakpoint() RT_BREAKPOINT()
     
    19371937 * between platforms or compilers, ordered.
    19381938 *
    1939  * @param   pu      Pointer to the variable to update.
     1939 * @param   pu      Pointer to the variable to read.
    19401940 * @param   puRes   Where to store the result.
    19411941 */
     
    20102010 * Atomically writes a signed 8-bit value, unordered.
    20112011 *
    2012  * @param   pi8     Pointer to the 8-bit variable to read.
     2012 * @param   pi8     Pointer to the 8-bit variable to write.
    20132013 * @param   i8      The 8-bit value to assign to *pi8.
    20142014 */
     
    20222022 * Atomically writes an unsigned 16-bit value, ordered.
    20232023 *
    2024  * @param   pu16    Pointer to the 16-bit variable.
     2024 * @param   pu16    Pointer to the 16-bit variable to write.
    20252025 * @param   u16     The 16-bit value to assign to *pu16.
    20262026 */
     
    20342034 * Atomically writes an unsigned 16-bit value, unordered.
    20352035 *
    2036  * @param   pu16    Pointer to the 16-bit variable.
     2036 * @param   pu16    Pointer to the 16-bit variable to write.
    20372037 * @param   u16     The 16-bit value to assign to *pu16.
    20382038 */
     
    20472047 * Atomically writes a signed 16-bit value, ordered.
    20482048 *
    2049  * @param   pi16    Pointer to the 16-bit variable to read.
     2049 * @param   pi16    Pointer to the 16-bit variable to write.
    20502050 * @param   i16     The 16-bit value to assign to *pi16.
    20512051 */
     
    20592059 * Atomically writes a signed 16-bit value, unordered.
    20602060 *
    2061  * @param   pi16    Pointer to the 16-bit variable to read.
     2061 * @param   pi16    Pointer to the 16-bit variable to write.
    20622062 * @param   i16     The 16-bit value to assign to *pi16.
    20632063 */
     
    20722072 * Atomically writes an unsigned 32-bit value, ordered.
    20732073 *
    2074  * @param   pu32    Pointer to the 32-bit variable.
     2074 * @param   pu32    Pointer to the 32-bit variable to write.
    20752075 * @param   u32     The 32-bit value to assign to *pu32.
    20762076 */
     
    20842084 * Atomically writes an unsigned 32-bit value, unordered.
    20852085 *
    2086  * @param   pu32    Pointer to the 32-bit variable.
     2086 * @param   pu32    Pointer to the 32-bit variable to write.
    20872087 * @param   u32     The 32-bit value to assign to *pu32.
    20882088 */
     
    20972097 * Atomically writes a signed 32-bit value, ordered.
    20982098 *
    2099  * @param   pi32    Pointer to the 32-bit variable to read.
     2099 * @param   pi32    Pointer to the 32-bit variable to write.
    21002100 * @param   i32     The 32-bit value to assign to *pi32.
    21012101 */
     
    21092109 * Atomically writes a signed 32-bit value, unordered.
    21102110 *
    2111  * @param   pi32    Pointer to the 32-bit variable to read.
     2111 * @param   pi32    Pointer to the 32-bit variable to write.
    21122112 * @param   i32     The 32-bit value to assign to *pi32.
    21132113 */
     
    21222122 * Atomically writes an unsigned 64-bit value, ordered.
    21232123 *
    2124  * @param   pu64    Pointer to the 64-bit variable.
     2124 * @param   pu64    Pointer to the 64-bit variable to write.
    21252125 * @param   u64     The 64-bit value to assign to *pu64.
    21262126 */
     
    21342134 * Atomically writes an unsigned 64-bit value, unordered.
    21352135 *
    2136  * @param   pu64    Pointer to the 64-bit variable.
     2136 * @param   pu64    Pointer to the 64-bit variable to write.
    21372137 * @param   u64     The 64-bit value to assign to *pu64.
    21382138 */
     
    21512151 * Atomically writes a signed 64-bit value, ordered.
    21522152 *
    2153  * @param   pi64    Pointer to the 64-bit variable.
     2153 * @param   pi64    Pointer to the 64-bit variable to write.
    21542154 * @param   i64     The 64-bit value to assign to *pi64.
    21552155 */
     
    21632163 * Atomically writes a signed 64-bit value, unordered.
    21642164 *
    2165  * @param   pi64    Pointer to the 64-bit variable.
     2165 * @param   pi64    Pointer to the 64-bit variable to write.
    21662166 * @param   i64     The 64-bit value to assign to *pi64.
    21672167 */
     
    21802180 * Atomically writes a boolean value, unordered.
    21812181 *
    2182  * @param   pf      Pointer to the boolean variable.
     2182 * @param   pf      Pointer to the boolean variable to write.
    21832183 * @param   f       The boolean value to assign to *pf.
    21842184 */
     
    21922192 * Atomically writes a boolean value, unordered.
    21932193 *
    2194  * @param   pf      Pointer to the boolean variable.
     2194 * @param   pf      Pointer to the boolean variable to write.
    21952195 * @param   f       The boolean value to assign to *pf.
    21962196 */
     
    22042204 * Atomically writes a pointer value, ordered.
    22052205 *
    2206  * @param   ppv     Pointer to the pointer variable.
     2206 * @param   ppv     Pointer to the pointer variable to write.
    22072207 * @param   pv      The pointer value to assign to *ppv.
    22082208 */
     
    22222222 * Atomically writes a pointer value, ordered.
    22232223 *
    2224  * @param   ppv     Pointer to the pointer variable.
     2224 * @param   ppv     Pointer to the pointer variable to write.
    22252225 * @param   pv      The pointer value to assign to *ppv. If NULL use
    22262226 *                  ASMAtomicWriteNullPtr or you'll land in trouble.
Note: See TracChangeset for help on using the changeset viewer.

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