ptlongjmp.c 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. /* Linuxthreads - a simple clone()-based implementation of Posix */
  2. /* threads for Linux. */
  3. /* Copyright (C) 1998 Xavier Leroy (Xavier.Leroy@inria.fr) */
  4. /* */
  5. /* This program is free software; you can redistribute it and/or */
  6. /* modify it under the terms of the GNU Library General Public License */
  7. /* as published by the Free Software Foundation; either version 2 */
  8. /* of the License, or (at your option) any later version. */
  9. /* */
  10. /* This program 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 */
  13. /* GNU Library General Public License for more details. */
  14. /* Redefine siglongjmp and longjmp so that they interact correctly
  15. with cleanup handlers */
  16. #include <setjmp.h>
  17. #include "pthread.h"
  18. #include "internals.h"
  19. #ifdef SHARED
  20. void siglongjmp (sigjmp_buf env, int val)
  21. {
  22. __libc_siglongjmp (env, val);
  23. }
  24. void longjmp (jmp_buf env, int val)
  25. {
  26. __libc_longjmp (env, val);
  27. }
  28. #endif