atexit.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /* Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk>
  2. * This file is part of the Linux-8086 C library and is distributed
  3. * under the GNU Library General Public License.
  4. */
  5. /*
  6. * Dec 2000 Manuel Novoa III
  7. *
  8. * Made atexit handling conform to standards... i.e. no args.
  9. * Removed on_exit since it did not match gnu libc definition.
  10. * Combined atexit and __do_exit into one object file.
  11. *
  12. * Feb 2001 Manuel Novoa III
  13. *
  14. * Reworked file after addition of __uClibc_main.
  15. * Changed name of __do_exit to atexit_handler.
  16. * Changed name of __cleanup to __uClibc_cleanup.
  17. * Moved declaration of __uClibc_cleanup to __uClibc_main
  18. * where it is initialized with (possibly weak alias)
  19. * _stdio_term.
  20. *
  21. * Jul 2001 Steve Thayer
  22. *
  23. * Added an on_exit implementation (that now matches gnu libc definition.)
  24. * Pulled atexit_handler out of the atexit object since it is now required by
  25. * on_exit as well. Renamed it to __exit_handler.
  26. * Fixed a problem where exit functions stop getting called if one of
  27. * them calls exit().
  28. * As a side effect of these changes, abort() no longer calls the exit
  29. * functions (it now matches the gnu libc definition).
  30. *
  31. * August 2002 Erik Andersen
  32. * Added locking so atexit and friends can be thread safe
  33. *
  34. */
  35. #define _GNU_SOURCE
  36. #include <features.h>
  37. #include <unistd.h>
  38. #include <stdlib.h>
  39. #include <errno.h>
  40. #ifdef __UCLIBC_HAS_THREADS__
  41. #include <pthread.h>
  42. extern pthread_mutex_t mylock;
  43. # define LOCK pthread_mutex_lock(&mylock)
  44. # define UNLOCK pthread_mutex_unlock(&mylock);
  45. #else
  46. # define LOCK
  47. # define UNLOCK
  48. #endif
  49. #define __MAX_EXIT __UCLIBC_MAX_ATEXIT
  50. typedef void (*aefuncp) (void); /* atexit function pointer */
  51. typedef void (*oefuncp) (int, void *); /* on_exit function pointer */
  52. typedef enum {
  53. ef_atexit,
  54. ef_on_exit
  55. } ef_type; /* exit function types */
  56. /* this is in the L_exit object */
  57. extern void (*__exit_cleanup) (int);
  58. /* these are in the L___do_exit object */
  59. extern int __exit_count;
  60. extern void __exit_handler(int);
  61. extern struct exit_function {
  62. ef_type type; /* ef_atexit or ef_on_exit */
  63. union {
  64. aefuncp atexit;
  65. struct {
  66. oefuncp func;
  67. void *arg;
  68. } on_exit;
  69. } funcs;
  70. } __exit_function_table[__MAX_EXIT];
  71. #ifdef L_atexit
  72. /*
  73. * register a function to be called at normal program termination
  74. * (the registered function takes no arguments)
  75. */
  76. int atexit(aefuncp func)
  77. {
  78. struct exit_function *efp;
  79. LOCK;
  80. if (__exit_count >= __MAX_EXIT) {
  81. UNLOCK;
  82. __set_errno(ENOMEM);
  83. return -1;
  84. }
  85. if (func) {
  86. __exit_cleanup = __exit_handler; /* enable cleanup */
  87. efp = &__exit_function_table[__exit_count++];
  88. efp->type = ef_atexit;
  89. efp->funcs.atexit = func;
  90. }
  91. UNLOCK;
  92. return 0;
  93. }
  94. #endif
  95. #ifdef L_on_exit
  96. /*
  97. * register a function to be called at normal program termination
  98. * the registered function takes two arguments:
  99. * status - the exit status that was passed to the exit() function
  100. * arg - generic argument
  101. */
  102. int on_exit(oefuncp func, void *arg)
  103. {
  104. struct exit_function *efp;
  105. LOCK;
  106. if (__exit_count >= __MAX_EXIT) {
  107. UNLOCK;
  108. __set_errno(ENOMEM);
  109. return -1;
  110. }
  111. if (func) {
  112. __exit_cleanup = __exit_handler; /* enable cleanup */
  113. efp = &__exit_function_table[__exit_count++];
  114. efp->type = ef_on_exit;
  115. efp->funcs.on_exit.func = func;
  116. efp->funcs.on_exit.arg = arg;
  117. }
  118. UNLOCK;
  119. return 0;
  120. }
  121. #endif
  122. #ifdef L___exit_handler
  123. struct exit_function __exit_function_table[__MAX_EXIT];
  124. int __exit_count = 0; /* Number of registered exit functions */
  125. /*
  126. * Handle the work of executing the registered exit functions
  127. * This is called while we are locked, so no additional locking
  128. * is needed...
  129. */
  130. void __exit_handler(int status)
  131. {
  132. struct exit_function *efp;
  133. /* In reverse order */
  134. while ( __exit_count ) {
  135. efp = &__exit_function_table[--__exit_count];
  136. switch (efp->type) {
  137. case ef_on_exit:
  138. if (efp->funcs.on_exit.func) {
  139. (efp->funcs.on_exit.func) (status, efp->funcs.on_exit.arg);
  140. }
  141. break;
  142. case ef_atexit:
  143. if (efp->funcs.atexit) {
  144. (efp->funcs.atexit) ();
  145. }
  146. break;
  147. }
  148. }
  149. }
  150. #endif
  151. #ifdef L_exit
  152. extern void weak_function _stdio_term(void);
  153. void (*__exit_cleanup) (int) = 0;
  154. #ifdef __UCLIBC_HAS_THREADS__
  155. pthread_mutex_t mylock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
  156. #endif
  157. /*
  158. * Normal program termination
  159. */
  160. void exit(int rv)
  161. {
  162. /* Perform exit-specific cleanup (atexit and on_exit) */
  163. LOCK;
  164. if (__exit_cleanup) {
  165. __exit_cleanup(rv);
  166. }
  167. UNLOCK;
  168. /* If we are using stdio, try to shut it down. At the very least,
  169. * this will attempt to commit all buffered writes. It may also
  170. * unbuffer all writable files, or close them outright.
  171. * Check the stdio routines for details. */
  172. if (_stdio_term)
  173. _stdio_term();
  174. _exit(rv);
  175. }
  176. #endif