Changeset 21753 in vbox for trunk/include/iprt
- Timestamp:
- Jul 21, 2009 3:17:42 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50335
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r21742 r21753 406 406 /** The specified process was not found. */ 407 407 #define VERR_PROCESS_NOT_FOUND (-50) 408 /** The process specified to a non-block wait had not exit ted. */408 /** The process specified to a non-block wait had not exited. */ 409 409 #define VERR_PROCESS_RUNNING (-51) 410 410 /** Retry the operation. */ … … 416 416 /** Value out of range. */ 417 417 #define VERR_OUT_OF_RANGE (-54) 418 /** A numeric conver tion encountered a value which was too big for the target. */418 /** A numeric conversion encountered a value which was too big for the target. */ 419 419 #define VERR_NUMBER_TOO_BIG (-55) 420 /** A numeric conver tion encountered a value which was too big for the target. */420 /** A numeric conversion encountered a value which was too big for the target. */ 421 421 #define VWRN_NUMBER_TOO_BIG 55 422 422 /** The number begin converted (string) contained no digits. */ … … 424 424 /** The number begin converted (string) contained no digits. */ 425 425 #define VWRN_NO_DIGITS 56 426 /** Encountered a '-' during conver tion to an unsigned value. */426 /** Encountered a '-' during conversion to an unsigned value. */ 427 427 #define VERR_NEGATIVE_UNSIGNED (-57) 428 /** Encountered a '-' during conver tion to an unsigned value. */428 /** Encountered a '-' during conversion to an unsigned value. */ 429 429 #define VWRN_NEGATIVE_UNSIGNED 57 430 430 /** Error while characters translation (unicode and so). */ … … 494 494 /** End of string. */ 495 495 #define VINF_END_OF_STRING 83 496 /** A page count is ou fof range. */496 /** A page count is out of range. */ 497 497 #define VERR_PAGE_COUNT_OUT_OF_RANGE (-84) 498 498 /** Generic object destroyed status. */ … … 950 950 #define VERR_DBG_NO_SYMBOLS (-651) 951 951 /** The specified segment:offset address was invalid. Typically an attempt at 952 * addressing outside the segment bound rary. */952 * addressing outside the segment boundary. */ 953 953 #define VERR_DBG_INVALID_ADDRESS (-652) 954 954 /** Invalid segment index. */ … … 998 998 /** Invalid RT request type. 999 999 * For the RTReqAlloc() case, the caller just specified an illegal enmType. For 1000 * all the other occur ences it means indicates corruption, broken logic, or stupid1000 * all the other occurrences it means indicates corruption, broken logic, or stupid 1001 1001 * interface user. */ 1002 1002 #define VERR_RT_REQUEST_INVALID_TYPE (-700)
Note:
See TracChangeset
for help on using the changeset viewer.