bnicholes 01/10/17 15:47:17
Modified: file_io/netware pipe.c
Log:
Implemented two functions for NetWare
Revision Changes Path
1.2 +0 -4 apr/file_io/netware/pipe.c
Index: pipe.c
===================================================================
RCS file: /home/cvs/apr/file_io/netware/pipe.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pipe.c 2001/10/04 00:01:09 1.1
+++ pipe.c 2001/10/17 22:47:17 1.2
@@ -77,13 +77,11 @@
int err;
unsigned long flags;
-#ifdef TBD
if (!(err = NXGetCtlInfo(thepipe->filedes, NX_CTL_FLAGS, &flags)))
{
flags &= ~NX_O_NONBLOCK;
err = NXSetCtlInfo(thepipe->filedes, NX_CTL_FLAGS, flags);
}
-#endif
if (err)
return convert_error (err);
@@ -97,13 +95,11 @@
int err;
unsigned long flags;
-#ifdef TBD
if (!(err = NXGetCtlInfo(thepipe->filedes, NX_CTL_FLAGS, &flags)))
{
flags |= NX_O_NONBLOCK;
err = NXSetCtlInfo(thepipe->filedes, NX_CTL_FLAGS, flags);
}
-#endif
if (err)
return convert_error (err);
|