bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
15 lines
589 B
Diff
15 lines
589 B
Diff
Taken from https://github.com/conan-io/conan-center-index/pull/361/files
|
|
|
|
diff --git a/include/boost/thread/pthread/thread_data.hpp b/include/boost/thread/pthread/thread_data.hpp
|
|
index aefbeb4..bc9b136 100644
|
|
--- a/boost/thread/pthread/thread_data.hpp
|
|
+++ b/boost/thread/pthread/thread_data.hpp
|
|
@@ -57,7 +57,7 @@ namespace boost
|
|
#else
|
|
std::size_t page_size = ::sysconf( _SC_PAGESIZE);
|
|
#endif
|
|
-#if PTHREAD_STACK_MIN > 0
|
|
+#ifdef PTHREAD_STACK_MIN
|
|
if (size<PTHREAD_STACK_MIN) size=PTHREAD_STACK_MIN;
|
|
#endif
|
|
size = ((size+page_size-1)/page_size)*page_size;
|