]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/align/include/boost/align/detail/aligned_alloc_android.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / align / include / boost / align / detail / aligned_alloc_android.hpp
1 /*
2 (c) 2014 Glen Joseph Fernandes
3 <glenjofe -at- gmail.com>
4
5 Distributed under the Boost Software
6 License, Version 1.0.
7 http://boost.org/LICENSE_1_0.txt
8 */
9 #ifndef BOOST_ALIGN_DETAIL_ALIGNED_ALLOC_ANDROID_HPP
10 #define BOOST_ALIGN_DETAIL_ALIGNED_ALLOC_ANDROID_HPP
11
12 #include <boost/align/detail/is_alignment.hpp>
13 #include <boost/assert.hpp>
14 #include <malloc.h>
15
16 namespace boost {
17 namespace alignment {
18
19 inline void* aligned_alloc(std::size_t alignment, std::size_t size)
20 BOOST_NOEXCEPT
21 {
22 BOOST_ASSERT(detail::is_alignment(alignment));
23 return ::memalign(alignment, size);
24 }
25
26 inline void aligned_free(void* ptr) BOOST_NOEXCEPT
27 {
28 ::free(ptr);
29 }
30
31 } /* .alignment */
32 } /* .boost */
33
34 #endif