mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-04 22:49:32 +03:00
Fix mi_process_info placeholder prototype
This commit is contained in:
parent
8a81a6c68a
commit
4d67e58e0f
1 changed files with 1 additions and 1 deletions
|
@ -404,7 +404,7 @@ static void mi_process_info(double* utime, double* stime, size_t* peak_rss, size
|
|||
|
||||
#else
|
||||
#pragma message("define a way to get process info")
|
||||
static size_t mi_process_info(double* utime, double* stime, size_t* peak_rss, size_t* page_faults, size_t* page_reclaim) {
|
||||
static void mi_process_info(double* utime, double* stime, size_t* peak_rss, size_t* page_faults, size_t* page_reclaim) {
|
||||
*peak_rss = 0;
|
||||
*page_faults = 0;
|
||||
*page_reclaim = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue