diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-02-22 17:09:46 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-02-22 17:09:46 +0000 |
commit | eef57fe1e33dddda8840188a62365393a683fb54 (patch) | |
tree | d18a3434852a51c8548e6ab26c029d4bb6435aab /winsup/cygwin/wincap.h | |
parent | 64f211c87c2fcbc26abc091a5545643ebd129f4d (diff) | |
download | cygnal-eef57fe1e33dddda8840188a62365393a683fb54.tar.gz cygnal-eef57fe1e33dddda8840188a62365393a683fb54.tar.bz2 cygnal-eef57fe1e33dddda8840188a62365393a683fb54.zip |
* fhandler.cc (fhandler_base::set_no_inheritance): Always use
SetHandleInformation.
* fhandler_disk_file.cc (fhandler_disk_file::lock): Always use
UnlockFileEx/LockFileEx functions.
* net.cc (fdsock): Don't bother to duplicate socket for inheritance.
* sysconf.cc (get_nproc_values): Take NT for granted.
(get_avphys): Ditto.
* syslog.cc (WIN95_EVENT_LOG_PATH): Remove define.
(get_win95_event_log_path): Remove.
(vsyslog): Fix formatting. Take NT for granted.
* wincap.cc: Remove has_lock_file_ex, has_signal_object_and_wait,
has_eventlog, has_set_handle_information,
has_set_handle_information_on_console_handles and supports_smp
throughout.
* wincap.h: Ditto.
Diffstat (limited to 'winsup/cygwin/wincap.h')
-rw-r--r-- | winsup/cygwin/wincap.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/winsup/cygwin/wincap.h b/winsup/cygwin/wincap.h index d8310d361..7eb49c05c 100644 --- a/winsup/cygwin/wincap.h +++ b/winsup/cygwin/wincap.h @@ -19,13 +19,7 @@ struct wincaps unsigned is_server : 1; unsigned has_security : 1; unsigned has_security_descriptor_control : 1; - unsigned has_lock_file_ex : 1; - unsigned has_signal_object_and_wait : 1; - unsigned has_eventlog : 1; unsigned has_ip_helper_lib : 1; - unsigned has_set_handle_information : 1; - unsigned has_set_handle_information_on_console_handles: 1; - unsigned supports_smp : 1; unsigned map_view_of_file_ex_sucks : 1; unsigned altgr_is_ctrl_alt : 1; unsigned has_physical_mem_access : 1; @@ -94,13 +88,7 @@ public: bool IMPLEMENT (is_server) bool IMPLEMENT (has_security) bool IMPLEMENT (has_security_descriptor_control) - bool IMPLEMENT (has_lock_file_ex) - bool IMPLEMENT (has_signal_object_and_wait) - bool IMPLEMENT (has_eventlog) bool IMPLEMENT (has_ip_helper_lib) - bool IMPLEMENT (has_set_handle_information) - bool IMPLEMENT (has_set_handle_information_on_console_handles) - bool IMPLEMENT (supports_smp) bool IMPLEMENT (map_view_of_file_ex_sucks) bool IMPLEMENT (altgr_is_ctrl_alt) bool IMPLEMENT (has_physical_mem_access) |