Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Mar 2003 14:18:04 +1100
From:      Tim Robbins <tjr@freebsd.org>
To:        current@freebsd.org
Subject:   failed to set signal flags properly for ast()
Message-ID:  <20030312141804.A12375@dilbert.robbins.dropbear.id.au>

next in thread | raw e-mail | index | archive | help
Compile, run under gdb, then type "print test()" when the program receives
SIGABRT. Seems to work incorrectly on 4.7 too.

#include <stdio.h>
#include <stdlib.h>

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




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