Remove sys_init syscall
Invoke initlog from forkret on first user process
This commit is contained in:
parent
39f8cc56d3
commit
d10d324e79
|
@ -7,8 +7,6 @@
|
||||||
# exec(init, argv)
|
# exec(init, argv)
|
||||||
.globl start
|
.globl start
|
||||||
start:
|
start:
|
||||||
movl $SYS_init, %eax
|
|
||||||
int $T_SYSCALL
|
|
||||||
pushl $argv
|
pushl $argv
|
||||||
pushl $init
|
pushl $init
|
||||||
pushl $0 // where caller pc would be
|
pushl $0 // where caller pc would be
|
||||||
|
|
2
main.c
2
main.c
|
@ -60,7 +60,7 @@ mpmain(void)
|
||||||
scheduler(); // start running processes
|
scheduler(); // start running processes
|
||||||
}
|
}
|
||||||
|
|
||||||
pde_t enterpgdir[];
|
pde_t enterpgdir[]; // For entry.S
|
||||||
|
|
||||||
// Start the non-boot (AP) processors.
|
// Start the non-boot (AP) processors.
|
||||||
static void
|
static void
|
||||||
|
|
6
proc.c
6
proc.c
|
@ -322,8 +322,14 @@ yield(void)
|
||||||
void
|
void
|
||||||
forkret(void)
|
forkret(void)
|
||||||
{
|
{
|
||||||
|
static int first = 1;
|
||||||
// Still holding ptable.lock from scheduler.
|
// Still holding ptable.lock from scheduler.
|
||||||
release(&ptable.lock);
|
release(&ptable.lock);
|
||||||
|
|
||||||
|
if (first) {
|
||||||
|
first = 0;
|
||||||
|
initlog();
|
||||||
|
}
|
||||||
|
|
||||||
// Return to "caller", actually trapret (see allocproc).
|
// Return to "caller", actually trapret (see allocproc).
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,15 +99,7 @@ extern int sys_wait(void);
|
||||||
extern int sys_write(void);
|
extern int sys_write(void);
|
||||||
extern int sys_uptime(void);
|
extern int sys_uptime(void);
|
||||||
|
|
||||||
int
|
|
||||||
sys_init(void)
|
|
||||||
{
|
|
||||||
initlog();
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int (*syscalls[])(void) = {
|
static int (*syscalls[])(void) = {
|
||||||
[SYS_init] sys_init,
|
|
||||||
[SYS_fork] sys_fork,
|
[SYS_fork] sys_fork,
|
||||||
[SYS_exit] sys_exit,
|
[SYS_exit] sys_exit,
|
||||||
[SYS_wait] sys_wait,
|
[SYS_wait] sys_wait,
|
||||||
|
@ -122,7 +114,6 @@ static int (*syscalls[])(void) = {
|
||||||
[SYS_sbrk] sys_sbrk,
|
[SYS_sbrk] sys_sbrk,
|
||||||
[SYS_sleep] sys_sleep,
|
[SYS_sleep] sys_sleep,
|
||||||
[SYS_uptime] sys_uptime,
|
[SYS_uptime] sys_uptime,
|
||||||
// File system calls that are run in a transaction:
|
|
||||||
[SYS_open] sys_open,
|
[SYS_open] sys_open,
|
||||||
[SYS_write] sys_write,
|
[SYS_write] sys_write,
|
||||||
[SYS_mknod] sys_mknod,
|
[SYS_mknod] sys_mknod,
|
||||||
|
|
Loading…
Reference in a new issue