* procargs.c: (show_args), (main): Updated.
This commit is contained in:
Benoît Dejean
2004-09-21 08:37:52 +00:00
parent 6954b81396
commit 5b15a2d1a5
2 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
2004-09-21 Benoît Dejean <tazforever@dlfp.org>
* procargs.c: (show_args), (main): Updated.
2004-09-21 Benoît Dejean <tazforever@dlfp.org>
* pprint.c: (pprint_get_mountlist), (pprint_get_netload),

View File

@@ -4,10 +4,10 @@
#include <unistd.h>
static void show_args(pid_t pid)
static void show_args(pid_t pid, unsigned max_len)
{
glibtop_proc_args buf;
char ** const pargv = glibtop_get_proc_argv(&buf, pid, 0);
char ** const pargv = glibtop_get_proc_argv(&buf, pid, max_len);
char **parg = pargv;
@@ -27,12 +27,14 @@ static void show_args(pid_t pid)
int main(int argc, char **argv)
{
show_args(getpid());
show_args(getpid(), 0);
show_args(getpid(), 15);
while(*++argv)
{
pid_t pid = strtol(*argv, NULL, 10);
show_args(pid);
show_args(pid, 0);
show_args(pid, 15);
}
return 0;