Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 15397 invoked from network); 28 Mar 2008 09:52:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Mar 2008 09:52:51 -0000 Received: (qmail 5714 invoked by uid 500); 28 Mar 2008 09:52:50 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 5697 invoked by uid 500); 28 Mar 2008 09:52:50 -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 5688 invoked by uid 99); 28 Mar 2008 09:52:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Mar 2008 02:52:50 -0700 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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Mar 2008 09:51:57 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id AED53234C0AD for ; Fri, 28 Mar 2008 02:50:24 -0700 (PDT) Message-ID: <1859358108.1206697824715.JavaMail.jira@brutus> Date: Fri, 28 Mar 2008 02:50:24 -0700 (PDT) From: "Alexei Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-5659) [drlvm] Support for Windows Vista In-Reply-To: <1367266188.1206641004591.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-5659?page=3Dcom.atlass= ian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alexei Zakharov updated HARMONY-5659: ------------------------------------- Summary: [drlvm] Support for Windows Vista (was: Support for Windows V= ista) > [drlvm] Support for Windows Vista > --------------------------------- > > Key: HARMONY-5659 > URL: https://issues.apache.org/jira/browse/HARMONY-5659 > Project: Harmony > Issue Type: Bug > Components: VM > Affects Versions: 5.0M6 > Environment: Windows Vista SP1 > Reporter: Dmitry Egorov > Fix For: 5.0M6 > > Attachments: vm_init.patch > > > When running Harmony under Vista, it shows the following error: > "Windows 6.0 is not supported > HMYEXEL062E =D0=92=D0=BD=D1=83=D1=82=D1=80=D0=B5=D0=BD=D0=BD=D1=8F=D1=8F = =D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B0 VM: =D0=9D=D0=B5 =D1=83=D0=B4=D0=B0=D0= =BB=D0=BE=D1=81=D1=8C =D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D1=82=D1=8C Java VM > FAILED to invoke JVM." > The following code from working_vm\vm\vmcore\src\init\vm_init.cpp causes = the error_message: > if((osvi.dwMajorVersion =3D=3D 4 && osvi.dwMinorVersion =3D=3D 0) || // = NT 4.0 > (osvi.dwMajorVersion =3D=3D 5 && osvi.dwMinorVersion =3D=3D 0) || = // Windows 2000 > (osvi.dwMajorVersion =3D=3D 5 && osvi.dwMinorVersion =3D=3D 1) || = // Windows XP > (osvi.dwMajorVersion =3D=3D 5 && osvi.dwMinorVersion =3D=3D 2)) { = // Windows.NET > return JNI_OK; > } > printf("Windows %d.%d is not supported\n", osvi.dwMajorVersion, > osvi.dwMinorVersion); > It seems to be written before Vista appeared.=20 > Adding an option for 6.0 version makes Harmony work on Vista, at least on= a simple "Hello, World" app. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.