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

Function shared_page_alloc

freebsd/kern/kern_sharedpage.c:92–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92int
93shared_page_alloc(int size, int align)
94{
95 int res;
96
97 sx_xlock(&shared_page_alloc_sx);
98 res = shared_page_alloc_locked(size, align);
99 sx_xunlock(&shared_page_alloc_sx);
100 return (res);
101}
102
103int
104shared_page_fill(int size, int align, const void *data)

Callers 3

alloc_sv_tkFunction · 0.85
alloc_sv_tk_compat32Function · 0.85

Calls 1

shared_page_alloc_lockedFunction · 0.85

Tested by

no test coverage detected