[haiku-commits] haiku: hrev51101 - src/system/libroot/posix/stdlib

  • From: waddlesplash@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 15 Apr 2017 02:48:06 +0200 (CEST)

hrev51101 adds 1 changeset to branch 'master'
old head: a5d208c7d692263626f4eb56f41f494a5a924915
new head: 17f5ac91494ce873f08fb7653d767bb2c5846fff
overview: 
http://cgit.haiku-os.org/haiku/log/?qt=range&q=17f5ac91494c+%5Ea5d208c7d692

----------------------------------------------------------------------------

17f5ac91494c: libroot: Restore exit() call after debugger().
  
  Thanks PulkoMandy for the review.

                              [ Augustin Cavalier <waddlesplash@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev51101
Commit:      17f5ac91494ce873f08fb7653d767bb2c5846fff
URL:         http://cgit.haiku-os.org/haiku/commit/?id=17f5ac91494c
Author:      Augustin Cavalier <waddlesplash@xxxxxxxxx>
Date:        Fri Apr 14 22:29:29 2017 UTC

----------------------------------------------------------------------------

1 file changed, 1 insertion(+)
src/system/libroot/posix/stdlib/exit.cpp | 1 +

----------------------------------------------------------------------------

diff --git a/src/system/libroot/posix/stdlib/exit.cpp 
b/src/system/libroot/posix/stdlib/exit.cpp
index 9fba1eb..0e10309 100644
--- a/src/system/libroot/posix/stdlib/exit.cpp
+++ b/src/system/libroot/posix/stdlib/exit.cpp
@@ -290,6 +290,7 @@ abort()
 
        raise(SIGABRT);
        debugger("abort() called");
+       exit(EXIT_FAILURE);
 }
 
 


Other related posts:

  • » [haiku-commits] haiku: hrev51101 - src/system/libroot/posix/stdlib - waddlesplash