]> git.sesse.net Git - casparcg/blob - tbb30_20100406oss/include/tbb/machine/linux_common.h
2.0.2: Updated to boost 1.48.
[casparcg] / tbb30_20100406oss / include / tbb / machine / linux_common.h
1 /*
2     Copyright 2005-2010 Intel Corporation.  All Rights Reserved.
3
4     This file is part of Threading Building Blocks.
5
6     Threading Building Blocks is free software; you can redistribute it
7     and/or modify it under the terms of the GNU General Public License
8     version 2 as published by the Free Software Foundation.
9
10     Threading Building Blocks is distributed in the hope that it will be
11     useful, but WITHOUT ANY WARRANTY; without even the implied warranty
12     of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with Threading Building Blocks; if not, write to the Free Software
17     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
19     As a special exception, you may use this file as part of a free software
20     library without restriction.  Specifically, if other files instantiate
21     templates or use macros or inline functions from this file, or you compile
22     this file and link it with other files to produce an executable, this
23     file does not by itself cause the resulting executable to be covered by
24     the GNU General Public License.  This exception does not however
25     invalidate any other reasons why the executable file might be covered by
26     the GNU General Public License.
27 */
28
29 #ifndef __TBB_machine_H
30 #error Do not include this file directly; include tbb_machine.h instead
31 #endif
32
33 #include <stdint.h>
34 #include <unistd.h>
35 #include <sched.h>
36
37 // Definition of __TBB_Yield()
38 #ifndef __TBB_Yield
39 #define __TBB_Yield()  sched_yield()
40 #endif
41
42 /* Futex definitions */
43 #include <sys/syscall.h>
44
45 #if defined(SYS_futex)
46
47 #define __TBB_USE_FUTEX 1
48 #include <limits.h>
49 #include <errno.h>
50 // Unfortunately, some versions of Linux do not have a header that defines FUTEX_WAIT and FUTEX_WAKE.
51
52 #ifdef FUTEX_WAIT
53 #define __TBB_FUTEX_WAIT FUTEX_WAIT
54 #else
55 #define __TBB_FUTEX_WAIT 0
56 #endif
57
58 #ifdef FUTEX_WAKE
59 #define __TBB_FUTEX_WAKE FUTEX_WAKE
60 #else
61 #define __TBB_FUTEX_WAKE 1
62 #endif
63
64 #ifndef __TBB_ASSERT
65 #error machine specific headers must be included after tbb_stddef.h
66 #endif
67
68 namespace tbb {
69
70 namespace internal {
71
72 inline int futex_wait( void *futex, int comparand ) {
73     int r = ::syscall( SYS_futex,futex,__TBB_FUTEX_WAIT,comparand,NULL,NULL,0 );
74 #if TBB_USE_ASSERT
75     int e = errno;
76     __TBB_ASSERT( r==0||r==EWOULDBLOCK||(r==-1&&(e==EAGAIN||e==EINTR)), "futex_wait failed." );
77 #endif /* TBB_USE_ASSERT */
78     return r;
79 }
80
81 inline int futex_wakeup_one( void *futex ) {
82     int r = ::syscall( SYS_futex,futex,__TBB_FUTEX_WAKE,1,NULL,NULL,0 );
83     __TBB_ASSERT( r==0||r==1, "futex_wakeup_one: more than one thread woken up?" );
84     return r;
85 }
86
87 inline int futex_wakeup_all( void *futex ) {
88     int r = ::syscall( SYS_futex,futex,__TBB_FUTEX_WAKE,INT_MAX,NULL,NULL,0 );
89     __TBB_ASSERT( r>=0, "futex_wakeup_all: error in waking up threads" );
90     return r;
91 }
92
93 } /* namespace internal */
94
95 } /* namespace tbb */
96
97 #endif /* SYS_futex */