]> sourceware.org Git - newlib-cygwin.git/commitdiff
* fhandler.h (fhandler_base::get_r_no_interrupt): Make virtual.
authorChristopher Faylor <me@cgf.cx>
Wed, 31 Jul 2002 00:26:36 +0000 (00:26 +0000)
committerChristopher Faylor <me@cgf.cx>
Wed, 31 Jul 2002 00:26:36 +0000 (00:26 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/fhandler.h

index 8114f834ce053153ca98a6cda4d845f502454e40..5a756797ee9f39bc12b2500c2792144932d9e2a2 100644 (file)
@@ -1,3 +1,7 @@
+2002-07-30  Christopher Faylor  <cgf@redhat.com>
+
+       * fhandler.h (fhandler_base::get_r_no_interrupt): Make virtual.
+
 2002-07-30  Christopher Faylor  <cgf@redhat.com>
 
        * fhandler_disk_file.cc (fhandler_cygdrive::set_drives): Incorporate .
index 17390bdc3e8e551061e126a553a463baf2433366..a4eae4ff462935885d338baaf29e9d454cddf2b1 100644 (file)
@@ -209,7 +209,7 @@ class fhandler_base
 
   int get_default_fmode (int flags);
 
-  bool get_r_no_interrupt () { return FHISSETF (NOEINTR); }
+  virtual bool get_r_no_interrupt () { return FHISSETF (NOEINTR); }
   void set_r_no_interrupt (int b) { FHCONDSETF (b, NOEINTR); }
 
   bool get_close_on_exec () { return FHISSETF (CLOEXEC); }
This page took 0.035339 seconds and 5 git commands to generate.