in reply to Re: Proc::ProcessTable::Process returning negative rss?
in thread Proc::ProcessTable::Process returning negative rss?
Which stores the rss (long) as numeric (float) with implicit casting, so it is still a bit of mystery why negative value shows up?func bless_into_proc ... case 'l': /* long */ l_val = va_arg(args, long); hv_store(myhash, key, strlen(key), newSVnv(l_val), 0);
|
|---|