summaryrefslogtreecommitdiff
path: root/proclist.c
diff options
context:
space:
mode:
authorJeremie Koenig <jk@jk.fr.eu.org>2010-08-23 09:06:01 +0000
committerJeremie Koenig <jk@jk.fr.eu.org>2010-08-30 14:29:53 +0200
commit4deaca2ce2c4ed2c5ab53f57a7747c71126a8da7 (patch)
treeecd58a1b4cd0b80ed3b7ca838c8bb94731b2f833 /proclist.c
parent4f40fb6fbfa95c51b6abfceffcd0e1ce80824e70 (diff)
Use a global ps_context
* proclist.c, proclist.h (proclist_create_node): Use a ps_context passed by the caller; errors are no longer possible, rename to proclist_make_node and change the signature accordingly. * rootdir.c, rootdir.h (rootdir_create_node): Likewise. * main.c (main): Create the ps_context here and pass it to root_make_node. (root_make_node): Pass it to proclist_make_node and rootdir_make_node.
Diffstat (limited to 'proclist.c')
-rw-r--r--proclist.c15
1 files changed, 3 insertions, 12 deletions
diff --git a/proclist.c b/proclist.c
index 56a3fdf..35422a8 100644
--- a/proclist.c
+++ b/proclist.c
@@ -62,24 +62,15 @@ proclist_lookup (void *hook, const char *name, struct node **np)
return process_lookup_pid (pc, pid, np);
}
-error_t
-proclist_create_node (process_t procserv, struct node **np)
+struct node *
+proclist_make_node (struct ps_context *pc)
{
static const struct procfs_node_ops ops = {
.get_contents = proclist_get_contents,
.lookup = proclist_lookup,
.cleanup_contents = procfs_cleanup_contents_with_free,
- .cleanup = (void (*)(void *)) ps_context_free,
.enable_refresh_hack_and_break_readdir = 1,
};
- struct ps_context *pc;
- error_t err;
-
- err = ps_context_create (procserv, &pc);
- if (err)
- return err;
-
- *np = procfs_make_node (&ops, pc);
- return 0;
+ return procfs_make_node (&ops, pc);
}