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-22 19:22:38 +0300
committerCorinna Vinschen <corinna@vinschen.de>2007-02-22 19:22:38 +0300
commite9095199cc90f0d01e4ec8cb270c81a0ef3dfd74 (patch)
tree2d6a69872d8d4297ef43197dcc722b41d0effbec /winsup/cygwin/wincap.h
parent501f1020f94e73eedaf581c1371387e2ae0edb8b (diff)
* fhandler.cc (fhandler_base::write): Remove wincap.has_lseek_bug case.
Simplify seek beyond EOF case. * times.cc (times): Remove wincap.has_get_process_times case. * wincap.cc: Remove has_delete_on_close, has_page_guard, has_get_process_times and has_lseek_bug throughout. * wincap.h: Ditto.
Diffstat (limited to 'winsup/cygwin/wincap.h')
-rw-r--r--winsup/cygwin/wincap.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/winsup/cygwin/wincap.h b/winsup/cygwin/wincap.h
index 645ded1ff..d8310d361 100644
--- a/winsup/cygwin/wincap.h
+++ b/winsup/cygwin/wincap.h
@@ -17,12 +17,8 @@ struct wincaps
DWORD chunksize;
DWORD heapslop;
unsigned is_server : 1;
- unsigned has_delete_on_close : 1;
- unsigned has_page_guard : 1;
unsigned has_security : 1;
unsigned has_security_descriptor_control : 1;
- unsigned has_get_process_times : 1;
- unsigned has_lseek_bug : 1;
unsigned has_lock_file_ex : 1;
unsigned has_signal_object_and_wait : 1;
unsigned has_eventlog : 1;
@@ -96,12 +92,8 @@ public:
DWORD IMPLEMENT (chunksize)
DWORD IMPLEMENT (heapslop)
bool IMPLEMENT (is_server)
- bool IMPLEMENT (has_delete_on_close)
- bool IMPLEMENT (has_page_guard)
bool IMPLEMENT (has_security)
bool IMPLEMENT (has_security_descriptor_control)
- bool IMPLEMENT (has_get_process_times)
- bool IMPLEMENT (has_lseek_bug)
bool IMPLEMENT (has_lock_file_ex)
bool IMPLEMENT (has_signal_object_and_wait)
bool IMPLEMENT (has_eventlog)