summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/wincap.cc
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2007-03-29 16:37:36 +0000
committerCorinna Vinschen <corinna@vinschen.de>2007-03-29 16:37:36 +0000
commite6fbf13e48971335504fc66e385a168bbca41343 (patch)
tree956a1b1d710370e25fc002df74d1415acf5c1a42 /winsup/cygwin/wincap.cc
parent519aec5d597336d58443628a2618d87620a4e2cd (diff)
downloadcygnal-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/wincap.cc')
-rw-r--r--winsup/cygwin/wincap.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc
index a72484f39..a92f7821f 100644
--- a/winsup/cygwin/wincap.cc
+++ b/winsup/cygwin/wincap.cc
@@ -21,6 +21,7 @@ static NO_COPY wincaps wincap_unknown = {
has_physical_mem_access:true,
has_process_io_counters:false,
has_terminal_services:false,
+ has_create_global_privilege:false,
has_ioctl_storage_get_media_types_ex:false,
has_extended_priority_class:false,
has_guid_volumes:false,
@@ -47,6 +48,7 @@ static NO_COPY wincaps wincap_nt4 = {
has_physical_mem_access:true,
has_process_io_counters:false,
has_terminal_services:false,
+ has_create_global_privilege:false,
has_ioctl_storage_get_media_types_ex:false,
has_extended_priority_class:false,
has_guid_volumes:false,
@@ -73,6 +75,7 @@ static NO_COPY wincaps wincap_nt4sp4 = {
has_physical_mem_access:true,
has_process_io_counters:false,
has_terminal_services:false,
+ has_create_global_privilege:false,
has_ioctl_storage_get_media_types_ex:false,
has_extended_priority_class:false,
has_guid_volumes:false,
@@ -99,6 +102,7 @@ static NO_COPY wincaps wincap_2000 = {
has_physical_mem_access:true,
has_process_io_counters:true,
has_terminal_services:true,
+ has_create_global_privilege:false,
has_ioctl_storage_get_media_types_ex:false,
has_extended_priority_class:true,
has_guid_volumes:true,
@@ -125,6 +129,7 @@ static NO_COPY wincaps wincap_xp = {
has_physical_mem_access:true,
has_process_io_counters:true,
has_terminal_services:true,
+ has_create_global_privilege:false,
has_ioctl_storage_get_media_types_ex:true,
has_extended_priority_class:true,
has_guid_volumes:true,
@@ -151,6 +156,7 @@ static NO_COPY wincaps wincap_2003 = {
has_physical_mem_access:false,
has_process_io_counters:true,
has_terminal_services:true,
+ has_create_global_privilege:true,
has_ioctl_storage_get_media_types_ex:true,
has_extended_priority_class:true,
has_guid_volumes:true,
@@ -177,6 +183,7 @@ static NO_COPY wincaps wincap_vista = {
has_physical_mem_access:false,
has_process_io_counters:true,
has_terminal_services:true,
+ has_create_global_privilege:true,
has_ioctl_storage_get_media_types_ex:true,
has_extended_priority_class:true,
has_guid_volumes:true,