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>, 2003.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library 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 GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
25 extern void _pthread_cleanup_push (struct _pthread_cleanup_buffer
*__buffer
,
26 void (*__routine
) (void *),
28 extern void _pthread_cleanup_pop (struct _pthread_cleanup_buffer
*__buffer
,
31 extern void clh (void *arg
);
32 extern void fn0 (void);
33 extern void fn1 (void);
34 extern void fn5 (void);
35 extern void fn7 (void);
36 extern void fn9 (void);
39 static __attribute__((noinline
)) void
42 /* This is the old LinuxThreads pthread_cleanup_{push,pop}. */
43 struct _pthread_cleanup_buffer b
;
44 _pthread_cleanup_push (&b
, clh
, (void *) 4l);
48 _pthread_cleanup_pop (&b
, 1);
52 static __attribute__((noinline
)) void
55 pthread_cleanup_push (clh
, (void *) 5l);
59 pthread_cleanup_pop (1);
66 /* This is the old LinuxThreads pthread_cleanup_{push,pop}. */
67 struct _pthread_cleanup_buffer b
;
68 _pthread_cleanup_push (&b
, clh
, (void *) 6l);
72 _pthread_cleanup_pop (&b
, 1);
76 static __attribute__((noinline
)) void
79 pthread_cleanup_push (clh
, (void *) 7l);
83 pthread_cleanup_pop (1);
90 /* This is the old LinuxThreads pthread_cleanup_{push,pop}. */
91 struct _pthread_cleanup_buffer b
;
92 _pthread_cleanup_push (&b
, clh
, (void *) 8l);
96 _pthread_cleanup_pop (&b
, 1);
100 static __attribute__((noinline
)) void
103 pthread_cleanup_push (clh
, (void *) 9l);
107 pthread_cleanup_pop (1);
114 /* This is the old LinuxThreads pthread_cleanup_{push,pop}. */
115 struct _pthread_cleanup_buffer b
;
116 _pthread_cleanup_push (&b
, clh
, (void *) 10l);
120 _pthread_cleanup_pop (&b
, 1);