From owner-freebsd-current Tue Mar 11 19:19:16 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7046837B401 for ; Tue, 11 Mar 2003 19:19:15 -0800 (PST) Received: from smtp02.syd.iprimus.net.au (smtp02.syd.iprimus.net.au [210.50.76.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8168243FBF for ; Tue, 11 Mar 2003 19:19:14 -0800 (PST) (envelope-from tim@robbins.dropbear.id.au) Received: from dilbert.robbins.dropbear.id.au ([210.50.218.96]) by smtp02.syd.iprimus.net.au with Microsoft SMTPSVC(5.0.2195.5600); Wed, 12 Mar 2003 14:19:10 +1100 Received: from dilbert.robbins.dropbear.id.au (xoe8o0cv957m2r12@localhost [127.0.0.1]) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6) with ESMTP id h2C3I9JK012448 for ; Wed, 12 Mar 2003 14:18:10 +1100 (EST) (envelope-from tim@dilbert.robbins.dropbear.id.au) Received: (from tim@localhost) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6/Submit) id h2C3I7rC012447 for current@freebsd.org; Wed, 12 Mar 2003 14:18:07 +1100 (EST) (envelope-from tim) Date: Wed, 12 Mar 2003 14:18:04 +1100 From: Tim Robbins To: current@freebsd.org Subject: failed to set signal flags properly for ast() Message-ID: <20030312141804.A12375@dilbert.robbins.dropbear.id.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-OriginalArrivalTime: 12 Mar 2003 03:19:10.0899 (UTC) FILETIME=[26603830:01C2E846] Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Compile, run under gdb, then type "print test()" when the program receives SIGABRT. Seems to work incorrectly on 4.7 too. #include #include void test(void) { puts("hello"); } int main(int argc, char *argv[]) { abort(); exit(0); } Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message