diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-05-20 15:22:09 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-05-20 15:22:09 +0000 |
commit | d4f3ce316cf6c5e3f1d7a6af1a2721f851be8879 (patch) | |
tree | 4c699da08e72c6dbb03a23f0dfd5fc11572574d4 /winsup/cygwin/wincap.h | |
parent | 10bada05fa00ade32d000a5605dbe8fc88a98a1b (diff) | |
download | cygnal-d4f3ce316cf6c5e3f1d7a6af1a2721f851be8879.tar.gz cygnal-d4f3ce316cf6c5e3f1d7a6af1a2721f851be8879.tar.bz2 cygnal-d4f3ce316cf6c5e3f1d7a6af1a2721f851be8879.zip |
* fhandler_socket.cc (SECRET_EVENT_NAME): Remove.
(ENTROPY_SOURCE_NAME): Ditto.
(secret_event_name): New static function. Create shared event name
with "Global\" prefix on systems supporting terminal services.
(fhandler_socket::set_connect_secret): Fix conditional.
(fhandler_socket::create_secret_event): Create secret event using
secret_event_name().
(fhandler_socket::close_secret_event): Ditto.
* shared.cc (shared_name): Create shared object name with "Global\"
prefix on systems supporting terminal services.
* wincap.cc: Set has_terminal_services capability throughout.
(wincap_2003): New global object representing Windows 2003 Server
capabilities.
(wincapc::init): Accomodate Windows 2003 Server.
* wincap.h (struct wincaps): Add has_terminal_services capability.
Diffstat (limited to 'winsup/cygwin/wincap.h')
-rw-r--r-- | winsup/cygwin/wincap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/wincap.h b/winsup/cygwin/wincap.h index 066374fd8..b1f43d6ef 100644 --- a/winsup/cygwin/wincap.h +++ b/winsup/cygwin/wincap.h @@ -50,6 +50,7 @@ struct wincaps unsigned supports_reading_modem_output_lines : 1; unsigned needs_memory_protection : 1; unsigned pty_needs_alloc_console : 1; + unsigned has_terminal_services : 1; }; class wincapc @@ -104,6 +105,7 @@ public: bool IMPLEMENT (supports_reading_modem_output_lines) bool IMPLEMENT (needs_memory_protection) bool IMPLEMENT (pty_needs_alloc_console) + bool IMPLEMENT (has_terminal_services) #undef IMPLEMENT }; |