Skip to content

Commit abff4ba

Browse files
authored
re-enable queue struct members related to locking
1 parent 9afd0c8 commit abff4ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common_thread.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ typedef struct blas_queue {
111111
struct blas_queue *next;
112112

113113
#if defined( __WIN32__) || defined(__CYGWIN32__) || defined(_WIN32) || defined(__CYGWIN__)
114-
// CRITICAL_SECTION lock;
115-
// HANDLE finish;
114+
CRITICAL_SECTION lock;
115+
HANDLE finish;
116116
volatile int finished;
117117
#else
118118
pthread_mutex_t lock;

0 commit comments

Comments
 (0)