summaryrefslogtreecommitdiffstats
path: root/tests/proctest.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/proctest.c')
-rw-r--r--tests/proctest.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/tests/proctest.c b/tests/proctest.c
new file mode 100644
index 0000000..8e840c1
--- /dev/null
+++ b/tests/proctest.c
@@ -0,0 +1,52 @@
+/*
+ * Copyright NEC Soft Ltd. 2009
+ *
+ * Author: Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of version 2.1 of the GNU Lesser General Public License
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it would be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include "../src/libcgroup-internal.h"
+
+int main(int argc, char *argv[])
+{
+ int i;
+ int ret;
+ pid_t pid;
+ uid_t uid;
+ gid_t gid;
+ char *procname;
+
+ if (argc < 2) {
+ printf("Specify process-id.\n");
+ return 1;
+ }
+ printf(" Pid | Process name | Uid | Gid \n");
+ printf("-------+----------------------------------+-------+-------\n");
+
+ for (i = 1; i < argc; i++) {
+ pid = atoi(argv[i]);
+
+ ret = cgroup_get_uid_gid_from_procfs(pid, &uid, &gid);
+ if (ret) {
+ printf("%6d | ret = %d\n", pid, ret);
+ continue;
+ }
+ ret = cgroup_get_procname_from_procfs(pid, &procname);
+ if (ret) {
+ printf("%6d | ret = %d\n", pid, ret);
+ continue;
+ }
+ printf("%6d | %32s | %5d | %5d\n", pid, procname, uid, gid);
+ free(procname);
+ }
+ return 0;
+}