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 [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to