(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / linuxthreads / libc-cancellation.c
blobc28920feb371d31640db79bc43227ba0c9dfb3d1
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
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <rpc/rpc.h>
22 #include "pthread.h"
23 #include "internals.h"
24 #include "spinlock.h"
25 #include "restart.h"
26 #include <bits/libc-lock.h>
28 #if !defined NOT_IN_libc
30 # ifndef SHARED
31 weak_extern (__pthread_do_exit)
32 # endif
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. */
40 int
41 attribute_hidden
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);
51 return oldtype;
53 strong_alias (__libc_enable_asynccancel, __librt_enable_asynccancel)
55 void
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)
64 #endif