VirtualBox

Changeset 55161 in vbox for trunk/include/iprt/err.h


Ignore:
Timestamp:
Apr 9, 2015 1:10:07 PM (10 years ago)
Author:
vboxsync
Message:

iprt/err.h: Redid r99228 as shifting status code is risky wrt additions, so we don't do that.

File:
1 edited

Legend:

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

    r54970 r55161  
    10171017/** Not all requests could be submitted due to resource shortage. */
    10181018#define VERR_FILE_AIO_INSUFFICIENT_RESSOURCES (-137)
     1019/** Device or resource is busy. */
     1020#define VERR_RESOURCE_BUSY                  (-138)
     1021/** A file operation was attempted on a non-file object. */
     1022#define VERR_NOT_A_FILE                     (-139)
     1023/** A non-file operation was attempted on a file object. */
     1024#define VERR_IS_A_FILE                      (-140)
     1025/** Unexpected filesystem object type. */
     1026#define VERR_UNEXPECTED_FS_OBJ_TYPE         (-141)
     1027/** A path does not start with a root specification. */
     1028#define VERR_PATH_DOES_NOT_START_WITH_ROOT  (-142)
     1029/** A path is relative, expected an absolute path. */
     1030#define VERR_PATH_IS_RELATIVE               (-143)
     1031/** A path is not relative (start with root), expected an relative path. */
     1032#define VERR_PATH_IS_NOT_RELATIVE           (-144)
     1033/** Zero length path. */
     1034#define VERR_PATH_ZERO_LENGTH               (-145)
    10191035/** There are not enough events available on the host to create the I/O context.
    10201036 * This exact meaning is host platform dependent. */
    1021 #define VERR_FILE_AIO_INSUFFICIENT_EVENTS   (-138)
    1022 /** Device or resource is busy. */
    1023 #define VERR_RESOURCE_BUSY                  (-139)
    1024 /** A file operation was attempted on a non-file object. */
    1025 #define VERR_NOT_A_FILE                     (-140)
    1026 /** A non-file operation was attempted on a file object. */
    1027 #define VERR_IS_A_FILE                      (-141)
    1028 /** Unexpected filesystem object type. */
    1029 #define VERR_UNEXPECTED_FS_OBJ_TYPE         (-142)
    1030 /** A path does not start with a root specification. */
    1031 #define VERR_PATH_DOES_NOT_START_WITH_ROOT  (-143)
    1032 /** A path is relative, expected an absolute path. */
    1033 #define VERR_PATH_IS_RELATIVE               (-144)
    1034 /** A path is not relative (start with root), expected an relative path. */
    1035 #define VERR_PATH_IS_NOT_RELATIVE           (-145)
    1036 /** Zero length path. */
    1037 #define VERR_PATH_ZERO_LENGTH               (-146)
     1037#define VERR_FILE_AIO_INSUFFICIENT_EVENTS   (-146)
    10381038/** @} */
    10391039
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