123456789101112131415161718192021222324252627 |
- #include <pthread.h>
- void __pthread_cleanup_routine (struct __pthread_cleanup_frame *f);
- void
- __pthread_cleanup_routine (struct __pthread_cleanup_frame *f)
- {
- if (f->__do_it)
- f->__cancel_routine (f->__cancel_arg);
- }
|