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:
wj32
2009-04-16 10:46:08 +00:00
parent 954b72cf9d
commit 80fcf7fd80
12 changed files with 257 additions and 52 deletions
+4 -4
View File
@@ -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
{