Changeset 10de842 in mainline for abi/include/abi/errno.in


Ignore:
Timestamp:
2018-01-04T19:28:42Z (6 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:
0d0b319
Parents:
db3089d
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 19:18:29)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 19:28:42)
Message:

Change the way errno_t is defined, and put libhttp and libext4 error codes in <errno.h>.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • abi/include/abi/errno.in

    rdb3089d r10de842  
    3535__errno_entry(EEMPTY         ,   -302, "Resource is empty")
    3636__errno_entry(ENAK           ,   -303, "Negative acknowledgement")
    37 __errno_entry(EAGAIN         , -11002, "Operation could not proceed. Try again.")
     37__errno_entry(EAGAIN         , -11002, "Operation could not proceed, try again")
     38
     39__errno_entry(HTTP_EMULTIPLE_HEADERS , -20001, "HTTP: Multiple headers")  // libhttp error codes. Defining them here is a temporary hack.
     40__errno_entry(HTTP_EMISSING_HEADER   , -20002, "HTTP: Missing header")
     41__errno_entry(HTTP_EPARSE            , -20003, "HTTP: Parse error")
     42
     43__errno_entry(EXT4_ERR_BAD_DX_DIR    , -75000, "EXT4: Filesystem corrupted")  // libext4
Note: See TracChangeset for help on using the changeset viewer.