Changeset 40630 in vbox
- Timestamp:
- Mar 26, 2012 9:52:02 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77049
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm.h
r40504 r40630 189 189 /** @def ASMBreakpoint 190 190 * Debugger Breakpoint. 191 * @deprecated Use RT_BREAKPOINT instead. 192 * @internal 191 * @deprecated Use RT_BREAKPOINT instead. 192 * @internal 193 193 */ 194 194 #define ASMBreakpoint() RT_BREAKPOINT() … … 1937 1937 * between platforms or compilers, ordered. 1938 1938 * 1939 * @param pu Pointer to the variable to update.1939 * @param pu Pointer to the variable to read. 1940 1940 * @param puRes Where to store the result. 1941 1941 */ … … 2010 2010 * Atomically writes a signed 8-bit value, unordered. 2011 2011 * 2012 * @param pi8 Pointer to the 8-bit variable to read.2012 * @param pi8 Pointer to the 8-bit variable to write. 2013 2013 * @param i8 The 8-bit value to assign to *pi8. 2014 2014 */ … … 2022 2022 * Atomically writes an unsigned 16-bit value, ordered. 2023 2023 * 2024 * @param pu16 Pointer to the 16-bit variable .2024 * @param pu16 Pointer to the 16-bit variable to write. 2025 2025 * @param u16 The 16-bit value to assign to *pu16. 2026 2026 */ … … 2034 2034 * Atomically writes an unsigned 16-bit value, unordered. 2035 2035 * 2036 * @param pu16 Pointer to the 16-bit variable .2036 * @param pu16 Pointer to the 16-bit variable to write. 2037 2037 * @param u16 The 16-bit value to assign to *pu16. 2038 2038 */ … … 2047 2047 * Atomically writes a signed 16-bit value, ordered. 2048 2048 * 2049 * @param pi16 Pointer to the 16-bit variable to read.2049 * @param pi16 Pointer to the 16-bit variable to write. 2050 2050 * @param i16 The 16-bit value to assign to *pi16. 2051 2051 */ … … 2059 2059 * Atomically writes a signed 16-bit value, unordered. 2060 2060 * 2061 * @param pi16 Pointer to the 16-bit variable to read.2061 * @param pi16 Pointer to the 16-bit variable to write. 2062 2062 * @param i16 The 16-bit value to assign to *pi16. 2063 2063 */ … … 2072 2072 * Atomically writes an unsigned 32-bit value, ordered. 2073 2073 * 2074 * @param pu32 Pointer to the 32-bit variable .2074 * @param pu32 Pointer to the 32-bit variable to write. 2075 2075 * @param u32 The 32-bit value to assign to *pu32. 2076 2076 */ … … 2084 2084 * Atomically writes an unsigned 32-bit value, unordered. 2085 2085 * 2086 * @param pu32 Pointer to the 32-bit variable .2086 * @param pu32 Pointer to the 32-bit variable to write. 2087 2087 * @param u32 The 32-bit value to assign to *pu32. 2088 2088 */ … … 2097 2097 * Atomically writes a signed 32-bit value, ordered. 2098 2098 * 2099 * @param pi32 Pointer to the 32-bit variable to read.2099 * @param pi32 Pointer to the 32-bit variable to write. 2100 2100 * @param i32 The 32-bit value to assign to *pi32. 2101 2101 */ … … 2109 2109 * Atomically writes a signed 32-bit value, unordered. 2110 2110 * 2111 * @param pi32 Pointer to the 32-bit variable to read.2111 * @param pi32 Pointer to the 32-bit variable to write. 2112 2112 * @param i32 The 32-bit value to assign to *pi32. 2113 2113 */ … … 2122 2122 * Atomically writes an unsigned 64-bit value, ordered. 2123 2123 * 2124 * @param pu64 Pointer to the 64-bit variable .2124 * @param pu64 Pointer to the 64-bit variable to write. 2125 2125 * @param u64 The 64-bit value to assign to *pu64. 2126 2126 */ … … 2134 2134 * Atomically writes an unsigned 64-bit value, unordered. 2135 2135 * 2136 * @param pu64 Pointer to the 64-bit variable .2136 * @param pu64 Pointer to the 64-bit variable to write. 2137 2137 * @param u64 The 64-bit value to assign to *pu64. 2138 2138 */ … … 2151 2151 * Atomically writes a signed 64-bit value, ordered. 2152 2152 * 2153 * @param pi64 Pointer to the 64-bit variable .2153 * @param pi64 Pointer to the 64-bit variable to write. 2154 2154 * @param i64 The 64-bit value to assign to *pi64. 2155 2155 */ … … 2163 2163 * Atomically writes a signed 64-bit value, unordered. 2164 2164 * 2165 * @param pi64 Pointer to the 64-bit variable .2165 * @param pi64 Pointer to the 64-bit variable to write. 2166 2166 * @param i64 The 64-bit value to assign to *pi64. 2167 2167 */ … … 2180 2180 * Atomically writes a boolean value, unordered. 2181 2181 * 2182 * @param pf Pointer to the boolean variable .2182 * @param pf Pointer to the boolean variable to write. 2183 2183 * @param f The boolean value to assign to *pf. 2184 2184 */ … … 2192 2192 * Atomically writes a boolean value, unordered. 2193 2193 * 2194 * @param pf Pointer to the boolean variable .2194 * @param pf Pointer to the boolean variable to write. 2195 2195 * @param f The boolean value to assign to *pf. 2196 2196 */ … … 2204 2204 * Atomically writes a pointer value, ordered. 2205 2205 * 2206 * @param ppv Pointer to the pointer variable .2206 * @param ppv Pointer to the pointer variable to write. 2207 2207 * @param pv The pointer value to assign to *ppv. 2208 2208 */ … … 2222 2222 * Atomically writes a pointer value, ordered. 2223 2223 * 2224 * @param ppv Pointer to the pointer variable .2224 * @param ppv Pointer to the pointer variable to write. 2225 2225 * @param pv The pointer value to assign to *ppv. If NULL use 2226 2226 * ASMAtomicWriteNullPtr or you'll land in trouble.
Note:
See TracChangeset
for help on using the changeset viewer.