Hi
userland program oftern below access.
thus, this patch break userland compatibility.
----------------------------------------
#!/usr/bin/perl
$stat = `cat /proc/$pid/stat`;
split
@stat_list = split(/ / , $stat);
print stat_list[$index];
^
|
use array index number
--