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

Function REC_readFloat

src/records/RecCore.cc:958–969  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

956}
957
958RecFloat
959REC_readFloat(char *name, bool *found, bool lock)
960{
961 ink_assert(name);
962 RecFloat _tmp = 0.0;
963 bool _found = (RecGetRecordFloat(name, &_tmp, lock) == REC_ERR_OKAY);
964
965 if (found) {
966 *found = _found;
967 }
968 return _tmp;
969}
970
971RecCounter
972REC_readCounter(char *name, bool *found, bool lock)

Callers 1

marshal_recordMethod · 0.85

Calls 1

RecGetRecordFloatFunction · 0.85

Tested by

no test coverage detected