diff options
author | marcel <marcel@FreeBSD.org> | 1999-11-30 15:02:28 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-11-30 15:02:28 +0000 |
commit | e25c88391a154000f257c361888277d349b2223f (patch) | |
tree | 6a97256c3ee7cdef6232e2c3b4f3a7467d7b4b89 /sys/i386/linux/linux_proto.h | |
parent | ce9f30fbf1ca2b9409cfe998d0248a8011fcd21e (diff) | |
download | FreeBSD-src-e25c88391a154000f257c361888277d349b2223f.zip FreeBSD-src-e25c88391a154000f257c361888277d349b2223f.tar.gz |
Implement linux_sigaltstack.
Diffstat (limited to 'sys/i386/linux/linux_proto.h')
-rw-r--r-- | sys/i386/linux/linux_proto.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/i386/linux/linux_proto.h b/sys/i386/linux/linux_proto.h index 0b2f86c..2753475 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.27 1999/11/27 16:50:54 marcel Exp + * created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.28 1999/11/30 15:00:17 marcel Exp */ #ifndef _LINUX_SYSPROTO_H_ @@ -505,7 +505,8 @@ struct linux_capset_args { register_t dummy; }; struct linux_sigaltstack_args { - register_t dummy; + const linux_stack_t * uss; char uss_[PAD_(const linux_stack_t *)]; + linux_stack_t * uoss; char uoss_[PAD_(linux_stack_t *)]; }; struct linux_sendfile_args { register_t dummy; |