![]() |
Shadowrun: Awakened 29 September 2011 - Build 871
|
00001 /* 00002 Copyright 2005-2010 Intel Corporation. All Rights Reserved. 00003 00004 This file is part of Threading Building Blocks. 00005 00006 Threading Building Blocks is free software; you can redistribute it 00007 and/or modify it under the terms of the GNU General Public License 00008 version 2 as published by the Free Software Foundation. 00009 00010 Threading Building Blocks is distributed in the hope that it will be 00011 useful, but WITHOUT ANY WARRANTY; without even the implied warranty 00012 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with Threading Building Blocks; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 00019 As a special exception, you may use this file as part of a free software 00020 library without restriction. Specifically, if other files instantiate 00021 templates or use macros or inline functions from this file, or you compile 00022 this file and link it with other files to produce an executable, this 00023 file does not by itself cause the resulting executable to be covered by 00024 the GNU General Public License. This exception does not however 00025 invalidate any other reasons why the executable file might be covered by 00026 the GNU General Public License. 00027 */ 00028 00029 #ifndef __TBB_machine_H 00030 #error Do not include this file directly; include tbb_machine.h instead 00031 #endif 00032 00033 #include <stdint.h> 00034 #include <unistd.h> 00035 #include <sched.h> 00036 00037 // Definition of __TBB_Yield() 00038 #ifndef __TBB_Yield 00039 #define __TBB_Yield() sched_yield() 00040 #endif 00041 00042 /* Futex definitions */ 00043 #include <sys/syscall.h> 00044 00045 #if defined(SYS_futex) 00046 00047 #define __TBB_USE_FUTEX 1 00048 #include <limits.h> 00049 #include <errno.h> 00050 // Unfortunately, some versions of Linux do not have a header that defines FUTEX_WAIT and FUTEX_WAKE. 00051 00052 #ifdef FUTEX_WAIT 00053 #define __TBB_FUTEX_WAIT FUTEX_WAIT 00054 #else 00055 #define __TBB_FUTEX_WAIT 0 00056 #endif 00057 00058 #ifdef FUTEX_WAKE 00059 #define __TBB_FUTEX_WAKE FUTEX_WAKE 00060 #else 00061 #define __TBB_FUTEX_WAKE 1 00062 #endif 00063 00064 #ifndef __TBB_ASSERT 00065 #error machine specific headers must be included after tbb_stddef.h 00066 #endif 00067 00068 namespace tbb { 00069 00070 namespace internal { 00071 00072 inline int futex_wait( void *futex, int comparand ) { 00073 int r = ::syscall( SYS_futex,futex,__TBB_FUTEX_WAIT,comparand,NULL,NULL,0 ); 00074 #if TBB_USE_ASSERT 00075 int e = errno; 00076 __TBB_ASSERT( r==0||r==EWOULDBLOCK||(r==-1&&(e==EAGAIN||e==EINTR)), "futex_wait failed." ); 00077 #endif /* TBB_USE_ASSERT */ 00078 return r; 00079 } 00080 00081 inline int futex_wakeup_one( void *futex ) { 00082 int r = ::syscall( SYS_futex,futex,__TBB_FUTEX_WAKE,1,NULL,NULL,0 ); 00083 __TBB_ASSERT( r==0||r==1, "futex_wakeup_one: more than one thread woken up?" ); 00084 return r; 00085 } 00086 00087 inline int futex_wakeup_all( void *futex ) { 00088 int r = ::syscall( SYS_futex,futex,__TBB_FUTEX_WAKE,INT_MAX,NULL,NULL,0 ); 00089 __TBB_ASSERT( r>=0, "futex_wakeup_all: error in waking up threads" ); 00090 return r; 00091 } 00092 00093 } /* namespace internal */ 00094 00095 } /* namespace tbb */ 00096 00097 #endif /* SYS_futex */
Copyright © 2007-2010 by The Shadowrun: Awakened Team. This work is licensed under the GNU Lesser General Public License 3.