00001 /* Copyright (C) 2008, 2009, 2011 Free Software Foundation, Inc. 00002 Contributed by Jakub Jelinek <jakub@redhat.com>. 00003 00004 This file is part of the GNU OpenMP Library (libgomp). 00005 00006 Libgomp is free software; you can redistribute it and/or modify it 00007 under the terms of the GNU General Public License as published by 00008 the Free Software Foundation; either version 3, or (at your option) 00009 any later version. 00010 00011 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY 00012 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00013 FOR A PARTICULAR PURPOSE. See the GNU General Public License for 00014 more details. 00015 00016 Under Section 7 of GPL version 3, you are granted additional 00017 permissions described in the GCC Runtime Library Exception, version 00018 3.1, as published by the Free Software Foundation. 00019 00020 You should have received a copy of the GNU General Public License and 00021 a copy of the GCC Runtime Library Exception along with this program; 00022 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see 00023 <http://www.gnu.org/licenses/>. */ 00024 00025 /* This is a Linux specific implementation of a mutex synchronization 00026 mechanism for libgomp. This type is private to the library. This 00027 implementation uses atomic instructions and the futex syscall. */ 00028 00029 #ifndef GOMP_WAIT_H 00030 #define GOMP_WAIT_H 1 00031 00032 #include "libgomp.h" 00033 #include <errno.h> 00034 00035 #define FUTEX_WAIT 0 00036 #define FUTEX_WAKE 1 00037 #define FUTEX_PRIVATE_FLAG 128L 00038 00039 #ifdef HAVE_ATTRIBUTE_VISIBILITY 00040 # pragma GCC visibility push(hidden) 00041 #endif 00042 00043 extern long int gomp_futex_wait, gomp_futex_wake; 00044 00045 #include <futex.h> 00046 00047 static inline void do_wait (int *addr, int val) 00048 { 00049 unsigned long long i, count = gomp_spin_count_var; 00050 00051 if (__builtin_expect (gomp_managed_threads > gomp_available_cpus, 0)) 00052 count = gomp_throttled_spin_count_var; 00053 for (i = 0; i < count; i++) 00054 if (__builtin_expect (*addr != val, 0)) 00055 return; 00056 else 00057 cpu_relax (); 00058 futex_wait (addr, val); 00059 } 00060 00061 #ifdef HAVE_ATTRIBUTE_VISIBILITY 00062 # pragma GCC visibility pop 00063 #endif 00064 00065 #endif /* GOMP_WAIT_H */