unwind-resume.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 not,
  14. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA. */
  16. #include <dlfcn.h>
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. #include <unwind.h>
  20. #include <libgcc_s.h>
  21. #define __libc_dlopen(x) dlopen(x, (RTLD_LOCAL | RTLD_LAZY))
  22. #define __libc_dlsym dlsym
  23. #define __libc_dlclose dlclose
  24. static void (*libgcc_s_resume) (struct _Unwind_Exception *exc);
  25. static _Unwind_Reason_Code (*libgcc_s_personality)
  26. (int, _Unwind_Action, _Unwind_Exception_Class, struct _Unwind_Exception *,
  27. struct _Unwind_Context *);
  28. extern
  29. void abort(void);
  30. static void
  31. init (void)
  32. {
  33. void *resume, *personality;
  34. void *handle;
  35. resume = personality = NULL;
  36. handle = dlopen (LIBGCC_S_SO, (RTLD_LOCAL | RTLD_LAZY));
  37. if (handle == NULL
  38. || (resume = dlsym (handle, "_Unwind_Resume")) == NULL
  39. || (personality = dlsym (handle, "__gcc_personality_v0")) == NULL)
  40. {
  41. printf (LIBGCC_S_SO " must be installed for pthread_cancel to work\n");
  42. abort();
  43. }
  44. libgcc_s_resume = resume;
  45. libgcc_s_personality = personality;
  46. }
  47. void
  48. _Unwind_Resume (struct _Unwind_Exception *exc)
  49. {
  50. if (__builtin_expect (libgcc_s_resume == NULL, 0))
  51. init ();
  52. libgcc_s_resume (exc);
  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. {
  60. if (__builtin_expect (libgcc_s_personality == NULL, 0))
  61. init ();
  62. return libgcc_s_personality (version, actions, exception_class,
  63. ue_header, context);
  64. }