Ignore process reaper (forked subprocess on unixish systems).

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1372731 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dawid Weiss 2012-08-14 05:27:30 +00:00
parent d4b66af3b3
commit 46b8a90c11
1 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,11 @@ public class QuickPatchThreadsFilter implements ThreadFilter {
if (t.getName().equals("MemoryPoolMXBean notification dispatcher")) {
return true;
}
// forked process reaper on Unixish systems
if (t.getName().equals("process reaper")) {
return true;
}
return false;
}