Change formatting rules
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user