8 #if ((XTD_OS_LINUX|XTD_OS_MSYS|XTD_OS_CYGWIN) & XTD_OS)
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);
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;
28 GetSystemInfo(&oSysInfo);
30 return oSysInfo.dwAllocationGranularity;
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)); }
host, target and build configurations and settings Various components are purpose built for specific ...