Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 92984 invoked from network); 10 Aug 2007 16:46:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Aug 2007 16:46:05 -0000 Received: (qmail 97996 invoked by uid 500); 10 Aug 2007 16:46:04 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 97975 invoked by uid 500); 10 Aug 2007 16:46:03 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 97966 invoked by uid 99); 10 Aug 2007 16:46:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Aug 2007 09:46:03 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Aug 2007 16:46:06 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 8D23E71403F for ; Fri, 10 Aug 2007 09:45:42 -0700 (PDT) Message-ID: <9658819.1186764342559.JavaMail.jira@brutus> Date: Fri, 10 Aug 2007 09:45:42 -0700 (PDT) From: "Vasily Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Created: (HARMONY-4619) [ibm vme][jedit] IBM VME doesn't support -ms and -mx options MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ibm vme][jedit] IBM VME doesn't support -ms and -mx options ------------------------------------------------------------ Key: HARMONY-4619 URL: https://issues.apache.org/jira/browse/HARMONY-4619 Project: Harmony Issue Type: Bug Components: App-Oriented Bug Reports, VM Reporter: Vasily Zakharov Priority: Minor RI supports options -ms (equivalent to -Xms) and -mx (equivalent to -Xmx) though they're not documented or listed in help. However these options are used by some applications, for example by jEdit launcher script for Linux. IBM VME doesn't support these options, and because of this jEdit launcher doesn't work: $ jedit JVMJ9VM007E (russian text here, means 'Unknown command line option'): -mx32m HMYEXEL062E (russian text here, means 'Internal VM error: could not create') Java VM FAILED to invoke JVM. This problem is easily workarounded, as jEdit launcher is very simple and its jar can be easily launched manually, however this situation may confuse users. As a compact reproducer, the trivial test may be used: public class Test { public static void main(String[] args) { System.out.println("SUCCESS"); } } $ java -ms16M -mx32M Test Output on RI: SUCCESS Output on IBM VME: JVMJ9VM007E (russian text here, means 'Unknown command line option'): -ms16M HMYEXEL062E (russian text here, means 'Internal VM error: could not create') Java VM FAILED to invoke JVM. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.