1 /* Copyright (C) 2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Jakub Jelinek <jakub@redhat.com>, 2002.
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
23 #include "internals.h"
26 #include <bits/libc-lock.h>
28 #if !defined NOT_IN_libc
31 weak_extern (__pthread_do_exit
)
34 int __libc_multiple_threads attribute_hidden
__attribute__((nocommon
));
35 strong_alias (__libc_multiple_threads
, __librt_multiple_threads
);
37 /* The next two functions are similar to pthread_setcanceltype() but
38 more specialized for the use in the cancelable functions like write().
39 They do not need to check parameters etc. */
42 __libc_enable_asynccancel (void)
44 pthread_descr self
= thread_self();
45 int oldtype
= LIBC_THREAD_GETMEM(self
, p_canceltype
);
46 LIBC_THREAD_SETMEM(self
, p_canceltype
, PTHREAD_CANCEL_ASYNCHRONOUS
);
47 if (__builtin_expect (LIBC_THREAD_GETMEM(self
, p_canceled
), 0) &&
48 LIBC_THREAD_GETMEM(self
, p_cancelstate
) == PTHREAD_CANCEL_ENABLE
)
49 __libc_maybe_call2 (pthread_do_exit
,
50 (PTHREAD_CANCELED
, CURRENT_STACK_FRAME
), 0);
53 strong_alias (__libc_enable_asynccancel
, __librt_enable_asynccancel
)
56 internal_function attribute_hidden
57 __libc_disable_asynccancel (int oldtype
)
59 pthread_descr self
= thread_self();
60 LIBC_THREAD_SETMEM(self
, p_canceltype
, oldtype
);
62 strong_alias (__libc_disable_asynccancel
, __librt_disable_asynccancel
)