MCPcopy Index your code
hub / github.com/MapServer/MapServer / msReleaseLock

Function msReleaseLock

mapthread.c:216–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

214/************************************************************************/
215
216void 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

Callers 15

msGDALInitializeFunction · 0.85
msGDALCleanupFunction · 0.85
msSaveImageGDALFunction · 0.85
msConnPoolRegisterFunction · 0.85
msConnPoolRequestFunction · 0.85
msConnPoolReleaseFunction · 0.85
msConnPoolFinalCleanupFunction · 0.85
msRasterQueryByRectFunction · 0.85
msRASTERLayerGetExtentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected