Ditch dlmalloc in favour of custom umalloc
This commit is contained in:
@ -61,8 +61,8 @@ void pctl_ls(void) {
|
||||
|
||||
uint64_t procslen = processctl(-1, PCTL_PLS_SZ, 0, 0, 0);
|
||||
|
||||
char *namebuf = dlmalloc(34);
|
||||
char *membuf = dlmalloc(20);
|
||||
char *namebuf = umalloc(34);
|
||||
char *membuf = umalloc(20);
|
||||
|
||||
uprintf("%-30s %s %-6s %-15s %-8s\n", "NAME", "PID", "TYPE", "MEMORY", "STATE");
|
||||
for (size_t i = 0; i < procslen; i++) {
|
||||
|
Reference in New Issue
Block a user