diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2008-03-27 10:43:14 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2008-03-27 10:43:14 +0000 |
commit | e21ac1ebdba953f1a88d5630b9868a7a780eb144 (patch) | |
tree | bbe42e6c65b91a91b0e04fa1df0f435d4a61619a /winsup/cygwin/shared_info.h | |
parent | 4af0c5e8f3ebc327f9fbb2302ba78097e08e47fe (diff) | |
download | cygnal-e21ac1ebdba953f1a88d5630b9868a7a780eb144.tar.gz cygnal-e21ac1ebdba953f1a88d5630b9868a7a780eb144.tar.bz2 cygnal-e21ac1ebdba953f1a88d5630b9868a7a780eb144.zip |
* fhandler_socket.cc: Create shared objects session local throughout.
* shared.cc (shared_name): Add argument to allow opening session
local shared memory.
* shared_info.h (shared_name): Change declaration accordingly.
Diffstat (limited to 'winsup/cygwin/shared_info.h')
-rw-r--r-- | winsup/cygwin/shared_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/shared_info.h b/winsup/cygwin/shared_info.h index dc345d30f..9d2840def 100644 --- a/winsup/cygwin/shared_info.h +++ b/winsup/cygwin/shared_info.h @@ -176,7 +176,7 @@ struct console_state }; #endif -char *__stdcall shared_name (char *, const char *, int); +char *__stdcall shared_name (char *, const char *, int, bool = false); void *__stdcall open_shared (const char *name, int n, HANDLE &shared_h, DWORD size, shared_locations&, PSECURITY_ATTRIBUTES psa = &sec_all, DWORD access = FILE_MAP_READ | FILE_MAP_WRITE); |