aboutsummaryrefslogtreecommitdiff
path: root/chattymalloc.c
Commit message (Collapse)AuthorAgeFilesLines
* add tracing of execution timesFlorian Fischer2020-07-231-15/+56
|
* [chattymalloc] add pid to trace file name to support fork/execFlorian Fischer2020-07-231-1/+6
| | | | | | | When a process uses frok and exit both will open the same file and truncated it when they are ready which leads to invalid writes. Now we prepend the trace file name with the pid of the process so each child has its own trace file.
* [chattymalloc] fix multiple sources of crashesFlorian Fischer2020-07-031-5/+24
| | | | | | * Don't trace free(0x0) during init (needed if init fails) * Increase the trace window (on a huge maschine 100000 entries was to small) * Don't trace after our thread destructor ran
* initial chattymalloc standalone commitFlorian Fischer2020-05-041-0/+381