Ignore:
Timestamp:
2015-06-13T18:30:18Z (9 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a157846
Parents:
0453261 (diff), 2f9a8e8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/include/posix/errno.h

    r0453261 ree1c2d9  
    6969extern int *__posix_errno(void);
    7070
    71 #define __TOP_ERRNO (-NO_DATA)
     71#define __TOP_ERRNO (-EAGAIN)
    7272
    7373enum {
    7474        POSIX_E2BIG = __TOP_ERRNO + 1,
    7575        POSIX_EACCES = __TOP_ERRNO + 2,
    76         POSIX_EADDRINUSE = -EADDRINUSE,
    7776        POSIX_EADDRNOTAVAIL = -EADDRNOTAVAIL,
    78         POSIX_EAFNOSUPPORT = -EAFNOSUPPORT,
    7977        POSIX_EAGAIN = -EAGAIN,
    8078        POSIX_EALREADY = __TOP_ERRNO + 3,
     
    8886        POSIX_ECONNRESET = __TOP_ERRNO + 9,
    8987        POSIX_EDEADLK = __TOP_ERRNO + 10,
    90         POSIX_EDESTADDRREQ = -EDESTADDRREQ,
    9188        POSIX_EDOM = __TOP_ERRNO + 11,
    9289        POSIX_EDQUOT = __TOP_ERRNO + 12,
     
    9794        POSIX_EIDRM = __TOP_ERRNO + 16,
    9895        POSIX_EILSEQ = __TOP_ERRNO + 17,
    99         POSIX_EINPROGRESS = -EINPROGRESS,
    10096        POSIX_EINTR = -EINTR,
    10197        POSIX_EINVAL = -EINVAL,
     
    114110        POSIX_ENFILE = __TOP_ERRNO + 25,
    115111        POSIX_ENOBUFS = __TOP_ERRNO + 26,
    116         POSIX_ENODATA = -NO_DATA,
    117112        POSIX_ENODEV = __TOP_ERRNO + 27,
    118113        POSIX_ENOENT = -ENOENT,
     
    127122        POSIX_ENOSTR = __TOP_ERRNO + 34,
    128123        POSIX_ENOSYS = __TOP_ERRNO + 35,
    129         POSIX_ENOTCONN = -ENOTCONN,
    130124        POSIX_ENOTDIR = -ENOTDIR,
    131125        POSIX_ENOTEMPTY = -ENOTEMPTY,
    132126        POSIX_ENOTRECOVERABLE = __TOP_ERRNO + 36,
    133         POSIX_ENOTSOCK = -ENOTSOCK,
    134127        POSIX_ENOTSUP = -ENOTSUP,
    135128        POSIX_ENOTTY = __TOP_ERRNO + 37,
     
    141134        POSIX_EPIPE = __TOP_ERRNO + 41,
    142135        POSIX_EPROTO = __TOP_ERRNO + 42,
    143         POSIX_EPROTONOSUPPORT = -EPROTONOSUPPORT,
    144136        POSIX_EPROTOTYPE = __TOP_ERRNO + 43,
    145137        POSIX_ERANGE = -ERANGE,
     
    153145        POSIX_EWOULDBLOCK = __TOP_ERRNO + 51,
    154146        POSIX_EXDEV = -EXDEV,
     147        POSIX_EINPROGRESS = __TOP_ERRNO + 52,
     148        POSIX_ENOTSOCK = __TOP_ERRNO + 53,
     149        POSIX_EDESTADDRREQ = __TOP_ERRNO + 54,
     150        POSIX_EPROTONOSUPPORT = __TOP_ERRNO + 55,
     151        POSIX_EAFNOSUPPORT = __TOP_ERRNO + 56,
     152        POSIX_EADDRINUSE = __TOP_ERRNO + 57,
     153        POSIX_ENOTCONN = __TOP_ERRNO + 58,
     154        POSIX_ENODATA = __TOP_ERRNO + 59,
    155155};
    156156
Note: See TracChangeset for help on using the changeset viewer.