MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / operator new

Function operator new

Kernel/src/runtime.cpp:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include <panic.h>
4
5void *operator new(size_t size)
6{
7 return kmalloc(size);
8}
9
10void *operator new[](size_t size)
11{

Callers

nothing calls this directly

Calls 1

kmallocFunction · 0.85

Tested by

no test coverage detected