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>2007-02-23 13:51:59 +0300
committerCorinna Vinschen <corinna@vinschen.de>2007-02-23 13:51:59 +0300
commitaaee2ffaed818ccaf248b4097a3b7c7bfa4ea82a (patch)
treede45285730967b7e6bad23073b76ae2506c3e453 /winsup/cygwin/wincap.h
parent0ed760d75e34775d5de25ac52cbcc5b5dd18ed15 (diff)
* exceptions.cc (dummy_ctrl_c_handler): Remove.
(init_console_handler): Drop has_null_console_handler_routine checks. * fhandler_raw.cc (fhandler_dev_raw::open): Drop has_raw_devices check. * fhandler_serial.cc (fhandler_serial::open): Drop .supports_reading_modem_output_lines check. * miscfuncs.cc (low_priority_sleep): Drop has_switch_to_thread check. * shared.cc (open_shared): Drop needs_memory_protection checks. * spawn.cc (spawn_guts): Drop start_proc_suspended check. * uname.cc (uname): Drop has_valid_processorlevel check. * wincap.cc: Remove has_raw_devices, has_valid_processorlevel, supports_reading_modem_output_lines, needs_memory_protection, has_switch_to_thread, start_proc_suspended and has_null_console_handler_routine throughout. * wincap.h: Ditto.
Diffstat (limited to 'winsup/cygwin/wincap.h')
-rw-r--r--winsup/cygwin/wincap.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/winsup/cygwin/wincap.h b/winsup/cygwin/wincap.h
index f4e64a09e..080ce420f 100644
--- a/winsup/cygwin/wincap.h
+++ b/winsup/cygwin/wincap.h
@@ -22,19 +22,12 @@ struct wincaps
unsigned has_physical_mem_access : 1;
unsigned has_move_file_ex : 1;
unsigned has_unreliable_pipes : 1;
- unsigned has_raw_devices : 1;
- unsigned has_valid_processorlevel : 1;
unsigned has_process_io_counters : 1;
- unsigned supports_reading_modem_output_lines : 1;
- unsigned needs_memory_protection : 1;
unsigned pty_needs_alloc_console : 1;
unsigned has_terminal_services : 1;
- unsigned has_switch_to_thread : 1;
unsigned has_ioctl_storage_get_media_types_ex : 1;
- unsigned start_proc_suspended : 1;
unsigned has_extended_priority_class : 1;
unsigned has_guid_volumes : 1;
- unsigned has_null_console_handler_routine : 1;
unsigned has_disk_ex_ioctls : 1;
unsigned has_disabled_user_tos_setting : 1;
unsigned has_fileid_dirinfo : 1;
@@ -75,19 +68,12 @@ public:
bool IMPLEMENT (has_physical_mem_access)
bool IMPLEMENT (has_move_file_ex)
bool IMPLEMENT (has_unreliable_pipes)
- bool IMPLEMENT (has_raw_devices)
- bool IMPLEMENT (has_valid_processorlevel)
bool IMPLEMENT (has_process_io_counters)
- bool IMPLEMENT (supports_reading_modem_output_lines)
- bool IMPLEMENT (needs_memory_protection)
bool IMPLEMENT (pty_needs_alloc_console)
bool IMPLEMENT (has_terminal_services)
- bool IMPLEMENT (has_switch_to_thread)
bool IMPLEMENT (has_ioctl_storage_get_media_types_ex)
- bool IMPLEMENT (start_proc_suspended)
bool IMPLEMENT (has_extended_priority_class)
bool IMPLEMENT (has_guid_volumes)
- bool IMPLEMENT (has_null_console_handler_routine)
bool IMPLEMENT (has_disk_ex_ioctls)
bool IMPLEMENT (has_disabled_user_tos_setting)
bool IMPLEMENT (has_fileid_dirinfo)