-
Enhancement
-
Resolution: Cannot Reproduce
-
P5
-
None
-
1.1.6
-
generic
-
generic
For the JDK 116 release on the DIGITAL UNIX platform running on DIGITAL's
Alpha hardware, DIGITAL has changed, for the reasons listed below, the
following JDK 116 source files in the shared part of the JDK.
Compatibility of the changes with Sun's JDK was assured by visual inspection of
the changes and by running the appropriate JCK test suites. No changes were
made to modify any APIs nor to modify the virtual machine instruction set.
The following files were modified to fix a bug concerning garbage collection
and the JVM unhand macro:
src/share/java/runtime/classruntime.c
Diffs:
======
diff -r digital_src/src/share/java/runtime/classruntime.c javasoft_src/src/share/java/runtime/classruntime.c
1d0
< /* Modifications Copyright 1997 Digital Equipment Corporation */
821c820
< /* new_obj = unhand(ret); /* HDS Moved for GC reasons */
---
> new_obj = unhand(ret);
840c839
< unhand(ret)->detailMessage = makeJavaStringUTF(DetailMessage); /*** HDS ***/
---
> new_obj->detailMessage = makeJavaStringUTF(DetailMessage);
Alpha hardware, DIGITAL has changed, for the reasons listed below, the
following JDK 116 source files in the shared part of the JDK.
Compatibility of the changes with Sun's JDK was assured by visual inspection of
the changes and by running the appropriate JCK test suites. No changes were
made to modify any APIs nor to modify the virtual machine instruction set.
The following files were modified to fix a bug concerning garbage collection
and the JVM unhand macro:
src/share/java/runtime/classruntime.c
Diffs:
======
diff -r digital_src/src/share/java/runtime/classruntime.c javasoft_src/src/share/java/runtime/classruntime.c
1d0
< /* Modifications Copyright 1997 Digital Equipment Corporation */
821c820
< /* new_obj = unhand(ret); /* HDS Moved for GC reasons */
---
> new_obj = unhand(ret);
840c839
< unhand(ret)->detailMessage = makeJavaStringUTF(DetailMessage); /*** HDS ***/
---
> new_obj->detailMessage = makeJavaStringUTF(DetailMessage);
- relates to
-
JDK-4180620 Garbage collection can cause bad pointers, moved calls to unhand in file zip.c
- Closed