* fhandler.h (fhandler_base::get_r_no_interrupt): Make virtual.

This commit is contained in:
Christopher Faylor 2002-07-31 00:26:36 +00:00
parent ba90cf002f
commit c91a9a9b58
2 changed files with 5 additions and 1 deletions

View 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 .

View 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); }