tonyg362 <tonyg3622@yahoo.com> writes: > [...] > if (!([ppid] in pidlist)) > pidlist[ppid] = name > [...] The problem here is that sometimes the execname() of a particular pid changes, such as if it ever does an exec(). So you need to keep that table updated even if a previous entry exists. - FChE