Incorporate the build results of the libsigsegv 2.6 prerelease.
[libsigsegv/ericb.git] / NEWS
blob7f00fed83bb6f0a69969fd2320372b260d3f74f2
1 New in 2.6:
3 * sigsegv_leave_handler is changed. Previously it was a normal function with
4   no arguments. Now it is a function that take a non-returning continuation
5   function and three arguments for it as arguments.
6   Where you had code like
7      int my_handler(void* fault_address, int serious)
8      {
9        ...code_before()...;
10        sigsegv_leave_handler();
11        ...code_after()...;
12        longjmp(...);
13      }
14   you now have to write
15      void my_handler_tail(void* arg1, void* arg2, void* arg3)
16      {
17        ...code_after()...;
18        longjmp(...);
19      }
20      int my_handler(void* fault_address, int serious)
21      {
22        ...code_before()...;
23        #if LIBSIGSEGV_VERSION >= 0x0206
24        return sigsegv_leave_handler(my_handler_tail, arg, NULL, NULL);
25        #else
26        sigsegv_leave_handler();
27        my_handler_tail(arg, NULL, NULL);
28        /* NOTREACHED */
29        abort();
30        #endif
31      }
32 * sigsegv_leave_handler now works correctly on MacOS X.
33 * Support for 64-bit ABI on MacOS X 10.5.
34 * Support for building universal binaries on MacOS X.
35 * Improved distinction between stack overflow and other fault on NetBSD,
36   OpenBSD, FreeBSD, Linux, AIX, Solaris. Contributed by Eric Blake.
37 * GNU gnulib now has an autoconf macro for locating libsigsegv:
38   http://www.gnu.org/software/gnulib/MODULES.html#module=libsigsegv
40 New in 2.5:
42 * Support for MacOS X 10.5.
44 New in 2.4:
46 * Support for GCC 4 on more platforms.
47 * Added support for catching stack overflow on NetBSD.
48 * Improved support for catching stack overflow on Linux, Solaris:
49   Works also when /proc is not mounted or lacks read permissions.
51 New in 2.3:
53 * Support for GCC 4 on some platforms contributed by Paolo Bonzini.
54 * Support for MacOS X i386 contributed by Bruno Haible.
55 * Improved support for Woe32 contributed by Doug Currie.
57 New in 2.2:
59 * Support for new versions of MacOS X contributed by Paolo Bonzini.
60 * Improved support for AIX 5, contributed by Bruno Haible.
62 New in 2.1:
64 * Support for MacOS X contributed by Paolo Bonzini.
65 * Support for Cygwin contributed by Paolo Bonzini.
66 * Support for Linux/ia64 and Linux/hppa contributed by Bruno Haible.
67 * Support for OpenBSD/i386 contributed by Bruno Haible.
68 * Support for NetBSD/alpha contributed by Paolo Bonzini.
70 New in 2.0:
72 * Modernized infrastructure.
73 * Added support for catching stack overflow on AIX 4, HP-UX, and BeOS.
74 * Dropped support for NeXTstep.
75 * The function sigsegv_leave_handler() no longer restores the signal mask.
76   This must now be done by the calling handler (either through sigprocmask
77   or through siglongjmp).
79 New in 1.2:
81 * Support for HP-UX contributed by Paolo Bonzini.
83 New in 1.1:
85 * Catching stack overflow now works on some Unix systems:
86   - Linux 2.2.x with glibc-2.1,
87   - Sun Solaris,
88   - DEC OSF/1 4.0,
89   - SGI Irix.