From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/870 Path: news.gmane.org!not-for-mail From: Isaac Dunham Newsgroups: gmane.linux.lib.musl.general Subject: Question on setjmp.h Date: Sun, 20 May 2012 21:52:01 -0700 Message-ID: <20120520215201.3212f252@newbook> References: <20120520192550.2cef3782@newbook> <20120521030106.GD163@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1337575941 3911 80.91.229.3 (21 May 2012 04:52:21 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 21 May 2012 04:52:21 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-871-gllmg-musl=m.gmane.org@lists.openwall.com Mon May 21 06:52:20 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1SWKbT-0005kg-GA for gllmg-musl@plane.gmane.org; Mon, 21 May 2012 06:52:19 +0200 Original-Received: (qmail 27689 invoked by uid 550); 21 May 2012 04:52:18 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 27681 invoked from network); 21 May 2012 04:52:18 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=lavabit; d=lavabit.com; b=duEtWeW9tlWutRxcpcEuM2hLMnTBCbAEg/ZIC8RfQ5DL03gkmgmoQyhTumSkfzNsdjuLjIdo71dPngiV+ckQQNqksdDsdcqfe1X9caTR++XE7lF7HBpKf/YNmhowR23gblkPQloFH+5yfyWZ7CfzBGT1MepEPMp+dKh8bqgPZts=; h=Date:From:To:Subject:Message-ID:In-Reply-To:References:X-Mailer:Mime-Version:Content-Type:Content-Transfer-Encoding; In-Reply-To: <20120521030106.GD163@brightrain.aerifal.cx> X-Mailer: Claws Mail 3.7.4 (GTK+ 2.20.1; i486-pc-linux-gnu) Xref: news.gmane.org gmane.linux.lib.musl.general:870 Archived-At: I'm looking at setjmp.h, and see: #ifdef _GNU_SOURCE #define jmp_buf sigjmp_buf /* no other definition for jmp_buf in view */ #endif .. #if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) /* Where did jmp_buf get defined for XOPEN_SOURCE? */ int _setjmp (jmp_buf); void _longjmp (jmp_buf, int); #endif Still working on _BSD_SOURCE, about 13 headers left now. I may be optimistic, but it looks like I should have a patch by the end of the month or perhaps week (assuming I can do something after work). Isaac Dunham