Change formatting rules
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 2m7s
Build documentation / build-and-deploy (push) Successful in 39s

This commit is contained in:
2026-04-24 01:54:48 +02:00
parent 34f7809a2d
commit c8fb575bdd
208 changed files with 6310 additions and 6339 deletions

View File

@@ -39,19 +39,19 @@ struct procgroup {
struct proc_env env;
};
struct procgroup* procgroup_create (void);
struct procgroup* procgroup_create(void);
void procgroup_attach (struct procgroup* procgroup, struct proc* proc);
void procgroup_attach(struct procgroup* procgroup, struct proc* proc);
void procgroup_detach (struct procgroup* procgroup, struct proc* proc, struct reschedule_ctx* rctx);
void procgroup_detach(struct procgroup* procgroup, struct proc* proc, struct reschedule_ctx* rctx);
uintptr_t procgroup_map (struct procgroup* procgroup, uintptr_t vaddr, size_t pages, uint32_t flags,
uintptr_t* out_paddr);
uintptr_t procgroup_map(struct procgroup* procgroup, uintptr_t vaddr, size_t pages, uint32_t flags,
uintptr_t* out_paddr);
bool procgroup_unmap (struct procgroup* procgroup, uintptr_t start_vaddr, size_t pages);
bool procgroup_unmap(struct procgroup* procgroup, uintptr_t start_vaddr, size_t pages);
struct procgroup* procgroup_find (int pgid);
struct procgroup* procgroup_find(int pgid);
void procgroup_pgid_alloc_init (void);
void procgroup_pgid_alloc_init(void);
#endif // _KERNEL_PROC_PROCGROUP_H