diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-03-29 16:37:36 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-03-29 16:37:36 +0000 |
commit | e6fbf13e48971335504fc66e385a168bbca41343 (patch) | |
tree | 956a1b1d710370e25fc002df74d1415acf5c1a42 /winsup/cygwin/posix_ipc.cc | |
parent | 519aec5d597336d58443628a2618d87620a4e2cd (diff) | |
download | cygnal-e6fbf13e48971335504fc66e385a168bbca41343.tar.gz cygnal-e6fbf13e48971335504fc66e385a168bbca41343.tar.bz2 cygnal-e6fbf13e48971335504fc66e385a168bbca41343.zip |
* cygheap.cc (cygheap_init): Fix formatting. Remove comment. Set
shared_prefix depending only on terminal service capability.
* dcrt0.cc (dll_crt0_1): Don't call set_cygwin_privileges here.
* fhandler_fifo.cc (fhandler_fifo::open): Create the mutex as global
object.
* posix_ipc.cc (ipc_mutex_init): Use cygheap->shared_prefix.
(ipc_cond_init): Ditto.
* sec_helper.cc (privilege_name): Make static. Use LookupPrivilegeName
directly to be independent of the state of cygheap.
(set_privilege): Take a LUID as parameter instead of an index value.
Only print debug output in case of failure.
(set_cygwin_privileges): Add comment. Use LookupPrivilegeValue to
get privilege LUIDs.
(init_global_security): Call set_cygwin_privileges here.
* security.h (privilege_name): Drop declaration.
(set_privilege): Declare according to above change.
(set_process_privilege): Call privilege_luid to get LUID.
(_push_thread_privilege): Ditto.
* shared.cc (open_shared): Add comment. On systems supporting the
SeCreateGlobalPrivilege, try to create/open global shared memory first.
Fall back to local shared memory if that fails.
* thread.cc (semaphore::semaphore): Use cygheap->shared_prefix.
* wincap.h (wincapc::has_create_global_privilege): New element.
* wincap.cc: Implement above element throughout.
Diffstat (limited to 'winsup/cygwin/posix_ipc.cc')
-rw-r--r-- | winsup/cygwin/posix_ipc.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/winsup/cygwin/posix_ipc.cc b/winsup/cygwin/posix_ipc.cc index 492b96a49..27f61999c 100644 --- a/winsup/cygwin/posix_ipc.cc +++ b/winsup/cygwin/posix_ipc.cc @@ -13,6 +13,9 @@ details. */ #include "path.h" #include "cygerrno.h" #include "cygtls.h" +#include "fhandler.h" +#include "dtable.h" +#include "cygheap.h" #include "security.h" #include "sigproc.h" #include <sys/stat.h> @@ -89,8 +92,7 @@ static int ipc_mutex_init (HANDLE *pmtx, const char *name) { char buf[CYG_MAX_PATH]; - __small_sprintf (buf, "%scyg_pmtx/%s", - wincap.has_terminal_services () ? "Global\\" : "", name); + __small_sprintf (buf, "%scyg_pmtx/%s", cygheap->shared_prefix, name); *pmtx = CreateMutex (&sec_all, FALSE, buf); if (!*pmtx) debug_printf ("failed: %E\n"); @@ -132,8 +134,7 @@ static int ipc_cond_init (HANDLE *pevt, const char *name) { char buf[CYG_MAX_PATH]; - __small_sprintf (buf, "%scyg_pevt/%s", - wincap.has_terminal_services () ? "Global\\" : "", name); + __small_sprintf (buf, "%scyg_pevt/%s", cygheap->shared_prefix, name); *pevt = CreateEvent (&sec_all, TRUE, FALSE, buf); if (!*pevt) debug_printf ("failed: %E\n"); |