1
2
3
4
5
6
7
8
9
10
11
12
13
14
..
35
36
37
38
39
40
41
42
43
|
#include <k/core.h>
#include <k/type.h>
extern stat entry(kenv);
unsigned long long
_boot(unsigned int argc, /* argument count */
char** argv, /* arguments */
char** envp /* environment */ ) {
envp ++; /* envp seems to point at a leading null;
this is probably a sign of breakage but
i don't know what else to do about it for
the moment. */
................................................................................
kenv e = {
/* TODO: determine terminal class and set term vs ansi correctly! */
{ {kiostream_term, 0}, {kiostream_term, 1} }, // chan std
{ {kiostream_closed}, {kiostream_term, 2} }, // chan err
argc, argv, ep - envp, variables
};
return entry(e);
}
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
..
35
36
37
38
39
40
41
42
43
44
|
#include <k/core.h>
#include <k/type.h>
extern stat entry(kenv);
unsigned long long
_boot(unsigned int argc, /* argument count */
const char** argv, /* arguments */
char** envp /* environment */ ) {
envp ++; /* envp seems to point at a leading null;
this is probably a sign of breakage but
i don't know what else to do about it for
the moment. */
................................................................................
kenv e = {
/* TODO: determine terminal class and set term vs ansi correctly! */
{ {kiostream_term, 0}, {kiostream_term, 1} }, // chan std
{ {kiostream_closed}, {kiostream_term, 2} }, // chan err
argc, argv, ep - envp, variables
};
return entry(e);
}
|