1 /* Copyright (C) 2010-2013 Free Software Foundation, Inc.
2 Contributed by ARM Ltd.
4 This file is part of the GNU OpenMP Library (libgomp).
6 Libgomp is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 /* Provide target-specific access to the futex system call. */
27 /* The include file hierachy above us (wait.h) has pushed visibility
28 hidden, this will be applied to prototypes with headers we include
29 with the effect that we cannot link against an external function
30 (syscall). The solution here is to push default visibility, include
31 our required headers then reinstante the original visibility. */
33 #pragma GCC visibility push(default)
37 #include <sys/syscall.h>
39 #pragma GCC visibility pop
42 futex_wait (int *addr
, int val
)
44 long err
= syscall (SYS_futex
, addr
, gomp_futex_wait
, val
, NULL
);
45 if (__builtin_expect (err
== -ENOSYS
, 0))
47 gomp_futex_wait
&= ~FUTEX_PRIVATE_FLAG
;
48 gomp_futex_wake
&= ~FUTEX_PRIVATE_FLAG
;
49 syscall (SYS_futex
, addr
, gomp_futex_wait
, val
, NULL
);
54 futex_wake (int *addr
, int count
)
56 long err
= syscall (SYS_futex
, addr
, gomp_futex_wake
, count
);
57 if (__builtin_expect (err
== -ENOSYS
, 0))
59 gomp_futex_wait
&= ~FUTEX_PRIVATE_FLAG
;
60 gomp_futex_wake
&= ~FUTEX_PRIVATE_FLAG
;
61 syscall (SYS_futex
, addr
, gomp_futex_wake
, count
);
68 __asm
volatile ("" : : : "memory");