Вниз
Скачать: CL | DM;

как определить владельца мьютекса (mutex owner)   Найти похожие ветки 

 
intlex   (2009-10-06 19:09) [0]

по сабжу,
пробовал NtQueryObject, но пока безуспешно, может кто поможет?


 
clickmaker ©   (2009-10-07 12:14) [1]

GetKernelObjectSecurity(MutexHandle, OWNER_SECURITY_INFORMATION, ... ?


 
intlex   (2009-10-07 15:09) [2]


 InitializeSecurityDescriptor(@sd, SECURITY_DESCRIPTOR_REVISION);
 SetSecurityDescriptorDacl(@sd, True, nil, False);
 sa.nLength := SizeOf(TSecurityAttributes);
 sa.lpSecurityDescriptor := @sd;
 sa.bInheritHandle := False;
 Mutex := CreateMutex(@sa, False, MutexName);
 if (Mutex = 0) then ...;
 if GetLastError = ERROR_ALREADY_EXISTS) then
 begin
   GetKernelObjectSecurity(Mutex, OWNER_SECURITY_INFORMATION, @sd, SizeOf(TSecurityDescriptor), l);
   //GetSecurityDescriptorOwner(@sd, MData, b);

получается sd.Owner = nil, MData = nil
если предварительно заполнить sd.Owner := Pointer(GetCurrentProcessId),
то CreateMutex возвращает 0.
наверное, я что-то не понимаю))


 
clickmaker ©   (2009-10-07 16:14) [3]

var sd: PSecurityDescriptor;

GetKernelObjectSecurity(Mutex, OWNER_SECURITY_INFORMATION, nil, 0, len);
sd := AllocMem(len);
GetKernelObjectSecurity(Mutex, OWNER_SECURITY_INFORMATION, sd, len, len);

а так?


 
intlex   (2009-10-07 16:25) [4]

спасибо, так получилось)



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.006 c
15-1321293166
oxffff
2011-11-14 21:52
2012.03.04
Отправка посылки из Москвы


3-1272207079
Crocklam
2010-04-25 18:51
2012.03.04
Транзакции в очередь?


15-1320611403
Юрий
2011-11-06 23:30
2012.03.04
С днем рождения ! 7 ноября 2011 понедельник


15-1321269775
картман
2011-11-14 15:22
2012.03.04
файлы


2-1322210432
LDV
2011-11-25 12:40
2012.03.04
установить курсор в датасете после insert




   Наверх