mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
added Private, Shared and Shareable Working Set columns
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1074 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
@@ -911,9 +911,9 @@ namespace ProcessHacker
|
||||
{
|
||||
ProcessWindow pw = null;
|
||||
|
||||
if (PWindows.ContainsKey(process.PID))
|
||||
if (PWindows.ContainsKey(process.Pid))
|
||||
{
|
||||
pw = PWindows[process.PID];
|
||||
pw = PWindows[process.Pid];
|
||||
|
||||
pw.Invoke(action, pw);
|
||||
|
||||
@@ -935,13 +935,13 @@ namespace ProcessHacker
|
||||
catch
|
||||
{ }
|
||||
|
||||
Program.PThreads.Remove(process.PID);
|
||||
Program.PThreads.Remove(process.Pid);
|
||||
}));
|
||||
|
||||
t.SetApartmentState(ApartmentState.STA);
|
||||
t.Start();
|
||||
|
||||
Program.PThreads.Add(process.PID, t);
|
||||
Program.PThreads.Add(process.Pid, t);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user