< prev index next >

src/java.base/share/native/libjava/VM.c

Print this page

*** 1,7 **** /* ! * Copyright (c) 2004, 2018, 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) 2004, 2020, 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
*** 59,63 **** --- 59,68 ---- JNIEXPORT void JNICALL Java_jdk_internal_misc_VM_initializeFromArchive(JNIEnv *env, jclass ignore, jclass c) { JVM_InitializeFromArchive(env, c); } + + JNIEXPORT jlong JNICALL + Java_jdk_internal_misc_VM_getRandomSeedForCDSDump(JNIEnv *env, jclass ignore) { + return JVM_GetRandomSeedForCDSDump(); + }
< prev index next >