Author: yhemanth
Date: Mon Sep 7 08:16:09 2009
New Revision: 812031
URL: http://svn.apache.org/viewvc?rev=812031&view=rev
Log:
HADOOP-6230. Moved process tree and memory calculator related classes from
Common to Map/Reduce. Contributed by Vinod Kumar Vavilapalli.
Removed:
hadoop/common/trunk/src/java/org/apache/hadoop/util/LinuxMemoryCalculatorPlugin.java
hadoop/common/trunk/src/java/org/apache/hadoop/util/MemoryCalculatorPlugin.java
hadoop/common/trunk/src/java/org/apache/hadoop/util/ProcessTree.java
hadoop/common/trunk/src/java/org/apache/hadoop/util/ProcfsBasedProcessTree.java
hadoop/common/trunk/src/test/core/org/apache/hadoop/util/TestProcfsBasedProcessTree.java
Modified:
hadoop/common/trunk/CHANGES.txt
hadoop/common/trunk/src/java/org/apache/hadoop/util/Shell.java
Modified: hadoop/common/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/CHANGES.txt?rev=812031&r1=812030&r2=812031&view=diff
==============================================================================
--- hadoop/common/trunk/CHANGES.txt (original)
+++ hadoop/common/trunk/CHANGES.txt Mon Sep 7 08:16:09 2009
@@ -78,6 +78,9 @@
FileNotFoundException if the directory does not exist, rather than letting
this be implementation-specific. (Jakob Homan via cdouglas)
+ HADOOP-6230. Moved process tree and memory calculator related classes
+ from Common to Map/Reduce. (Vinod Kumar Vavilapalli via yhemanth)
+
NEW FEATURES
HADOOP-4268. Change fsck to use ClientProtocol methods so that the
Modified: hadoop/common/trunk/src/java/org/apache/hadoop/util/Shell.java
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/src/java/org/apache/hadoop/util/Shell.java?rev=812031&r1=812030&r2=812031&view=diff
==============================================================================
--- hadoop/common/trunk/src/java/org/apache/hadoop/util/Shell.java (original)
+++ hadoop/common/trunk/src/java/org/apache/hadoop/util/Shell.java Mon Sep 7
08:16:09 2009
@@ -363,7 +363,7 @@
this.run();
}
- protected String[] getExecString() {
+ public String[] getExecString() {
return command;
}