| 214 | /************************************************************************/ |
| 215 | |
| 216 | void msReleaseLock( int nLockId ) |
| 217 | |
| 218 | { |
| 219 | assert( mutexes_initialized > 0 ); |
| 220 | assert( nLockId >= 0 && nLockId < mutexes_initialized ); |
| 221 | |
| 222 | if( thread_debug ) |
| 223 | fprintf( stderr, "msReleaseLock(%d/%s) (posix)\n", |
| 224 | nLockId, lock_names[nLockId] ); |
| 225 | |
| 226 | pthread_mutex_unlock( mutex_locks + nLockId ); |
| 227 | } |
| 228 | |
| 229 | #endif /* defined(USE_THREAD) && !defined(_WIN32) */ |
| 230 |
no outgoing calls
no test coverage detected