summaryrefslogtreecommitdiffhomepage
path: root/lib/fs.c
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2021-05-26 13:28:07 +0200
committerJo-Philipp Wich <jo@mein.io>2021-07-11 15:49:14 +0200
commitbf8522625f55fa2657dee3b9356b20fa0dba725f (patch)
tree82dea1608c84f4b6314f2500271258e4455ecf9d /lib/fs.c
parente2b3d2ef25c5e55122c1e41ab56af1075209b47d (diff)
treewide: move ressource type registry into vm instance
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'lib/fs.c')
-rw-r--r--lib/fs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/fs.c b/lib/fs.c
index 4f96a6c..0c37aab 100644
--- a/lib/fs.c
+++ b/lib/fs.c
@@ -904,13 +904,13 @@ static void close_dir(void *ud)
closedir(dp);
}
-void uc_module_init(uc_value_t *scope)
+void uc_module_init(uc_vm *vm, uc_value_t *scope)
{
uc_add_proto_functions(scope, global_fns);
- proc_type = uc_declare_type("fs.proc", proc_fns, close_proc);
- file_type = uc_declare_type("fs.file", file_fns, close_file);
- dir_type = uc_declare_type("fs.dir", dir_fns, close_dir);
+ proc_type = uc_declare_type(vm, "fs.proc", proc_fns, close_proc);
+ file_type = uc_declare_type(vm, "fs.file", file_fns, close_file);
+ dir_type = uc_declare_type(vm, "fs.dir", dir_fns, close_dir);
ucv_object_add(scope, "stdin", uc_alloc_ressource(file_type, stdin));
ucv_object_add(scope, "stdout", uc_alloc_ressource(file_type, stdout));