summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/FSlibInt.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/FSlibInt.c b/src/FSlibInt.c
index 47a4ded..6b0a971 100644
--- a/src/FSlibInt.c
+++ b/src/FSlibInt.c
@@ -151,11 +151,6 @@ _FSFlush(register FSServer *svr)
bufindex += write_stat;
} else if (ETEST()) {
_FSWaitForWritable(svr);
-#ifdef SUNSYSV
- } else if (ECHECK(0)) {
- _FSWaitForWritable(svr);
-#endif
-
#ifdef EMSGSIZE
} else if (ECHECK(EMSGSIZE)) {
if (todo > 1)
@@ -259,12 +254,6 @@ _FSRead(
_FSWaitForReadable(svr);
ESET(0);
}
-#ifdef SUNSYSV
- else if (ECHECK(0)) {
- _FSWaitForReadable(svr);
- }
-#endif
-
else if (bytes_read == 0) {
/* Read failed because of end of file! */
ESET(EPIPE);
@@ -326,12 +315,6 @@ _FSReadPad(
_FSWaitForReadable(svr);
ESET(0);
}
-#ifdef SUNSYSV
- else if (ECHECK(0)) {
- _FSWaitForReadable(svr);
- }
-#endif
-
else if (bytes_read == 0) {
/* Read failed because of end of file! */
ESET(EPIPE);
@@ -417,11 +400,6 @@ _FSSend(
todo = total;
} else if (ETEST()) {
_FSWaitForWritable(svr);
-#ifdef SUNSYSV
- } else if (ECHECK(0)) {
- _FSWaitForWritable(svr);
-#endif
-
#ifdef EMSGSIZE
} else if (ECHECK(EMSGSIZE)) {
if (todo > 1)