From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Boris V. Guzhov" To: Subject: [ECOS] Bug in read/write in the io.cxx file Date: Mon, 14 May 2001 23:39:00 -0000 Message-id: <00f101c0dd08$204df270$7601a8c0@borg> References: <003801c0dc15$87d549a0$592da8c0@start.com.cn> <3B001EE3.893099C7@redhat.com> X-SW-Source: 2001-05/msg00216.html The readwrite() function in the io/fileio/current/src/io.cxx file never returns any error code from op() function. I think that it's necessary to add some lines in readwrite() function:: .... if ( ret != ENOERR ) // two new lines FILEIO_RETURN(ret); CYG_REPORT_RETVAL(cnt); return cnt; } That's right? -- Boris Guzhov, St.Petersburg, Russia