unwind-resume.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* Copyright (C) 2003 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Jakub Jelinek <jakub@redhat.com>.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public License as
  6. published by the Free Software Foundation; either version 2.1 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If
  14. not, see <http://www.gnu.org/licenses/>. */
  15. #include <dlfcn.h>
  16. #include <stdio.h>
  17. #include <stdlib.h>
  18. #include <unwind.h>
  19. #include <libgcc_s.h>
  20. #define __libc_dlopen(x) dlopen(x, (RTLD_LOCAL | RTLD_LAZY))
  21. #define __libc_dlsym dlsym
  22. #define __libc_dlclose dlclose
  23. static void (*libgcc_s_resume) (struct _Unwind_Exception *exc);
  24. static _Unwind_Reason_Code (*libgcc_s_personality)
  25. (int, _Unwind_Action, _Unwind_Exception_Class, struct _Unwind_Exception *,
  26. struct _Unwind_Context *);
  27. extern
  28. void abort(void);
  29. static void
  30. init (void)
  31. {
  32. void *resume, *personality;
  33. void *handle;
  34. resume = personality = NULL;
  35. handle = dlopen (LIBGCC_S_SO, (RTLD_LOCAL | RTLD_LAZY));
  36. if (handle == NULL
  37. || (resume = dlsym (handle, "_Unwind_Resume")) == NULL
  38. || (personality = dlsym (handle, "__gcc_personality_v0")) == NULL)
  39. {
  40. printf (LIBGCC_S_SO " must be installed for pthread_cancel to work\n");
  41. abort();
  42. }
  43. libgcc_s_resume = resume;
  44. libgcc_s_personality = personality;
  45. }
  46. void
  47. _Unwind_Resume (struct _Unwind_Exception *exc)
  48. {
  49. if (__builtin_expect (libgcc_s_resume == NULL, 0))
  50. init ();
  51. libgcc_s_resume (exc);
  52. }
  53. _Unwind_Reason_Code
  54. __gcc_personality_v0 (int version, _Unwind_Action actions,
  55. _Unwind_Exception_Class exception_class,
  56. struct _Unwind_Exception *ue_header,
  57. struct _Unwind_Context *context);
  58. _Unwind_Reason_Code
  59. __gcc_personality_v0 (int version, _Unwind_Action actions,
  60. _Unwind_Exception_Class exception_class,
  61. struct _Unwind_Exception *ue_header,
  62. struct _Unwind_Context *context)
  63. {
  64. if (__builtin_expect (libgcc_s_personality == NULL, 0))
  65. init ();
  66. return libgcc_s_personality (version, actions, exception_class,
  67. ue_header, context);
  68. }