I was trying to print the memory allocation statistics by calling malloc_stats() in my C program which is running on Linux. However it does not provide any outputs. According to the manpage of malloc_stats() the information is sent to the standard error. So how can I redirect the malloc_stats() info to a log file for my program?
I also tried calling malloc_stats() in gdb however that does not give me the proper info either:
(gdb) call malloc_stats()
[Switching to Thread 182928084768 (LWP 11950)]
$2 = -1759135936
(gdb)
What is wrong with my gdb?