diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-02-22 16:22:38 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-02-22 16:22:38 +0000 |
commit | e9095199cc90f0d01e4ec8cb270c81a0ef3dfd74 (patch) | |
tree | 2d6a69872d8d4297ef43197dcc722b41d0effbec /winsup/cygwin/wincap.cc | |
parent | 501f1020f94e73eedaf581c1371387e2ae0edb8b (diff) | |
download | cygnal-e9095199cc90f0d01e4ec8cb270c81a0ef3dfd74.tar.gz cygnal-e9095199cc90f0d01e4ec8cb270c81a0ef3dfd74.tar.bz2 cygnal-e9095199cc90f0d01e4ec8cb270c81a0ef3dfd74.zip |
* 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.cc')
-rw-r--r-- | winsup/cygwin/wincap.cc | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc index 0be5446e8..a209dce99 100644 --- a/winsup/cygwin/wincap.cc +++ b/winsup/cygwin/wincap.cc @@ -17,12 +17,8 @@ static NO_COPY wincaps wincap_unknown = { chunksize:0, heapslop:0x0, is_server:false, - has_delete_on_close:true, - has_page_guard:true, has_security:true, has_security_descriptor_control:false, - has_get_process_times:true, - has_lseek_bug:false, has_lock_file_ex:true, has_signal_object_and_wait:true, has_eventlog:true, @@ -80,12 +76,8 @@ static NO_COPY wincaps wincap_nt4 = { chunksize:0, heapslop:0x0, is_server:false, - has_delete_on_close:true, - has_page_guard:true, has_security:true, has_security_descriptor_control:false, - has_get_process_times:true, - has_lseek_bug:false, has_lock_file_ex:true, has_signal_object_and_wait:true, has_eventlog:true, @@ -143,12 +135,8 @@ static NO_COPY wincaps wincap_nt4sp4 = { chunksize:0, heapslop:0x0, is_server:false, - has_delete_on_close:true, - has_page_guard:true, has_security:true, has_security_descriptor_control:false, - has_get_process_times:true, - has_lseek_bug:false, has_lock_file_ex:true, has_signal_object_and_wait:true, has_eventlog:true, @@ -206,12 +194,8 @@ static NO_COPY wincaps wincap_2000 = { chunksize:0, heapslop:0x0, is_server:false, - has_delete_on_close:true, - has_page_guard:true, has_security:true, has_security_descriptor_control:true, - has_get_process_times:true, - has_lseek_bug:false, has_lock_file_ex:true, has_signal_object_and_wait:true, has_eventlog:true, @@ -269,12 +253,8 @@ static NO_COPY wincaps wincap_xp = { chunksize:0, heapslop:0x0, is_server:false, - has_delete_on_close:true, - has_page_guard:true, has_security:true, has_security_descriptor_control:true, - has_get_process_times:true, - has_lseek_bug:false, has_lock_file_ex:true, has_signal_object_and_wait:true, has_eventlog:true, @@ -332,12 +312,8 @@ static NO_COPY wincaps wincap_2003 = { chunksize:0, heapslop:0x4, is_server:true, - has_delete_on_close:true, - has_page_guard:true, has_security:true, has_security_descriptor_control:true, - has_get_process_times:true, - has_lseek_bug:false, has_lock_file_ex:true, has_signal_object_and_wait:true, has_eventlog:true, @@ -395,12 +371,8 @@ static NO_COPY wincaps wincap_vista = { chunksize:0, heapslop:0x4, is_server:false, - has_delete_on_close:true, - has_page_guard:true, has_security:true, has_security_descriptor_control:true, - has_get_process_times:true, - has_lseek_bug:false, has_lock_file_ex:true, has_signal_object_and_wait:true, has_eventlog:true, |