MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / hb_lock_close

Function hb_lock_close

libhb/ports.c:1116–1128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1114}
1115
1116void hb_lock_close( hb_lock_t ** _l )
1117{
1118 hb_lock_t * l = *_l;
1119
1120 if (l == NULL)
1121 {
1122 return;
1123 }
1124 pthread_mutex_destroy( &l->mutex );
1125 free( l );
1126
1127 *_l = NULL;
1128}
1129
1130void hb_lock( hb_lock_t * l )
1131{

Callers 10

hb_closeFunction · 0.85
taskset_initFunction · 0.85
taskset_finiFunction · 0.85
muxCloseFunction · 0.85
muxInitFunction · 0.85
syncVideoInitFunction · 0.85
syncVideoCloseFunction · 0.85
nlmeans_closeFunction · 0.85
hb_thread_closeFunction · 0.85
hb_fifo_closeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected