Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-07-31 04:26:36 +0400
committerChristopher Faylor <me@cgf.cx>2002-07-31 04:26:36 +0400
commitc91a9a9b5831695aef2068b59f1f2bbfface32c9 (patch)
tree16843c97456fdd0f25876a0ca3435863c4a43d88 /winsup/cygwin
parentba90cf002fe42419dd3f59290b20b0ad1b18f924 (diff)
* fhandler.h (fhandler_base::get_r_no_interrupt): Make virtual.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/fhandler.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 8114f834c..5a756797e 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,9 @@
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 .
and .. processing here.
(fhandler_cygdrive::readdir): Assume . and .. are already in pdrive.
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h
index 17390bdc3..a4eae4ff4 100644
--- a/winsup/cygwin/fhandler.h
+++ b/winsup/cygwin/fhandler.h
@@ -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); }