Changeset 3c7702c0 in mainline
- Timestamp:
- 2018-01-04T20:13:42Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cde999a
- Parents:
- 0d0b319
- 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 20:13:42)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r0d0b319 r3c7702c0 93 93 endif 94 94 95 # `sed` pulls a list of "compatibility-only" error codes from `errno.in`, 96 # the following grep finds instances of those error codes in HelenOS code. 97 check_errno: 98 @ ! cat abi/include/abi/errno.in | \ 99 sed -n -e '1,/COMPAT_START/d' -e 's/__errno_entry(\([A-Z0-9]\+\).*/\\b\1\\b/p' | \ 100 git grep -n -f - -- ':(exclude)abi' ':(exclude)uspace/lib/posix' 101 95 102 # Autotool (detects compiler features) 96 103 -
abi/include/abi/errno.h
r0d0b319 r3c7702c0 57 57 */ 58 58 59 /* COMPAT_START -- do not remove or edit this comment */ 60 59 61 #define E2BIG __errno_t( 101) 60 62 #define EACCES __errno_t( 102) -
abi/include/abi/errno.in
r0d0b319 r3c7702c0 55 55 * move it up to the first group. 56 56 */ 57 58 /* COMPAT_START -- do not remove or edit this comment */ 57 59 58 60 __errno_entry(E2BIG , 101, "Argument list too long") -
uspace/srv/net/inetsrv/ntrans.c
r0d0b319 r3c7702c0 153 153 * 154 154 * @return EOK if woken up by another fibril 155 * @return ETIME DOUT if timed out155 * @return ETIMEOUT if timed out 156 156 * 157 157 */
Note:
See TracChangeset
for help on using the changeset viewer.