Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 03 Mar 1995 09:14:10 -0400 (EDT)
From:      LAJOIE@yalph2.physics.yale.edu
To:        questions@FreeBSD.org
Subject:   sigaltstack structure definition
Message-ID:  <01HNOZVK51AGA732XO@yalph2.physics.yale.edu>

next in thread | raw e-mail | index | archive | help
In compiling the most recent version of Wine (Wine0302) and I ran into an 
interesting problem.  In the FreeBSD 2.0R man page for sigaltstack, the structure 
definition is given by:

struct sigaltstack{
	caddr_t	ss_sp;
	long	ss_size;
	int	ss_flags;
}

BUT in /usr/include/sys/signal.h it is:

struct sigaltstack{
	char 	*ss_base;
	int	ss_size;
	int	ss_flags;
}

So which is correct?  Wine expected the first definition for FreeBSD, but the change 
is trivial and I got it to compile.  In any case, I was wondering if I was missing 
anything here....

John Lajoie
Yale University Physics Department
lajoie@yalph2.physics.yale.edu



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?01HNOZVK51AGA732XO>