-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VM.getSavedProperty("os.name") not supported #495
Comments
Example to reproduce problem:
Run with |
I have added these lines to ensure that
|
Great! Please see where in the VM initialization you can add such code (using the union of the existing properties and the new "os.name" property). |
We want to use the results of the host JVM's |
There is a mechanism for this in the native peer of |
There is a type mismatch in the multi process VM, maybe somewhere in |
Some properties have to be set at the time when the VM is initialized; this is not the case for
os.name
. If a class later callsVM.getSavedProperty("os.name")
, the result is anIllegalArgumentException
because the property has not been set.The text was updated successfully, but these errors were encountered: