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:
authorCorinna Vinschen <corinna@vinschen.de>2002-07-24 15:01:37 +0400
committerCorinna Vinschen <corinna@vinschen.de>2002-07-24 15:01:37 +0400
commit0a73fce00ca7f208a5dcdd26d33be70d705fc276 (patch)
treea28fb1bb55de7201107bbe117521de2b445461de /winsup/cygwin/wincap.h
parent564c62b811d6f2b2aae821d141b2725e8e035dfa (diff)
* fhandler_serial.cc: Change 'must_init_serial_line capability'
to 'supports_reading_modem_output_lines' throughout (negated meaning). * wincap.cc: Ditto. * wincap.h: Ditto.
Diffstat (limited to 'winsup/cygwin/wincap.h')
-rw-r--r--winsup/cygwin/wincap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/wincap.h b/winsup/cygwin/wincap.h
index c2a4af872..c24b36ae5 100644
--- a/winsup/cygwin/wincap.h
+++ b/winsup/cygwin/wincap.h
@@ -47,7 +47,7 @@ struct wincaps
unsigned has_valid_processorlevel : 1;
unsigned has_64bit_file_access : 1;
unsigned has_process_io_counters : 1;
- unsigned must_init_serial_line : 1;
+ unsigned supports_reading_modem_output_lines : 1;
};
class wincapc
@@ -99,7 +99,7 @@ public:
bool IMPLEMENT (has_valid_processorlevel)
bool IMPLEMENT (has_64bit_file_access)
bool IMPLEMENT (has_process_io_counters)
- bool IMPLEMENT (must_init_serial_line)
+ bool IMPLEMENT (supports_reading_modem_output_lines)
#undef IMPLEMENT
};