Changeset 3e01316f in mainline for uspace/lib/posix/errno.h


Ignore:
Timestamp:
2011-08-17T18:04:50Z (13 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0cf27ee
Parents:
e898296d (diff), e6165be (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:

Merge libposix.

File:
1 edited

Legend:

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

    re898296d r3e01316f  
    135135        POSIX_ENOTTY = __TOP_ERRNO + 37,
    136136        POSIX_ENXIO = __TOP_ERRNO + 38,
    137         POSIX_EOPNOTSUPP = POSIX_ENOTSUP,
     137        POSIX_EOPNOTSUPP = __TOP_ERRNO + 39,
    138138        POSIX_EOVERFLOW = -EOVERFLOW,
    139         POSIX_EOWNERDEAD = __TOP_ERRNO + 39,
     139        POSIX_EOWNERDEAD = __TOP_ERRNO + 40,
    140140        POSIX_EPERM = -EPERM,
    141         POSIX_EPIPE = __TOP_ERRNO + 40,
    142         POSIX_EPROTO = __TOP_ERRNO + 41,
     141        POSIX_EPIPE = __TOP_ERRNO + 41,
     142        POSIX_EPROTO = __TOP_ERRNO + 42,
    143143        POSIX_EPROTONOSUPPORT = -EPROTONOSUPPORT,
    144         POSIX_EPROTOTYPE = __TOP_ERRNO + 42,
     144        POSIX_EPROTOTYPE = __TOP_ERRNO + 43,
    145145        POSIX_ERANGE = -ERANGE,
    146         POSIX_EROFS = __TOP_ERRNO + 43,
    147         POSIX_ESPIPE = __TOP_ERRNO + 44,
    148         POSIX_ESRCH = __TOP_ERRNO + 45,
    149         POSIX_ESTALE = __TOP_ERRNO + 46,
    150         POSIX_ETIME = __TOP_ERRNO + 47,
    151         POSIX_ETIMEDOUT = __TOP_ERRNO + 48,
    152         POSIX_ETXTBSY = __TOP_ERRNO + 49,
    153         POSIX_EWOULDBLOCK = POSIX_EAGAIN,
     146        POSIX_EROFS = __TOP_ERRNO + 44,
     147        POSIX_ESPIPE = __TOP_ERRNO + 45,
     148        POSIX_ESRCH = __TOP_ERRNO + 46,
     149        POSIX_ESTALE = __TOP_ERRNO + 47,
     150        POSIX_ETIME = __TOP_ERRNO + 48,
     151        POSIX_ETIMEDOUT = __TOP_ERRNO + 49,
     152        POSIX_ETXTBSY = __TOP_ERRNO + 50,
     153        POSIX_EWOULDBLOCK = __TOP_ERRNO + 51,
    154154        POSIX_EXDEV = -EXDEV,
    155155};
Note: See TracChangeset for help on using the changeset viewer.