25 lines
996 B
Plaintext
25 lines
996 B
Plaintext
Adding OpenBSD to the list of platforms that have mmap(2) and
|
|
pthread_(get|set)schedparam(3).
|
|
|
|
Index: absl/base/config.h
|
|
--- absl/base/config.h.orig
|
|
+++ absl/base/config.h
|
|
@@ -414,7 +414,7 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] !=
|
|
defined(_AIX) || defined(__ros__) || defined(__native_client__) || \
|
|
defined(__asmjs__) || defined(__wasm__) || defined(__Fuchsia__) || \
|
|
defined(__sun) || defined(__ASYLO__) || defined(__myriad2__) || \
|
|
- defined(__HAIKU__)
|
|
+ defined(__HAIKU__) || defined(__OpenBSD__)
|
|
#define ABSL_HAVE_MMAP 1
|
|
#endif
|
|
|
|
@@ -425,7 +425,7 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] !=
|
|
#ifdef ABSL_HAVE_PTHREAD_GETSCHEDPARAM
|
|
#error ABSL_HAVE_PTHREAD_GETSCHEDPARAM cannot be directly set
|
|
#elif defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) || \
|
|
- defined(_AIX) || defined(__ros__)
|
|
+ defined(_AIX) || defined(__ros__) || defined(__OpenBSD__)
|
|
#define ABSL_HAVE_PTHREAD_GETSCHEDPARAM 1
|
|
#endif
|
|
|