1 /* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@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
21 #include <shlib-compat.h>
22 #include <pthread-errnos.h>
36 .type sem_wait,@function
40 /* First check for cancellation. */
41 movl %fs:CANCELHANDLING, %eax
42 andl $0xfffffff9, %eax
47 cfi_adjust_cfa_offset(8)
50 cfi_adjust_cfa_offset(8)
65 cfi_adjust_cfa_offset(-8)
68 cfi_adjust_cfa_offset(-8)
73 cfi_adjust_cfa_offset(16)
76 1: call __pthread_enable_asynccancel
88 call __pthread_disable_asynccancel
92 cmpq $-EWOULDBLOCK, %r12
96 movq errno@gottpoff(%rip), %rdx
97 movl %r12d, %fs:(%rdx)
99 callq __errno_location@plt
105 cfi_adjust_cfa_offset(-8)
108 cfi_adjust_cfa_offset(-8)
114 movq $0xffffffffffffffff, %fs:RESULT
116 orl $0x10, %fs:CANCELHANDLING
117 movq %fs:CLEANUP_JMP_BUF, %rdi
118 jmp HIDDEN_JUMPTARGET (__pthread_unwind)
120 .size sem_wait,.-sem_wait