once.hpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #ifndef BOOST_THREAD_ONCE_HPP
  2. #define BOOST_THREAD_ONCE_HPP
  3. // once.hpp
  4. //
  5. // (C) Copyright 2006-7 Anthony Williams
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See
  8. // accompanying file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. #include <boost/thread/detail/config.hpp>
  11. #include <boost/thread/detail/platform.hpp>
  12. #if defined(BOOST_THREAD_PLATFORM_WIN32)
  13. #include <boost/thread/win32/once.hpp>
  14. #elif defined(BOOST_THREAD_PLATFORM_PTHREAD)
  15. #if defined BOOST_THREAD_ONCE_FAST_EPOCH
  16. #include <boost/thread/pthread/once.hpp>
  17. #elif defined BOOST_THREAD_ONCE_ATOMIC
  18. #include <boost/thread/pthread/once_atomic.hpp>
  19. #else
  20. #error "Once Not Implemented"
  21. #endif
  22. #else
  23. #error "Boost threads unavailable on this platform"
  24. #endif
  25. #include <boost/config/abi_prefix.hpp>
  26. namespace boost
  27. {
  28. // template<class Callable, class ...Args> void
  29. // call_once(once_flag& flag, Callable&& func, Args&&... args);
  30. template<typename Function>
  31. inline void call_once(Function func,once_flag& flag)
  32. //inline void call_once(void (*func)(),once_flag& flag)
  33. {
  34. call_once(flag,func);
  35. }
  36. }
  37. #include <boost/config/abi_suffix.hpp>
  38. #endif