< prev index next >

src/java.base/windows/native/libjava/java_props_md.c

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 557,569 **** sprops.os_name = "Windows (unknown)"; break; } sprintf(buf, "%d.%d", majorVersion, minorVersion); sprops.os_version = _strdup(buf); ! #if _M_IA64 ! sprops.os_arch = "ia64"; ! #elif _M_AMD64 sprops.os_arch = "amd64"; #elif _X86_ sprops.os_arch = "x86"; #else sprops.os_arch = "unknown"; --- 557,567 ---- sprops.os_name = "Windows (unknown)"; break; } sprintf(buf, "%d.%d", majorVersion, minorVersion); sprops.os_version = _strdup(buf); ! #if _M_AMD64 sprops.os_arch = "amd64"; #elif _X86_ sprops.os_arch = "x86"; #else sprops.os_arch = "unknown";
< prev index next >