MCPcopy Index your code
hub / github.com/F-Stack/f-stack / ff_log

Function ff_log

lib/ff_log.c:94–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92}
93
94int
95ff_log(uint32_t level, uint32_t logtype, const char *format, ...)
96{
97 va_list ap;
98 int ret;
99
100 va_start(ap, format);
101 ret = rte_vlog(level, logtype, format, ap);
102 va_end(ap);
103
104 return ret;
105}
106
107int
108ff_vlog(uint32_t level, uint32_t logtype, const char * format, va_list ap)

Callers 15

loopFunction · 0.85
mainFunction · 0.85
loopFunction · 0.85
mainFunction · 0.85
loopFunction · 0.85
mainFunction · 0.85
ff_mmapFunction · 0.85
init_lcore_confFunction · 0.85
init_mem_poolFunction · 0.85
init_dispatch_ringFunction · 0.85
init_port_startFunction · 0.85

Calls 1

rte_vlogFunction · 0.85

Tested by

no test coverage detected