git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
feat: brk and sbrk (mmap based)
[lunaix-os.git]
/
lunaix-os
/
usr
/
uinit.c
1
#define __USR_WRAPPER__
2
#include <lunaix/ld.h>
3
4
int
5
usr_pre_init(struct usr_exec_param* param)
6
{
7
// TODO some inits before executing user program
8
9
extern ptr_t environ;
10
environ = (ptr_t)param->envp;
11
12
return 0;
13
}