Move libcds 1.6.0 from SVN
[libcds.git] / cds / os / win / alloc_aligned.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_OS_WIN_ALLOC_ALIGNED_H
4 #define __CDS_OS_WIN_ALLOC_ALIGNED_H
5
6 #include <malloc.h>
7
8 //@cond none
9 namespace cds { namespace OS {
10     namespace Win32 {
11         /// Allocates memory on a specified alignment boundary
12         static inline void * aligned_malloc(
13             size_t nSize,       ///< Size of the requested memory allocation
14             size_t nAlignment   ///< The alignment value, which must be an integer power of 2
15             )
16         {
17             return ::_aligned_malloc( nSize, nAlignment );
18         }
19
20         /// Frees a block of memory that was allocated with aligned_malloc.
21         static inline void aligned_free(
22             void * pBlock   ///< A pointer to the memory block that was returned to the aligned_malloc function
23             )
24         {
25             ::_aligned_free( pBlock );
26         }
27     }   // namespace Win32
28
29     using Win32::aligned_malloc;
30     using Win32::aligned_free;
31
32 }} // namespace cds::OS
33 //@endcond
34
35 #endif // #ifndef __CDS_OS_WIN_ALLOC_ALIGNED_H
36