diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-02-23 12:01:52 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-02-23 12:01:52 +0000 |
commit | b5cb5c9e642a3b868024345fd31c71052e4b0932 (patch) | |
tree | 72af33d4f99d1eb61cdf0cbc38445de436026f8f /winsup/cygwin/wincap.cc | |
parent | 7131554a692a675bfff2d95f224c54dfdb88686c (diff) | |
download | cygnal-b5cb5c9e642a3b868024345fd31c71052e4b0932.tar.gz cygnal-b5cb5c9e642a3b868024345fd31c71052e4b0932.tar.bz2 cygnal-b5cb5c9e642a3b868024345fd31c71052e4b0932.zip |
* fhandler_console.cc (fhandler_console::need_invisible): Drop
pty_needs_alloc_console check.
* spawn.cc (spawn_guts): Ditto.
(av::fixup): Remove setting iscui.
* syscalls.cc (rename): Drop has_move_file_ex checks. Remove 9x
specific code.
* wincap.cc: Remove has_move_file_ex and pty_needs_alloc_console
throughout.
* wincap.h: Ditto.
Diffstat (limited to 'winsup/cygwin/wincap.cc')
-rw-r--r-- | winsup/cygwin/wincap.cc | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc index 0ebf83690..5c1bb8c26 100644 --- a/winsup/cygwin/wincap.cc +++ b/winsup/cygwin/wincap.cc @@ -20,10 +20,8 @@ static NO_COPY wincaps wincap_unknown = { has_security_descriptor_control:false, has_ip_helper_lib:false, has_physical_mem_access:true, - has_move_file_ex:true, has_unreliable_pipes:false, has_process_io_counters:false, - pty_needs_alloc_console:true, has_terminal_services:false, has_ioctl_storage_get_media_types_ex:false, has_extended_priority_class:false, @@ -50,10 +48,8 @@ static NO_COPY wincaps wincap_nt4 = { has_security_descriptor_control:false, has_ip_helper_lib:false, has_physical_mem_access:true, - has_move_file_ex:true, has_unreliable_pipes:false, has_process_io_counters:false, - pty_needs_alloc_console:true, has_terminal_services:false, has_ioctl_storage_get_media_types_ex:false, has_extended_priority_class:false, @@ -80,10 +76,8 @@ static NO_COPY wincaps wincap_nt4sp4 = { has_security_descriptor_control:false, has_ip_helper_lib:true, has_physical_mem_access:true, - has_move_file_ex:true, has_unreliable_pipes:false, has_process_io_counters:false, - pty_needs_alloc_console:true, has_terminal_services:false, has_ioctl_storage_get_media_types_ex:false, has_extended_priority_class:false, @@ -110,10 +104,8 @@ static NO_COPY wincaps wincap_2000 = { has_security_descriptor_control:true, has_ip_helper_lib:true, has_physical_mem_access:true, - has_move_file_ex:true, has_unreliable_pipes:false, has_process_io_counters:true, - pty_needs_alloc_console:true, has_terminal_services:true, has_ioctl_storage_get_media_types_ex:false, has_extended_priority_class:true, @@ -140,10 +132,8 @@ static NO_COPY wincaps wincap_xp = { has_security_descriptor_control:true, has_ip_helper_lib:true, has_physical_mem_access:true, - has_move_file_ex:true, has_unreliable_pipes:false, has_process_io_counters:true, - pty_needs_alloc_console:true, has_terminal_services:true, has_ioctl_storage_get_media_types_ex:true, has_extended_priority_class:true, @@ -170,10 +160,8 @@ static NO_COPY wincaps wincap_2003 = { has_security_descriptor_control:true, has_ip_helper_lib:true, has_physical_mem_access:false, - has_move_file_ex:true, has_unreliable_pipes:false, has_process_io_counters:true, - pty_needs_alloc_console:true, has_terminal_services:true, has_ioctl_storage_get_media_types_ex:true, has_extended_priority_class:true, @@ -200,10 +188,8 @@ static NO_COPY wincaps wincap_vista = { has_security_descriptor_control:true, has_ip_helper_lib:true, has_physical_mem_access:false, - has_move_file_ex:true, has_unreliable_pipes:false, has_process_io_counters:true, - pty_needs_alloc_console:true, has_terminal_services:true, has_ioctl_storage_get_media_types_ex:true, has_extended_priority_class:true, |