Supposedly linux has added a 6th syscall arg register (%ebp). I am not
100% sure if this is enough, but it will not harm anything.
This commit is contained in:
parent
64f61942de
commit
8e47265dc5
@ -716,6 +716,7 @@ linux_prepsyscall(struct trapframe *tf, int *args, u_int *code, caddr_t *params)
|
||||
args[2] = tf->tf_edx;
|
||||
args[3] = tf->tf_esi;
|
||||
args[4] = tf->tf_edi;
|
||||
args[5] = tf->tf_ebp; /* Unconfirmed */
|
||||
*params = NULL; /* no copyin */
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user