MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / liballoc_kprintf

Function liballoc_kprintf

Kernel/src/liballoc/_liballoc.cpp:25–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23}
24
25void liballoc_kprintf(const char* __restrict fmt, ...){
26 va_list args;
27 va_start(args, fmt);
28 Log::WriteF(fmt, args);
29 va_end(args);
30}
31
32void* liballoc_alloc(size_t pages) {
33 void* addr = (void*)Memory::KernelAllocate4KPages(pages);

Callers

nothing calls this directly

Calls 1

WriteFFunction · 0.85

Tested by

no test coverage detected