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 12:49:49 +0300
committerCorinna Vinschen <corinna@vinschen.de>2007-02-23 12:49:49 +0300
commit0ed760d75e34775d5de25ac52cbcc5b5dd18ed15 (patch)
treeb28206f3a4cfd82f998fb1779c891845b487dc5b /winsup/cygwin/wincap.h
parent8e17bd8685fce1a0fc52bdd0765a60e14216b503 (diff)
* 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.h')
-rw-r--r--winsup/cygwin/wincap.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/winsup/cygwin/wincap.h b/winsup/cygwin/wincap.h
index d803f6b18..f4e64a09e 100644
--- a/winsup/cygwin/wincap.h
+++ b/winsup/cygwin/wincap.h
@@ -13,7 +13,6 @@ details. */
struct wincaps
{
- DWORD lock_file_highword;
DWORD chunksize;
DWORD heapslop;
unsigned is_server : 1;
@@ -25,7 +24,6 @@ struct wincaps
unsigned has_unreliable_pipes : 1;
unsigned has_raw_devices : 1;
unsigned has_valid_processorlevel : 1;
- unsigned has_64bit_file_access : 1;
unsigned has_process_io_counters : 1;
unsigned supports_reading_modem_output_lines : 1;
unsigned needs_memory_protection : 1;
@@ -68,7 +66,6 @@ public:
#define IMPLEMENT(cap) cap() const { return ((wincaps *) this->caps)->cap; }
- DWORD IMPLEMENT (lock_file_highword)
DWORD IMPLEMENT (chunksize)
DWORD IMPLEMENT (heapslop)
bool IMPLEMENT (is_server)
@@ -80,7 +77,6 @@ public:
bool IMPLEMENT (has_unreliable_pipes)
bool IMPLEMENT (has_raw_devices)
bool IMPLEMENT (has_valid_processorlevel)
- bool IMPLEMENT (has_64bit_file_access)
bool IMPLEMENT (has_process_io_counters)
bool IMPLEMENT (supports_reading_modem_output_lines)
bool IMPLEMENT (needs_memory_protection)