MCPcopy Create free account
hub / github.com/HelenOS/helenos / log_vprintf

Function log_vprintf

kernel/generic/src/log/log.c:241–254  ·  view source on GitHub ↗

Append a message to the currently being written entry. * * Requires that an entry has been started using log_begin() */

Source from the content-addressed store, hash-verified

239 * Requires that an entry has been started using log_begin()
240 */
241int log_vprintf(const char *fmt, va_list args)
242{
243 int ret;
244
245 printf_spec_t ps = {
246 log_printf_str_write,
247 log_printf_wstr_write,
248 NULL
249 };
250
251 ret = printf_core(fmt, &ps, args);
252
253 return ret;
254}
255
256/** Append a message to the currently being written entry.
257 *

Callers 2

log_printfFunction · 0.85
logFunction · 0.85

Calls 1

printf_coreFunction · 0.50

Tested by

no test coverage detected