forward.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /* Copyright (C) 2002, 2003, 2004, 2007 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
  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
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the 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; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <dlfcn.h>
  17. #include <pthreadP.h>
  18. #include <signal.h>
  19. #include <stdlib.h>
  20. #include <atomic.h>
  21. #include <sysdep.h>
  22. /* Pointers to the libc functions. */
  23. struct pthread_functions __libc_pthread_functions attribute_hidden;
  24. int __libc_pthread_functions_init attribute_hidden;
  25. #define FORWARD2(name, rettype, decl, params, defaction) \
  26. rettype \
  27. name decl \
  28. { \
  29. if (!__libc_pthread_functions_init) { \
  30. defaction; \
  31. } else { \
  32. return PTHFCT_CALL (ptr_##name, params); \
  33. } \
  34. }
  35. #define FORWARD(name, decl, params, defretval) \
  36. FORWARD2 (name, int, decl, params, return defretval)
  37. FORWARD (pthread_attr_destroy, (pthread_attr_t *attr), (attr), 0)
  38. FORWARD (__pthread_attr_init_2_1, (pthread_attr_t *attr), (attr), 0)
  39. weak_alias(__pthread_attr_init_2_1, pthread_attr_init)
  40. FORWARD (pthread_attr_getdetachstate,
  41. (const pthread_attr_t *attr, int *detachstate), (attr, detachstate),
  42. 0)
  43. FORWARD (pthread_attr_setdetachstate, (pthread_attr_t *attr, int detachstate),
  44. (attr, detachstate), 0)
  45. FORWARD (pthread_attr_getinheritsched,
  46. (const pthread_attr_t *attr, int *inherit), (attr, inherit), 0)
  47. FORWARD (pthread_attr_setinheritsched, (pthread_attr_t *attr, int inherit),
  48. (attr, inherit), 0)
  49. FORWARD (pthread_attr_getschedparam,
  50. (const pthread_attr_t *attr, struct sched_param *param),
  51. (attr, param), 0)
  52. FORWARD (pthread_attr_setschedparam,
  53. (pthread_attr_t *attr, const struct sched_param *param),
  54. (attr, param), 0)
  55. FORWARD (pthread_attr_getschedpolicy,
  56. (const pthread_attr_t *attr, int *policy), (attr, policy), 0)
  57. FORWARD (pthread_attr_setschedpolicy, (pthread_attr_t *attr, int policy),
  58. (attr, policy), 0)
  59. FORWARD (pthread_attr_getscope,
  60. (const pthread_attr_t *attr, int *scope), (attr, scope), 0)
  61. FORWARD (pthread_attr_setscope, (pthread_attr_t *attr, int scope),
  62. (attr, scope), 0)
  63. FORWARD (pthread_condattr_destroy, (pthread_condattr_t *attr), (attr), 0)
  64. FORWARD (pthread_condattr_init, (pthread_condattr_t *attr), (attr), 0)
  65. FORWARD (__pthread_cond_broadcast, (pthread_cond_t *cond), (cond), 0)
  66. weak_alias(__pthread_cond_broadcast, pthread_cond_broadcast)
  67. FORWARD (__pthread_cond_destroy, (pthread_cond_t *cond), (cond), 0)
  68. weak_alias(__pthread_cond_destroy, pthread_cond_destroy)
  69. FORWARD (__pthread_cond_init,
  70. (pthread_cond_t *cond, const pthread_condattr_t *cond_attr),
  71. (cond, cond_attr), 0)
  72. weak_alias(__pthread_cond_init, pthread_cond_init)
  73. FORWARD (__pthread_cond_signal, (pthread_cond_t *cond), (cond), 0)
  74. weak_alias(__pthread_cond_signal, pthread_cond_signal)
  75. FORWARD (__pthread_cond_wait, (pthread_cond_t *cond, pthread_mutex_t *mutex),
  76. (cond, mutex), 0)
  77. weak_alias(__pthread_cond_wait, pthread_cond_wait)
  78. FORWARD (__pthread_cond_timedwait,
  79. (pthread_cond_t *cond, pthread_mutex_t *mutex,
  80. const struct timespec *abstime), (cond, mutex, abstime), 0)
  81. weak_alias(__pthread_cond_timedwait, pthread_cond_timedwait)
  82. FORWARD (pthread_equal, (pthread_t thread1, pthread_t thread2),
  83. (thread1, thread2), 1)
  84. /* Use an alias to avoid warning, as pthread_exit is declared noreturn. */
  85. FORWARD2 (__pthread_exit, void, (void *retval), (retval), exit (EXIT_SUCCESS))
  86. strong_alias (__pthread_exit, pthread_exit);
  87. FORWARD (pthread_getschedparam,
  88. (pthread_t target_thread, int *policy, struct sched_param *param),
  89. (target_thread, policy, param), 0)
  90. FORWARD (pthread_setschedparam,
  91. (pthread_t target_thread, int policy,
  92. const struct sched_param *param), (target_thread, policy, param), 0)
  93. FORWARD (pthread_mutex_destroy, (pthread_mutex_t *mutex), (mutex), 0)
  94. FORWARD (pthread_mutex_init,
  95. (pthread_mutex_t *mutex, const pthread_mutexattr_t *mutexattr),
  96. (mutex, mutexattr), 0)
  97. FORWARD (pthread_mutex_lock, (pthread_mutex_t *mutex), (mutex), 0)
  98. weak_alias (pthread_mutex_lock, __pthread_mutex_lock)
  99. FORWARD (pthread_mutex_unlock, (pthread_mutex_t *mutex), (mutex), 0)
  100. weak_alias (pthread_mutex_unlock, __pthread_mutex_unlock)
  101. FORWARD2 (pthread_self, pthread_t, (void), (), return 0)
  102. FORWARD (pthread_setcancelstate, (int state, int *oldstate), (state, oldstate),
  103. 0)
  104. FORWARD (pthread_setcanceltype, (int type, int *oldtype), (type, oldtype), 0)
  105. #define return /* value is void */
  106. FORWARD2(_pthread_cleanup_push_defer,
  107. void, (struct _pthread_cleanup_buffer *buffer, void (*routine)(void *), void *arg),
  108. (buffer, routine, arg),
  109. { buffer->__routine = routine; buffer->__arg = arg; });
  110. FORWARD2(_pthread_cleanup_pop_restore,
  111. void, (struct _pthread_cleanup_buffer *buffer, int execute),
  112. (buffer, execute),
  113. if (execute) { buffer->__routine(buffer->__arg); });
  114. FORWARD2(__pthread_unwind,
  115. void attribute_hidden __attribute ((noreturn)) __cleanup_fct_attribute,
  116. (__pthread_unwind_buf_t *buf), (buf), {
  117. /* We cannot call abort() here. */
  118. INTERNAL_SYSCALL_DECL (err);
  119. INTERNAL_SYSCALL (kill, err, 1, SIGKILL);
  120. })
  121. #undef return