Environments now belong to procgroups, modify env_set () and env_get () accordingly
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m9s

This commit is contained in:
2026-03-17 21:52:12 +01:00
parent 0b85d3a0da
commit 090a4e46ea
7 changed files with 46 additions and 43 deletions

View File

@@ -5,6 +5,7 @@
#include <libk/list.h>
#include <libk/rbtree.h>
#include <libk/std.h>
#include <proc/env.h>
#include <proc/resource.h>
#include <sync/spin_lock.h>
#include <sys/mm.h>
@@ -35,6 +36,7 @@ struct procgroup {
struct list_node_link* mappings;
uintptr_t map_base;
struct procgroup_tls tls;
struct proc_env env;
};
struct procgroup* procgroup_create (void);