XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
memory.hpp
Go to the documentation of this file.
1 
5 #pragma once
6 #include <xtd/xtd.hpp>
7 
8 #if ((XTD_OS_LINUX|XTD_OS_MSYS|XTD_OS_CYGWIN) & XTD_OS)
9  #include <unistd.h>
10 #endif
11 
12 #include <xtd/debug.hpp>
13 
14 namespace xtd{
15 
16  namespace memory{
17  #if ((XTD_OS_CYGWIN | XTD_OS_LINUX | XTD_OS_MSYS) & XTD_OS)
18  static inline size_t page_size(){
19  static auto iRet = sysconf(_SC_PAGESIZE);
20  return iRet;
21  }
22  #elif ((XTD_OS_MINGW | XTD_OS_WINDOWS) & XTD_OS)
23  static inline size_t page_size(){
24  static bool bInit = false;
25  static SYSTEM_INFO oSysInfo;
26  if (!bInit){
27  bInit = true;
28  GetSystemInfo(&oSysInfo);
29  }
30  return oSysInfo.dwAllocationGranularity;
31  }
32  #endif
33  }
34 
35  template <typename _Ty, typename _ParamT> static inline std::unique_ptr<_Ty> make_unique(_ParamT&& src){ return std::unique_ptr<_Ty>(new _Ty(std::forward<_ParamT>(src))); }
36  template <typename _Ty, typename _ParamT> static inline std::unique_ptr<_Ty> make_unique(const _ParamT& src){ return std::unique_ptr<_Ty>(new _Ty(src)); }
37 
38 }
host, target and build configurations and settings Various components are purpose built for specific ...
Debugging.