Using C++, in one of my destructors, i say
mutex = NULL;
This however results in an error "No viable overloaded '='" in my Xcode.
Same mutex was previously initialized in a constructor as
mutex = PTHREAD_MUTEX_INITIALIZER;
Please advise, how can i properly handle this as part of C++ destructor
pthread_mutex_destroy()to destroy the mutex object. – bacchus May 28 '11 at 1:25mutex = PTHREAD_MUTEX_INITIALIZER;is not an initialisation. Where is the declarator? – Lightness Races in Orbit May 28 '11 at 1:34