summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-17 14:27:51 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-17 14:27:51 -0800
commitda752ff83971df2648ddd0293f802f41bafa16d1 (patch)
treed7d226549b87197e796727a83fe936dc089a01a5
parenta8a4c727d27fc83f55c8d2a3a8a41721e2843cae (diff)
unifdef SUNSYSVHEADmaster
This wasn't actually defined on Solaris, so I don't know what this was for. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-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)