VirtualBox

Changeset 54970 in vbox for trunk/include


Ignore:
Timestamp:
Mar 26, 2015 3:57:35 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
99228
Message:

AsyncCompletion: Better error message if I/O manager could not be created due to insufficient host limits

File:
1 edited

Legend:

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

    r54408 r54970  
    10171017/** Not all requests could be submitted due to resource shortage. */
    10181018#define VERR_FILE_AIO_INSUFFICIENT_RESSOURCES (-137)
     1019/** There are not enough events available on the host to create the I/O context.
     1020 * This exact meaning is host platform dependent. */
     1021#define VERR_FILE_AIO_INSUFFICIENT_EVENTS   (-138)
    10191022/** Device or resource is busy. */
    1020 #define VERR_RESOURCE_BUSY                  (-138)
     1023#define VERR_RESOURCE_BUSY                  (-139)
    10211024/** A file operation was attempted on a non-file object. */
    1022 #define VERR_NOT_A_FILE                     (-139)
     1025#define VERR_NOT_A_FILE                     (-140)
    10231026/** A non-file operation was attempted on a file object. */
    1024 #define VERR_IS_A_FILE                      (-140)
     1027#define VERR_IS_A_FILE                      (-141)
    10251028/** Unexpected filesystem object type. */
    1026 #define VERR_UNEXPECTED_FS_OBJ_TYPE         (-141)
     1029#define VERR_UNEXPECTED_FS_OBJ_TYPE         (-142)
    10271030/** A path does not start with a root specification. */
    1028 #define VERR_PATH_DOES_NOT_START_WITH_ROOT  (-142)
     1031#define VERR_PATH_DOES_NOT_START_WITH_ROOT  (-143)
    10291032/** A path is relative, expected an absolute path. */
    1030 #define VERR_PATH_IS_RELATIVE               (-143)
     1033#define VERR_PATH_IS_RELATIVE               (-144)
    10311034/** A path is not relative (start with root), expected an relative path. */
    1032 #define VERR_PATH_IS_NOT_RELATIVE           (-144)
     1035#define VERR_PATH_IS_NOT_RELATIVE           (-145)
    10331036/** Zero length path. */
    1034 #define VERR_PATH_ZERO_LENGTH               (-145)
     1037#define VERR_PATH_ZERO_LENGTH               (-146)
    10351038/** @} */
    10361039
Note: See TracChangeset for help on using the changeset viewer.

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