Return-Path: Delivered-To: apmail-hadoop-common-commits-archive@www.apache.org Received: (qmail 35129 invoked from network); 7 Sep 2009 08:16:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Sep 2009 08:16:32 -0000 Received: (qmail 59471 invoked by uid 500); 7 Sep 2009 08:16:32 -0000 Delivered-To: apmail-hadoop-common-commits-archive@hadoop.apache.org Received: (qmail 59400 invoked by uid 500); 7 Sep 2009 08:16:32 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-dev@hadoop.apache.org Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 59391 invoked by uid 99); 7 Sep 2009 08:16:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Sep 2009 08:16:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Sep 2009 08:16:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 03F52238886C; Mon, 7 Sep 2009 08:16:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r812031 - in /hadoop/common/trunk: ./ src/java/org/apache/hadoop/util/ src/test/core/org/apache/hadoop/util/ Date: Mon, 07 Sep 2009 08:16:09 -0000 To: common-commits@hadoop.apache.org From: yhemanth@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090907081610.03F52238886C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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; }