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

Function hb_cond_close

libhb/ports.c:1168–1180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1166}
1167
1168void hb_cond_close( hb_cond_t ** _c )
1169{
1170 hb_cond_t * c = *_c;
1171
1172 if (c == NULL)
1173 {
1174 return;
1175 }
1176 pthread_cond_destroy( &c->cond );
1177 free( c );
1178
1179 *_c = NULL;
1180}
1181
1182void hb_cond_wait( hb_cond_t * c, hb_lock_t * lock )
1183{

Callers 3

taskset_initFunction · 0.85
taskset_finiFunction · 0.85
hb_fifo_closeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected