Changeset 60070 in vbox
- Timestamp:
- Mar 17, 2016 8:15:04 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/assert.h
r60065 r60070 1003 1003 1004 1004 /** @def AssertFailed 1005 * An assertion failed hit breakpoint.1005 * An assertion failed, hit breakpoint. 1006 1006 */ 1007 1007 #ifdef RT_STRICT … … 1016 1016 1017 1017 /** @def AssertFailedStmt 1018 * An assertion failed hit breakpoint and execute statement.1018 * An assertion failed, hit breakpoint and execute statement. 1019 1019 */ 1020 1020 #ifdef RT_STRICT … … 2205 2205 2206 2206 /** @def AssertMsgRCStmt 2207 * Asserts a iprt status code successful and if it's not execute @a stmt. 2208 * 2209 * If RT_STRICT is defined the message will be printed and a breakpoint hit before it is executed 2207 * Asserts a iprt status code successful, bitch (RT_STRICT mode only) and 2208 * execute @a stmt if it isn't. 2210 2209 * 2211 2210 * @param rc iprt status code. … … 2219 2218 2220 2219 /** @def AssertMsgRCReturn 2221 * Asserts a iprt status code successful and if it's not return the specified status code. 2222 * 2223 * If RT_STRICT is defined the message will be printed and a breakpoint hit before it returns 2220 * Asserts a iprt status code successful, bitch (RT_STRICT mode only) and return 2221 * @a rcRet if it isn't. 2224 2222 * 2225 2223 * @param rc iprt status code. … … 2232 2230 2233 2231 /** @def AssertMsgRCReturnStmt 2234 * Asserts a iprt status code successful and if it's not execute @a stmt and 2235 * return the specified status code (@a rcRet). 2236 * 2237 * If RT_STRICT is defined the message will be printed and a breakpoint hit before it returns 2232 * Asserts a iprt status code successful, bitch (RT_STRICT mode only), execute 2233 * @a stmt and return @a rcRet if it isn't. 2238 2234 * 2239 2235 * @param rc iprt status code. … … 2248 2244 2249 2245 /** @def AssertMsgRCReturnVoid 2250 * Asserts a iprt status code successful and if it's not return. 2251 * 2252 * If RT_STRICT is defined the message will be printed and a breakpoint hit before it returns 2246 * Asserts a iprt status code successful, bitch (RT_STRICT mode only) and return 2247 * void if it isn't. 2253 2248 * 2254 2249 * @param rc iprt status code. … … 2260 2255 2261 2256 /** @def AssertMsgRCReturnVoidStmt 2262 * Asserts a iprt status code successful and execute statement/break if it's not. 2263 * 2264 * If RT_STRICT is defined the message will be printed and a breakpoint hit before it returns 2257 * Asserts a iprt status code successful, bitch (RT_STRICT mode only), execute 2258 * @a stmt and return void if it isn't. 2265 2259 * 2266 2260 * @param rc iprt status code. … … 2273 2267 2274 2268 /** @def AssertMsgRCBreak 2275 * Asserts a iprt status code successful and if it's not break. 2276 * 2277 * If RT_STRICT is defined the message will be printed and a breakpoint hit before it breaks 2269 * Asserts a iprt status code successful, bitch (RT_STRICT mode only) and break 2270 * if it isn't. 2278 2271 * 2279 2272 * @param rc iprt status code. … … 2285 2278 2286 2279 /** @def AssertMsgRCBreakStmt 2287 * Asserts a iprt status code successful and execute statement/break if it's not. 2288 * 2289 * If RT_STRICT is defined the message will be printed and a breakpoint hit before it returns 2280 * Asserts a iprt status code successful, bitch (RT_STRICT mode only), execute 2281 * @a stmt and break if it isn't. 2290 2282 * 2291 2283 * @param rc iprt status code.
Note:
See TracChangeset
for help on using the changeset viewer.