linux_common.h 2.9 KB

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