MCPcopy Create free account
hub / github.com/F-Stack/f-stack / log

Function log

freebsd/kern/subr_prf.c:317–325  ·  view source on GitHub ↗

* Log writes to the log buffer, and guarantees not to sleep (so can be * called by interrupt routines). If there is no process reading the * log yet, it writes to the console also. */

Source from the content-addressed store, hash-verified

315 * log yet, it writes to the console also.
316 */
317void
318log(int level, const char *fmt, ...)
319{
320 va_list ap;
321
322 va_start(ap, fmt);
323 vlog(level, fmt, ap);
324 va_end(ap);
325}
326
327void
328vlog(int level, const char *fmt, va_list ap)

Callers 15

sys_acctFunction · 0.70
acct_disableFunction · 0.70
encode_longFunction · 0.70
acctwatchFunction · 0.70
ether_poll_registerFunction · 0.70
ether_poll_deregisterFunction · 0.70
killprocFunction · 0.70
sigexitFunction · 0.70
corefile_openFunction · 0.70
tc_setclockFunction · 0.70
tablefullFunction · 0.70
counted_warningFunction · 0.70

Calls 1

vlogFunction · 0.70

Tested by

no test coverage detected