MCPcopy Create free account
hub / github.com/apache/trafficserver / rec_mutex_init

Function rec_mutex_init

src/records/RecMutex.cc:27–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25#include "records/RecMutex.h"
26
27void
28rec_mutex_init(RecMutex *m, const char *)
29{
30 m->nthread_holding = 0;
31 m->thread_holding = ink_thread_null();
32 ink_mutex_init(&(m->the_mutex));
33}
34
35void
36rec_mutex_destroy(RecMutex *m)

Callers 1

RecRecordInitFunction · 0.85

Calls 2

ink_thread_nullFunction · 0.85
ink_mutex_initFunction · 0.85

Tested by

no test coverage detected