summaryrefslogtreecommitdiff
path: root/examples/procargs.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/procargs.c')
-rw-r--r--examples/procargs.c51
1 files changed, 0 insertions, 51 deletions
diff --git a/examples/procargs.c b/examples/procargs.c
deleted file mode 100644
index d5bd1fdd..00000000
--- a/examples/procargs.c
+++ /dev/null
@@ -1,51 +0,0 @@
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <glibtop.h>
-#include <glibtop/procargs.h>
-
-#include <stdlib.h>
-
-#include <unistd.h>
-
-static void show_args(pid_t pid, unsigned max_len)
-{
- glibtop_proc_args buf;
- char ** const pargv = glibtop_get_proc_argv(&buf, pid, max_len);
-
- char **parg = pargv;
-
- printf("<%ld>\t", (long)pid);
-
- while(*parg)
- {
- printf("\"%s\" ", *parg);
- parg++;
- }
-
- putchar('\n');
-
- g_strfreev(pargv);
-}
-
-
-int main(int argc, char **argv)
-{
- glibtop_init();
-
- show_args(getpid(), 0);
- show_args(getpid(), 15);
-
- while(*++argv)
- {
- pid_t pid = strtol(*argv, NULL, 10);
- show_args(pid, 0);
- show_args(pid, 15);
- }
-
- glibtop_close();
-
- return 0;
-}
-