Changeset 2516 for branches/libc-0.6/src
- Timestamp:
- Feb 4, 2006, 1:26:03 PM (20 years ago)
- Location:
- branches/libc-0.6/src/emx
- Files:
-
- 3 edited
-
ChangeLog.LIBC (modified) (1 diff)
-
src/libsocket/recvfrom.c (modified) (2 diffs)
-
src/libsocket/recvmsg.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/emx/ChangeLog.LIBC
r2515 r2516 4 4 5 5 2006-02-04: knut st. osmundsen <[email protected]> 6 7 6 8 - libc: 7 9 o #32: Fixed incorrect readdir_r return code when out of files. -
branches/libc-0.6/src/emx/src/libsocket/recvfrom.c
r1517 r2516 30 30 #include "libc-alias.h" 31 31 #include <errno.h> 32 32 33 #include <sys/socket.h> 33 34 #include <sys/fcntl.h> … … 47 48 rc = __libsocket_recvfrom(pFHSocket->iSocket, buf, len, flags, from, fromlen); 48 49 if (rc >= 0) 50 51 52 53 54 55 56 57 58 59 60 49 61 LIBCLOG_RETURN_INT(rc); 62 50 63 __libc_TcpipUpdateErrno(); 51 64 } -
branches/libc-0.6/src/emx/src/libsocket/recvmsg.c
r1454 r2516 31 31 #include <errno.h> 32 32 #include <sys/socket.h> 33 33 34 #include <sys/fcntl.h> 34 35 #include <emx/io.h> … … 46 47 rc = __libsocket_recvmsg(pFHSocket->iSocket, msg, flags); 47 48 if (rc >= 0) 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 48 68 LIBCLOG_RETURN_INT(rc); 69 49 70 __libc_TcpipUpdateErrno(); 50 71 }
Note:
See TracChangeset
for help on using the changeset viewer.
