summaryrefslogtreecommitdiff
path: root/misc/uClibc++/libxx/uClibc++/eh_terminate.cxx
blob: 03c336a49fc21178dd7dc2b4baeeae75cd290965 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* Copyright (C) 2004 Garrett A. Kajmowicz
 *
 * This file is part of the uClibc++ Library.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <cstdlib>
#include <exception>

namespace std
{
  _UCXXEXPORT static terminate_handler __terminate_handler = abort;
  _UCXXEXPORT static unexpected_handler __unexpected_handler = terminate;

  // Takes a new handler function as an argument, returns the old function.

  _UCXXEXPORT terminate_handler set_terminate(terminate_handler func) throw()
  {
    terminate_handler old = __terminate_handler;
    __terminate_handler = func;
    return old;
  }

  /** The runtime will call this function if %exception handling must be
   *  abandoned for any reason.
   */

  _UCXXEXPORT void terminate(void) throw()
  {
    if (__terminate_handler)
      {
        __terminate_handler();
      }

    abort();
  }

  _UCXXEXPORT terminate_handler set_unexpected(unexpected_handler func) throw()
  {
    unexpected_handler old = __unexpected_handler;
    __unexpected_handler = func;
    return old;
  }

  /** The runtime will call this function if an %exception is thrown which
   *  violates the function's %exception specification.
   */

  _UCXXEXPORT void unexpected(void) throw()
  {
    if (__unexpected_handler)
      {
        __unexpected_handler();
      }

    terminate();
  }
}