From owner-freebsd-questions Fri Mar 3 06:12:20 1995 Return-Path: questions-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.9/8.6.6) id GAA17475 for questions-outgoing; Fri, 3 Mar 1995 06:12:20 -0800 Received: from YALPH1.physics.yale.edu (yalph1.physics.yale.edu [130.132.48.4]) by freefall.cdrom.com (8.6.9/8.6.6) with ESMTP id GAA17469 for ; Fri, 3 Mar 1995 06:12:19 -0800 From: LAJOIE@yalph2.physics.yale.edu Received: from yalph2.physics.yale.edu by yalph2.physics.yale.edu (PMDF V4.3-7 #8220) id <01HNOZVK50CMA732XO@yalph2.physics.yale.edu>; Fri, 3 Mar 1995 09:14:10 EDT Date: Fri, 03 Mar 1995 09:14:10 -0400 (EDT) Subject: sigaltstack structure definition To: questions@FreeBSD.org Reply-to: LAJOIE@yalph2.physics.yale.edu Message-id: <01HNOZVK51AGA732XO@yalph2.physics.yale.edu> X-VMS-To: in%"questions@FreeBSD.org" MIME-version: 1.0 Content-type: TEXT/PLAIN; CHARSET=US-ASCII Content-transfer-encoding: 7BIT Sender: questions-owner@FreeBSD.org Precedence: bulk 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