pthread_mutex_unlock method
Unlock a mutex
Implementation
int pthread_mutex_unlock(pthread_mutex_t mutex) {
mutex.locked = false;
return 0;
}
Unlock a mutex
int pthread_mutex_unlock(pthread_mutex_t mutex) {
mutex.locked = false;
return 0;
}