summaryrefslogtreecommitdiffstats
path: root/sys/sys/_sigset.h
diff options
context:
space:
mode:
authorats <ats@FreeBSD.org>1995-01-29 01:19:25 +0000
committerats <ats@FreeBSD.org>1995-01-29 01:19:25 +0000
commit98786bc351577e7ce1f0df95c9204b53c14f780b (patch)
tree5a6e0600e93bae4a901b76c7559a9ea106b4a884 /sys/sys/_sigset.h
parent27434d033f0c367482bf2ee5e217ca7c0d035e36 (diff)
downloadFreeBSD-src-98786bc351577e7ce1f0df95c9204b53c14f780b.zip
FreeBSD-src-98786bc351577e7ce1f0df95c9204b53c14f780b.tar.gz
Correct a name of one structure member in the sigaltstack structure.
Now it matches the man page and also the only other commercial implementation i have found so far ( Solaris 2.x). Changed the name from ss_base to ss_sp.
Diffstat (limited to 'sys/sys/_sigset.h')
-rw-r--r--sys/sys/_sigset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/_sigset.h b/sys/sys/_sigset.h
index a116e9b..c26054b 100644
--- a/sys/sys/_sigset.h
+++ b/sys/sys/_sigset.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)signal.h 8.2 (Berkeley) 1/21/94
- * $Id$
+ * $Id: signal.h,v 1.2 1994/08/02 07:53:32 davidg Exp $
*/
#ifndef _SYS_SIGNAL_H_
@@ -145,7 +145,7 @@ typedef void (*sig_t) __P((int)); /* type of signal function */
* Structure used in sigaltstack call.
*/
struct sigaltstack {
- char *ss_base; /* signal stack base */
+ char *ss_sp; /* signal stack base */
int ss_size; /* signal stack length */
int ss_flags; /* SA_DISABLE and/or SA_ONSTACK */
};
OpenPOWER on IntegriCloud