*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Wed, 18 Feb 1998 17:41:39 +0100
changeset 3292 5f0bc487b34c
parent 3291 3d3ad445d491
child 3293 3f52fbf6b94c
*** empty log message ***
Unix.st
--- a/Unix.st	Wed Feb 18 17:33:16 1998 +0100
+++ b/Unix.st	Wed Feb 18 17:41:39 1998 +0100
@@ -9882,6 +9882,7 @@
      This depends on a working select or FIONREAD to be provided by the OS."
 
 %{
+#ifdef NOTDEF	/* does not work ... */
     /*
      * if available, try FIONREAD first, which is usually done faster.
      */
@@ -9896,9 +9897,10 @@
 	}
     }
 # endif /* FIONREAD */
-
-# ifdef __VMS__
-#  ifdef DOES_NOT_WORK_YET
+#endif
+
+#ifdef __VMS__
+# ifdef DOES_NOT_WORK_YET
     {
 	/*
 	 * do a sys$qio ..
@@ -9927,8 +9929,8 @@
 	    }
 	}
     }
-#  endif
-# endif /* __VMS__ */
+# endif
+#endif /* __VMS__ */
 %}.
 
     self supportsSelect ifFalse:[
@@ -10626,6 +10628,6 @@
 !OperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Unix.st,v 1.279 1998-02-18 16:33:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Unix.st,v 1.280 1998-02-18 16:41:39 cg Exp $'
 ! !
 OperatingSystem initialize!