- Timestamp:
 - Nov 13, 2005, 12:50:29 PM (20 years ago)
 - Location:
 - trunk/src/emx
 - Files:
 - 
      
- 6 edited
 
- 
          
  ChangeLog.LIBC (modified) (1 diff)
 - 
          
  src/lib/sys/__chmod.c (modified) (1 diff)
 - 
          
  src/lib/sys/__dup.c (modified) (1 diff)
 - 
          
  src/lib/sys/__dup2.c (modified) (2 diffs)
 - 
          
  src/lib/sys/__read.c (modified) (1 diff)
 - 
          
  src/lib/sys/__write.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/emx/ChangeLog.LIBC
r2436 r2437 8 8 Kudos to Yuri for tracking down the places which required attention. 9 9 - libc: 10 o Fixed a generic error handling bug in ioctl, write, read, dup and dup 11 which was causing incorrect errnos. 12 o Changed line buffer from 512 to 8192 bytes in _response(). 10 13 o Corrected shmat to return -1 instead of NULL on failure. 11 14 o Fixed bug in the sigsuspend (includes pause ++) handling,  - 
      
trunk/src/emx/src/lib/sys/__chmod.c
r2436 r2437 21 21 { 22 22 LIBCLOG_ENTER("pszPath=%s flag=%#x attr=%#x\n", pszPath, flag, attr); 23 ULONGrc;23 int rc; 24 24 int cch; 25 25 FILESTATUS3 info;  - 
      
trunk/src/emx/src/lib/sys/__dup.c
r2436 r2437 20 20 PLIBCFH pFH; 21 21 int fhNew; 22 ULONGrc;22 int rc; 23 23 24 24 /*  - 
      
trunk/src/emx/src/lib/sys/__dup2.c
r2436 r2437 20 20 PLIBCFH pFH; 21 21 PLIBCFH pFHNew; 22 ULONGrc;22 int rc; 23 23 24 24 /* … … 130 130 return fhNew; 131 131 } 132  - 
      
trunk/src/emx/src/lib/sys/__read.c
r2436 r2437 18 18 int __read (int handle, void *buf, size_t cbToRead) 19 19 { 20 ULONGrc;20 int rc; 21 21 PLIBCFH pFH; 22 22 ULONG cbRead;  - 
      
trunk/src/emx/src/lib/sys/__write.c
r2436 r2437 19 19 { 20 20 PLIBCFH pFH; 21 ULONGrc;21 int rc; 22 22 ULONG cbWritten; 23 23 FS_VAR();  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  