]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/gnu/unwind-resume.c
Use glibc_likely instead __builtin_expect.
[thirdparty/glibc.git] / sysdeps / gnu / unwind-resume.c
CommitLineData
d4697bc9 1/* Copyright (C) 2003-2014 Free Software Foundation, Inc.
9d79e037
UD
2 This file is part of the GNU C Library.
3 Contributed by Jakub Jelinek <jakub@redhat.com>.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 2.1 of the
8 License, or (at your option) any later version.
9
10 The GNU C 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
59ba27a6
PE
16 License along with the GNU C Library; see the file COPYING.LIB. If
17 not, see <http://www.gnu.org/licenses/>. */
9d79e037
UD
18
19#include <dlfcn.h>
20#include <stdio.h>
21#include <unwind.h>
6e236b92 22#include <gnu/lib-names.h>
9d79e037
UD
23
24static void (*libgcc_s_resume) (struct _Unwind_Exception *exc);
25static _Unwind_Reason_Code (*libgcc_s_personality)
26 (int, _Unwind_Action, _Unwind_Exception_Class, struct _Unwind_Exception *,
27 struct _Unwind_Context *);
28
29static void
30init (void)
31{
32 void *resume, *personality;
33 void *handle;
34
13f6812f 35 handle = __libc_dlopen (LIBGCC_S_SO);
9d79e037
UD
36
37 if (handle == NULL
38 || (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL
39 || (personality = __libc_dlsym (handle, "__gcc_personality_v0")) == NULL)
13f6812f 40 __libc_fatal (LIBGCC_S_SO " must be installed for pthread_cancel to work\n");
9d79e037
UD
41
42 libgcc_s_resume = resume;
43 libgcc_s_personality = personality;
44}
45
46void
47_Unwind_Resume (struct _Unwind_Exception *exc)
48{
a1ffb40e 49 if (__glibc_unlikely (libgcc_s_resume == NULL))
9d79e037
UD
50 init ();
51 libgcc_s_resume (exc);
52}
53
54_Unwind_Reason_Code
55__gcc_personality_v0 (int version, _Unwind_Action actions,
56 _Unwind_Exception_Class exception_class,
57 struct _Unwind_Exception *ue_header,
58 struct _Unwind_Context *context)
59{
a1ffb40e 60 if (__glibc_unlikely (libgcc_s_personality == NULL))
9d79e037
UD
61 init ();
62 return libgcc_s_personality (version, actions, exception_class,
63 ue_header, context);
64}