Skip to content

Commit ab3aa44

Browse files
committed
Add pid to malloc log
1 parent ff74f6b commit ab3aa44

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
*.jl.cov
2424
*.jl.*.cov
2525
*.jl.mem
26+
*.jl.*.mem
2627
*.ji
2728

2829
/perf*

src/codegen.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1744,7 +1744,10 @@ extern "C" void jl_write_coverage_data(void)
17441744

17451745
extern "C" void jl_write_malloc_log(void)
17461746
{
1747-
write_log_data(mallocData, ".mem");
1747+
std::ostringstream stm;
1748+
stm << jl_getpid();
1749+
std::string outf = "." + stm.str() + ".mem";
1750+
write_log_data(mallocData, outf.c_str());
17481751
}
17491752

17501753
// --- constant determination ---

0 commit comments

Comments
 (0)