diff options
Diffstat (limited to 'winsup/cygwin/thread.h')
-rw-r--r-- | winsup/cygwin/thread.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/winsup/cygwin/thread.h b/winsup/cygwin/thread.h index b871d34b0..d027830d4 100644 --- a/winsup/cygwin/thread.h +++ b/winsup/cygwin/thread.h @@ -356,10 +356,8 @@ public: callback *pthread_child; callback *pthread_parent; - /* this is an associative array for the _exclusive_ use of pshared mutex's - * normal mutex's don't go here to reduce overhead and prevent serialisation. - */ - class pthread_mutex * pshared_mutexs[256]; + // list of mutex's. USE THREADSAFE INSERTS AND DELETES. + class pthread_mutex * mutexs; void Init (int); |