Skip to content

Commit

Permalink
Updated git ignore to deal with the PIDs too
Browse files Browse the repository at this point in the history
  • Loading branch information
kshyatt committed Jul 6, 2015
1 parent 69ee8ab commit d4344e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
*.dylib
*.dSYM
*.jl.cov
*.jl.*.cov
*.jl.mem
*.ji

Expand Down
4 changes: 3 additions & 1 deletion src/codegen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,9 @@ void write_log_data(logdata_t logData, const char *extension)
extern "C" int jl_getpid();
extern "C" void jl_write_coverage_data(void)
{
std::string outf = "." + std::to_string(jl_getpid()) + ".cov";
std::ostringstream stm;
stm << jl_getpid();
std::string outf = "." + stm.str() + ".cov";
write_log_data(coverageData, outf.c_str());
}

Expand Down

0 comments on commit d4344e3

Please sign in to comment.