4776d22a916b4083a7419dcf166d88a0bfd849c4
[platform/upstream/libunwind.git] / src / sh / Gglobal.c
1 /* libunwind - a platform-independent unwind library
2    Copyright (C) 2008 CodeSourcery
3    Copyright (C) 2012 Tommi Rantala <tt.rantala@gmail.com>
4
5 This file is part of libunwind.
6
7 Permission is hereby granted, free of charge, to any person obtaining
8 a copy of this software and associated documentation files (the
9 "Software"), to deal in the Software without restriction, including
10 without limitation the rights to use, copy, modify, merge, publish,
11 distribute, sublicense, and/or sell copies of the Software, and to
12 permit persons to whom the Software is furnished to do so, subject to
13 the following conditions:
14
15 The above copyright notice and this permission notice shall be
16 included in all copies or substantial portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
25
26 #include "unwind_i.h"
27 #include "dwarf_i.h"
28
29 HIDDEN define_lock (sh_lock);
30 HIDDEN int tdep_init_done;
31
32 HIDDEN void
33 tdep_init (void)
34 {
35   intrmask_t saved_mask;
36
37   sigfillset (&unwi_full_mask);
38
39   lock_acquire (&sh_lock, saved_mask);
40   {
41     if (tdep_init_done)
42       /* another thread else beat us to it... */
43       goto out;
44
45     mi_init ();
46
47     dwarf_init ();
48
49 #ifndef UNW_REMOTE_ONLY
50     sh_local_addr_space_init ();
51 #endif
52     tdep_init_done = 1; /* signal that we're initialized... */
53   }
54  out:
55   lock_release (&sh_lock, saved_mask);
56 }