From 0904d9e4df0c8a256ac35c491f14a587ebe9fca2 Mon Sep 17 00:00:00 2001 From: Devin Matthews Date: Tue, 2 Oct 2018 15:04:36 -0500 Subject: [PATCH] *Always* use Windows primitives instead of pthreads. --- frame/base/bli_pthread_wrap.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frame/base/bli_pthread_wrap.h b/frame/base/bli_pthread_wrap.h index ec8d3038a..ff5f5fe7f 100644 --- a/frame/base/bli_pthread_wrap.h +++ b/frame/base/bli_pthread_wrap.h @@ -35,10 +35,7 @@ #ifndef BLIS_PTHREAD_WRAP_H #define BLIS_PTHREAD_WRAP_H -#include "bli_config.h" -#include "bli_config_macro_defs.h" - -#if defined(_MSC_VER) && !defined(BLIS_ENABLE_PTHREADS) +#if defined(_MSC_VER) typedef SRWLOCK pthread_mutex_t; typedef void pthread_mutexattr_t;