diff options
author | marcel <marcel@FreeBSD.org> | 2000-11-23 08:55:30 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2000-11-23 08:55:30 +0000 |
commit | cde8d159637481ca81846c9518f53cd29dc16c16 (patch) | |
tree | 447c84b8e2199bb385d74f2dbe99427d9ba92890 /sys/i386/linux/linux_proto.h | |
parent | 0fd34587296e65de5fd6a027091f2e32636c2099 (diff) | |
download | FreeBSD-src-cde8d159637481ca81846c9518f53cd29dc16c16.zip FreeBSD-src-cde8d159637481ca81846c9518f53cd29dc16c16.tar.gz |
o Change the argument of linux_sigreturn to be a pointer to a
struct sigframe. We need more than only the signal context.
o Properly convert the signal mask when setting up the signal
frame in linux_sendsig and properly convert it back in
linux_sigreturn.
Do some cleanups and improve style while here.
Diffstat (limited to 'sys/i386/linux/linux_proto.h')
-rw-r--r-- | sys/i386/linux/linux_proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/linux/linux_proto.h b/sys/i386/linux/linux_proto.h index 6540a52..2a61ac5 100644 --- a/sys/i386/linux/linux_proto.h +++ b/sys/i386/linux/linux_proto.h @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.36 2000/11/09 07:27:55 marcel Exp + * created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.38 2000/11/23 08:53:19 marcel Exp */ #ifndef _LINUX_SYSPROTO_H_ @@ -322,7 +322,7 @@ struct linux_ipc_args { caddr_t ptr; char ptr_[PAD_(caddr_t)]; }; struct linux_sigreturn_args { - struct linux_sigcontext * scp; char scp_[PAD_(struct linux_sigcontext *)]; + struct linux_sigframe * sfp; char sfp_[PAD_(struct linux_sigframe *)]; }; struct linux_clone_args { int flags; char flags_[PAD_(int)]; |