You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
305 B
12 lines
305 B
/* Return -1 on error or 1 on success (never 0!). */ |
|
static int |
|
get_syscall_args(struct tcb *tcp) |
|
{ |
|
tcp->u_arg[0] = i386_regs.ebx; |
|
tcp->u_arg[1] = i386_regs.ecx; |
|
tcp->u_arg[2] = i386_regs.edx; |
|
tcp->u_arg[3] = i386_regs.esi; |
|
tcp->u_arg[4] = i386_regs.edi; |
|
tcp->u_arg[5] = i386_regs.ebp; |
|
return 1; |
|
}
|
|
|