blob: 6b4044d885e8d9d4d7bd426d57b0f83bc68060db (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef APOS_PROC_H
#define APOS_PROC_H
/**
* @file proc.h
* Process handling subsystem, should likely be merged into \ref
* include/apos/tcb.h.
*/
#include <apos/tcb.h>
#include <apos/vmem.h>
stat_t jump_to_userspace(struct tcb *t, int argc, char **argv);
stat_t init_proc(void *fdt, struct vmem *b);
#endif /* APOS_PROC_H */
|