Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/YatSenOS/YatSenOS-Tutorial-Volume-1
/ memset
Function
memset
lab8/src/4/src/utils/stdlib.cpp:48–54 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
46
}
47
48
void memset(void *memory, char value, int length)
49
{
50
for (int i = 0; i < length; ++i)
51
{
52
((char *)memory)[i] = value;
53
}
54
}
55
56
int ceil(const int dividend, const int divisor)
57
{
Callers
8
executeThread
Method · 0.50
initializeTSS
Method · 0.50
createProcessPageDirectory
Method · 0.50
createUserVirtualPool
Method · 0.50
copyProcess
Method · 0.50
initialize
Method · 0.50
connectPhysicalVirtualPage
Method · 0.50
main
Function · 0.50
Calls
no outgoing calls
Tested by
1
main
Function · 0.40