- Timestamp:
- Mar 22, 2012, 1:19:05 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libc/src/kNIX/os2/fhOS2File.c
r3770 r3776 161 161 rc = DosWrite(pFH->hNative, pvBuf, cbToWrite, &cbActuallyWritten); 162 162 163 164 163 /* deal with the return code. */ 165 164 if (!rc) … … 169 168 } 170 169 *pcbWritten = 0; 170 if (rc == ERROR_PIPE_NOT_CONNECTED) 171 LIBCLOG_RETURN_MSG(0, "ret 0 *pcbWritten=0 [pipe-disconnect]\n"); 171 172 if (rc > 0) 172 173 rc = -__libc_back_native2errno(rc);
Note:
See TracChangeset
for help on using the changeset viewer.