@Override
public void run() {
// monitor pid
try {
ProcessStateCode processState = SystemUtil.getProcessState(_pid);
while (processState != null) {
if (processState == ProcessStateCode.Z) {
LOG.error("process: " + _pid + " is in zombie state");
break;
}