Home
last modified time | relevance | path

Searched refs:sleeptimeBeforeSigkill (Results 1 – 2 of 2) sorted by relevance

/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/util/
H A DProcessTree.java79 public static void destroy(String pid, long sleeptimeBeforeSigkill, in destroy() argument
82 destroyProcessGroup(pid, sleeptimeBeforeSigkill, inBackground); in destroy()
87 destroyProcess(pid, sleeptimeBeforeSigkill, inBackground); in destroy()
98 protected static void destroyProcess(String pid, long sleeptimeBeforeSigkill, in destroyProcess() argument
101 sigKill(pid, false, sleeptimeBeforeSigkill, inBackground); in destroyProcess()
112 long sleeptimeBeforeSigkill, boolean inBackground) { in destroyProcessGroup() argument
114 sigKill(pgrpId, true, sleeptimeBeforeSigkill, inBackground); in destroyProcessGroup()
228 long sleeptimeBeforeSigkill, boolean inBackground) { in sigKill() argument
232 sleeptimeBeforeSigkill); in sigKill()
237 sigKillInCurrentThread(pid, isProcessGroup, sleeptimeBeforeSigkill); in sigKill()
/dports/devel/hadoop/hadoop-1.2.1/src/mapred/org/apache/hadoop/mapred/
H A DJvmManager.java208 private final long sleeptimeBeforeSigkill; field in JvmManager.JvmManagerForType
222 sleeptimeBeforeSigkill = in JvmManagerForType()
558 if (sleeptimeBeforeSigkill > 0) { in kill()
559 new DelayedProcessKiller(user, pid, sleeptimeBeforeSigkill, in kill()