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:
peter 2002-09-07 04:59:49 +00:00
parent 64f61942de
commit 8e47265dc5

View File

@ -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 */
}