/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/utility/eh_globals.cpp

  • Committer: edam
  • Date: 2012-02-25 01:31:43 UTC
  • Revision ID: tim@ed.am-20120225013143-9fet2y2d3fjlrwez
added ulibc

Show diffs side-by-side

added added

removed removed

 
1
/*      Copyright (C) 2006 Garrett A. Kajmowicz
 
2
 
 
3
        This file is part of the uClibc++ Library.
 
4
 
 
5
        This library is free software; you can redistribute it and/or
 
6
        modify it under the terms of the GNU Lesser General Public
 
7
        License as published by the Free Software Foundation, version 2.1
 
8
        of the License.
 
9
 
 
10
        This library is distributed in the hope that it will be useful,
 
11
        but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
        Lesser General Public License for more details.
 
14
 
 
15
        You should have received a copy of the GNU Lesser General Public
 
16
        License along with this library; if not, write to the Free Software
 
17
        Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
*/
 
19
 
 
20
#include <cstdlib>
 
21
#include <cstring>
 
22
#include <func_exception>
 
23
 
 
24
//This is a system-specific header which does all of the error-handling management
 
25
#include <unwind-cxx.h>
 
26
 
 
27
//The following functionality is derived from reading of the GNU libstdc++ code and making it...simple
 
28
 
 
29
 
 
30
namespace __cxxabiv1{
 
31
 
 
32
static __UCLIBCXX_TLS __cxa_eh_globals eh_globals;
 
33
 
 
34
extern "C" __cxa_eh_globals* __cxa_get_globals() throw(){
 
35
        return &eh_globals;
 
36
}
 
37
 
 
38
extern "C" __cxa_eh_globals* __cxa_get_globals_fast() throw(){
 
39
        return &eh_globals;
 
40
}
 
41
 
 
42
}