aligned_alloc.hpp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. (c) 2014-2015 Glen Joseph Fernandes
  3. <glenjofe -at- gmail.com>
  4. Distributed under the Boost Software
  5. License, Version 1.0.
  6. http://boost.org/LICENSE_1_0.txt
  7. */
  8. #ifndef BOOST_ALIGN_ALIGNED_ALLOC_HPP
  9. #define BOOST_ALIGN_ALIGNED_ALLOC_HPP
  10. #include <boost/config.hpp>
  11. #if defined(BOOST_HAS_UNISTD_H)
  12. #include <unistd.h>
  13. #endif
  14. #if defined(__APPLE__) || defined(__APPLE_CC__) || defined(macintosh)
  15. #include <AvailabilityMacros.h>
  16. #endif
  17. #if defined(BOOST_ALIGN_USE_ALLOCATE)
  18. #include <boost/align/detail/aligned_alloc.hpp>
  19. #elif defined(_MSC_VER) && !defined(UNDER_CE)
  20. #include <boost/align/detail/aligned_alloc_msvc.hpp>
  21. #elif defined(__MINGW32__) && (__MSVCRT_VERSION__ >= 0x0700)
  22. #include <boost/align/detail/aligned_alloc_msvc.hpp>
  23. #elif MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
  24. #include <boost/align/detail/aligned_alloc_posix.hpp>
  25. #elif MAC_OS_X_VERSION_MIN_REQUIRED >= 1060
  26. #include <boost/align/detail/aligned_alloc_macos.hpp>
  27. #elif defined(__ANDROID__)
  28. #include <boost/align/detail/aligned_alloc_android.hpp>
  29. #elif defined(__SunOS_5_11) || defined(__SunOS_5_12)
  30. #include <boost/align/detail/aligned_alloc_posix.hpp>
  31. #elif defined(sun) || defined(__sun)
  32. #include <boost/align/detail/aligned_alloc_sunos.hpp>
  33. #elif (_POSIX_C_SOURCE >= 200112L) || (_XOPEN_SOURCE >= 600)
  34. #include <boost/align/detail/aligned_alloc_posix.hpp>
  35. #else
  36. #include <boost/align/detail/aligned_alloc.hpp>
  37. #endif
  38. #endif