44
47
if ((readbytes= read(Filedes, Buffer, Count)) != Count)
46
49
my_errno= errno ? errno : -1;
50
DBUG_PRINT("warning",("Read only %d bytes off %lu from %d, errno: %d",
51
(int) readbytes, (ulong) Count, Filedes,
47
53
if ((readbytes == 0 || (int) readbytes == -1) && errno == EINTR)
49
57
continue; /* Interrupted */
51
59
if (MyFlags & (MY_WME | MY_FAE | MY_FNABP))