mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:18:12 +00:00
Add sys$set_mmap_name and use it from LibC's malloc.
It's nice to be able to identify mmap's in /proc/PID/vm.
This commit is contained in:
parent
e904f193c1
commit
1d5afbdffc
7 changed files with 35 additions and 8 deletions
|
@ -1,5 +1,6 @@
|
|||
#include "stdlib.h"
|
||||
#include "mman.h"
|
||||
#include "stdio.h"
|
||||
#include <Kernel/Syscall.h>
|
||||
#include <AK/Assertions.h>
|
||||
|
||||
|
@ -12,6 +13,12 @@ void* malloc(size_t size)
|
|||
*crashme = 0;
|
||||
}
|
||||
void* ptr = mmap(nullptr, 4096);
|
||||
if (ptr) {
|
||||
int rc = set_mmap_name(ptr, 4096, "malloc");
|
||||
if (rc < 0) {
|
||||
perror("set_mmap_name failed");
|
||||
}
|
||||
}
|
||||
return ptr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue