aboutsummaryrefslogtreecommitdiff
path: root/include/apos/proc.h
blob: 8eaa64766a375e71cfc82fe2cd4a531b227c6d3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#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>

/**
 * Set up binary. Currently only supports ELF, not sure if other formats should
 * be supported.
 *
 * @param t Thread space to set up process in.
 * @param bin Address of binary to load.
 * @param interp Optional interpreter, mainly for PIE ELF binaries.
 * @return \ref OK on success, \ref ERR_INVAL if loading binary failed.
 * @todo Handle out of memory better?
 */
stat_t prepare_proc(struct tcb *t, vm_t bin, vm_t interp);

/**
 * Initialize process handling subsystem and setup \c init program.
 *
 * @param fdt Global FDT pointer.
 * @return \ref ERR_OOMEM when out of memory, \ref ERR_INVAL if loading \c init
 * failed, \ref OK otherwise.
 */
stat_t init_proc(void *fdt);

#endif /* APOS_PROC_H */