diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-02-23 09:49:49 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-02-23 09:49:49 +0000 |
commit | 0ed760d75e34775d5de25ac52cbcc5b5dd18ed15 (patch) | |
tree | b28206f3a4cfd82f998fb1779c891845b487dc5b /winsup/cygwin/wincap.cc | |
parent | 8e17bd8685fce1a0fc52bdd0765a60e14216b503 (diff) | |
download | cygnal-0ed760d75e34775d5de25ac52cbcc5b5dd18ed15.tar.gz cygnal-0ed760d75e34775d5de25ac52cbcc5b5dd18ed15.tar.bz2 cygnal-0ed760d75e34775d5de25ac52cbcc5b5dd18ed15.zip |
* fhandler.cc (fhandler_base::lseek): Drop 9x considerations.
* fhandler_disk_file.cc (fhandler_disk_file::lock): Ditto.
* wincap.cc: Remove lock_file_highword and has_64bit_file_access
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 9dcf11089..abd274a79 100644 --- a/winsup/cygwin/wincap.cc +++ b/winsup/cygwin/wincap.cc @@ -13,7 +13,6 @@ details. */ /* Minimal set of capabilities which is equivalent to NT4. */ static NO_COPY wincaps wincap_unknown = { - lock_file_highword:UINT32_MAX, chunksize:0, heapslop:0x0, is_server:false, @@ -25,7 +24,6 @@ static NO_COPY wincaps wincap_unknown = { has_unreliable_pipes:false, has_raw_devices:true, has_valid_processorlevel:true, - has_64bit_file_access:true, has_process_io_counters:false, supports_reading_modem_output_lines:true, needs_memory_protection:true, @@ -52,7 +50,6 @@ static NO_COPY wincaps wincap_unknown = { }; static NO_COPY wincaps wincap_nt4 = { - lock_file_highword:UINT32_MAX, chunksize:0, heapslop:0x0, is_server:false, @@ -64,7 +61,6 @@ static NO_COPY wincaps wincap_nt4 = { has_unreliable_pipes:false, has_raw_devices:true, has_valid_processorlevel:true, - has_64bit_file_access:true, has_process_io_counters:false, supports_reading_modem_output_lines:true, needs_memory_protection:true, @@ -91,7 +87,6 @@ static NO_COPY wincaps wincap_nt4 = { }; static NO_COPY wincaps wincap_nt4sp4 = { - lock_file_highword:UINT32_MAX, chunksize:0, heapslop:0x0, is_server:false, @@ -103,7 +98,6 @@ static NO_COPY wincaps wincap_nt4sp4 = { has_unreliable_pipes:false, has_raw_devices:true, has_valid_processorlevel:true, - has_64bit_file_access:true, has_process_io_counters:false, supports_reading_modem_output_lines:true, needs_memory_protection:true, @@ -130,7 +124,6 @@ static NO_COPY wincaps wincap_nt4sp4 = { }; static NO_COPY wincaps wincap_2000 = { - lock_file_highword:UINT32_MAX, chunksize:0, heapslop:0x0, is_server:false, @@ -142,7 +135,6 @@ static NO_COPY wincaps wincap_2000 = { has_unreliable_pipes:false, has_raw_devices:true, has_valid_processorlevel:true, - has_64bit_file_access:true, has_process_io_counters:true, supports_reading_modem_output_lines:true, needs_memory_protection:true, @@ -169,7 +161,6 @@ static NO_COPY wincaps wincap_2000 = { }; static NO_COPY wincaps wincap_xp = { - lock_file_highword:UINT32_MAX, chunksize:0, heapslop:0x0, is_server:false, @@ -181,7 +172,6 @@ static NO_COPY wincaps wincap_xp = { has_unreliable_pipes:false, has_raw_devices:true, has_valid_processorlevel:true, - has_64bit_file_access:true, has_process_io_counters:true, supports_reading_modem_output_lines:true, needs_memory_protection:true, @@ -208,7 +198,6 @@ static NO_COPY wincaps wincap_xp = { }; static NO_COPY wincaps wincap_2003 = { - lock_file_highword:UINT32_MAX, chunksize:0, heapslop:0x4, is_server:true, @@ -220,7 +209,6 @@ static NO_COPY wincaps wincap_2003 = { has_unreliable_pipes:false, has_raw_devices:true, has_valid_processorlevel:true, - has_64bit_file_access:true, has_process_io_counters:true, supports_reading_modem_output_lines:true, needs_memory_protection:true, @@ -247,7 +235,6 @@ static NO_COPY wincaps wincap_2003 = { }; static NO_COPY wincaps wincap_vista = { - lock_file_highword:UINT32_MAX, chunksize:0, heapslop:0x4, is_server:false, @@ -259,7 +246,6 @@ static NO_COPY wincaps wincap_vista = { has_unreliable_pipes:false, has_raw_devices:true, has_valid_processorlevel:true, - has_64bit_file_access:true, has_process_io_counters:true, supports_reading_modem_output_lines:true, needs_memory_protection:true, |