--- pth_high.c 2001/07/30 18:45:07 1.78
+++ pth_high.c 2001/07/30 18:47:28 1.79
@@ -910,7 +910,7 @@
}
}
- /* Now perform the actual write operation */
+ /* now perform the actual write operation */
#if PTH_FAKE_RWV
while ((s = pth_writev_faked(fd, liov, liovcnt)) < 0
&& errno == EINTR) ;
@@ -940,7 +940,7 @@
}
}
else {
- /* Now perform the actual write operation */
+ /* just perform the actual write operation */
#if PTH_FAKE_RWV
while ((rv = pth_writev_faked(fd, iov, iovcnt)) < 0
&& errno == EINTR) ;
@@ -1179,7 +1179,7 @@
}
}
- /* Now perform the actual read. We're now guarrantied to not block,
+ /* now perform the actual read. We're now guarrantied to not block,
either because we were already in non-blocking mode or we determined
above by polling that the next recvfrom(2) call will not block. But keep
in mind, that only 1 next recvfrom(2) call is guarrantied to not block
@@ -1287,7 +1287,7 @@
}
}
else {
- /* Now perform the actual send operation */
+ /* just perform the actual send operation */
while ((rv = pth_sc(sendto)(fd, buf, nbytes, flags, to, tolen)) < 0
&& errno == EINTR) ;
}
|