windows_api.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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_windows_api_H
  24. #define __TBB_machine_windows_api_H
  25. #if _WIN32 || _WIN64
  26. #if _XBOX
  27. #define NONET
  28. #define NOD3D
  29. #include <xtl.h>
  30. #else // Assume "usual" Windows
  31. #include <windows.h>
  32. #endif // _XBOX
  33. #if _WIN32_WINNT < 0x0600
  34. // The following Windows API function is declared explicitly;
  35. // otherwise it fails to compile by VS2005.
  36. #if !defined(WINBASEAPI) || (_WIN32_WINNT < 0x0501 && _MSC_VER == 1400)
  37. #define __TBB_WINBASEAPI extern "C"
  38. #else
  39. #define __TBB_WINBASEAPI WINBASEAPI
  40. #endif
  41. __TBB_WINBASEAPI BOOL WINAPI TryEnterCriticalSection( LPCRITICAL_SECTION );
  42. __TBB_WINBASEAPI BOOL WINAPI InitializeCriticalSectionAndSpinCount( LPCRITICAL_SECTION, DWORD );
  43. // Overloading WINBASEAPI macro and using local functions missing in Windows XP/2003
  44. #define InitializeCriticalSectionEx inlineInitializeCriticalSectionEx
  45. #define CreateSemaphoreEx inlineCreateSemaphoreEx
  46. #define CreateEventEx inlineCreateEventEx
  47. inline BOOL WINAPI inlineInitializeCriticalSectionEx( LPCRITICAL_SECTION lpCriticalSection, DWORD dwSpinCount, DWORD )
  48. {
  49. return InitializeCriticalSectionAndSpinCount( lpCriticalSection, dwSpinCount );
  50. }
  51. inline HANDLE WINAPI inlineCreateSemaphoreEx( LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, LONG lInitialCount, LONG lMaximumCount, LPCTSTR lpName, DWORD, DWORD )
  52. {
  53. return CreateSemaphore( lpSemaphoreAttributes, lInitialCount, lMaximumCount, lpName );
  54. }
  55. inline HANDLE WINAPI inlineCreateEventEx( LPSECURITY_ATTRIBUTES lpEventAttributes, LPCTSTR lpName, DWORD dwFlags, DWORD )
  56. {
  57. BOOL manual_reset = dwFlags&0x00000001 ? TRUE : FALSE; // CREATE_EVENT_MANUAL_RESET
  58. BOOL initial_set = dwFlags&0x00000002 ? TRUE : FALSE; // CREATE_EVENT_INITIAL_SET
  59. return CreateEvent( lpEventAttributes, manual_reset, initial_set, lpName );
  60. }
  61. #endif
  62. #if defined(RTL_SRWLOCK_INIT)
  63. #ifndef __TBB_USE_SRWLOCK
  64. // TODO: turn it on when bug 1952 will be fixed
  65. #define __TBB_USE_SRWLOCK 0
  66. #endif
  67. #endif
  68. #else
  69. #error tbb/machine/windows_api.h should only be used for Windows based platforms
  70. #endif // _WIN32 || _WIN64
  71. #endif // __TBB_machine_windows_api_H