blob: 2c6b64d65f0856ab931ece8158ca119a2b084adb (
plain)
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
35
36
37
38
39
40
41
42
43
|
#include <_proc.h>
#include <camellia/flags.h>
#include <camellia/intr.h>
#include <camellia/syscalls.h>
#include <elfload.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char **argv, char **envp);
__attribute__((visibility("hidden")))
extern char __executable_start[];
const char *shortname(const char *path) {
if (!path) return "unknown program";
const char *slash = strrchr(path, '/');
if (slash) return slash + 1;
return path;
}
void intr_trampoline(void); /* intr.s */
_Noreturn void _start2(struct execdata *ed) {
const char *progname;
elf_selfreloc();
/* done first so it isn't allocated elsewhere by accident */
_sys_memflag(_psdata_loc, 1, MEMFLAG_PRESENT);
_psdata_loc->base = __executable_start;
/* sets ->desc */
progname = shortname(ed->argv[0]);
setprogname(progname);
_klogf("_start2 %s %p", progname, __executable_start);
_sys_intr_set(intr_trampoline);
intr_set(intr_default);
__initialcwd = ed->cwd;
exit(main(ed->argc, ed->argv, ed->envp));
}
|