https://bugzilla.wikimedia.org/show_bug.cgi?id=62788

--- Comment #2 from Antoine "hashar" Musso <has...@free.fr> ---
Apparently the file is supposed to be deleted by hhvm, it might not cleanup
when it crashes though.

The hardcoded settings are:

 hphp/runtime/base/runtime-option.h:  F(bool, PerfPidMap,       true)
 hphp/runtime/base/runtime-option.h:  F(bool, KeepPerfPidMap,   false)

That should get rid of the file as per hphp/runtime/vm/debug/debug.cpp:

  if (!RuntimeOption::EvalKeepPerfPidMap) {
    unlink(m_perfMapName);
  }


Maybe we can just disable the debugger entirely.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to