- Timestamp:
- Feb 21, 2011, 2:23:40 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/CHANGES.OS2
r263 r266 6 6 7 7 8 1.6.0 Build 19 XXX (2011-xx-xx) 8 1.6.0 Build 19 RC (2011-02-21) 9 10 - Ported and enabled the JPDA (Java Platform Debugger Architecture) component 11 which provides a framework for debugging Java applications. 12 13 - Added sound (audio and MIDI) support to Java applications using DART. 14 15 - Added a free implementation of the com.sun.image.codec.jpeg package (taken 16 from the IcedTea project) used by some old Java applications like Jeti/2. 17 18 - Renamed all Java DLLs by adding a 'j' prefix to the names to avoid possible 19 conflicts with system DLLs. 9 20 10 21 - Fixed: Accessing the network from Java applications would crash on some 11 22 machines (Odin bug). 12 23 13 - Fixed: spontaneous 100% CPU load in many Java applications (e.g. GenealogyJ24 - Fixed: Spontaneous 100% CPU load in many Java applications (e.g. GenealogyJ 14 25 Jeti/2) when throwing NullPointerException as a result of accessing null 15 26 objects of some application classes (Odin bug). 27 28 - Fixed: java.util.prefs.Preferences: Use the Open32 registry on OS/2 instead 29 of throwing an exception. 30 31 - Fixed: JVM used PATH instead of LIBPATH to comprise java.library.path 32 resulting in inability to find JNI DLLs in some applications. 33 34 - Fixed: Crash in java.io.WinNTFileSystem.getSpace() (Odin bug). 35 36 - Fixed: Exception java.awt.image.ImagingOpException in many applications due 37 to wrong exports from in jmlibimg.dll. 16 38 17 39 -
trunk/doc/README.OS2
r263 r266 1 1 OpenJDK 6 for OS/2 and eCS 2 2 3 Version 1.6.0 Build 19 RC (2011- xx-yy)3 Version 1.6.0 Build 19 RC (2011-02-21) 4 4 5 5 This is a release candidate build intended for testing purposes. … … 28 28 - A OS/2 Warp 4 Fixpack 16+, OS/2 Warp 4.5 or eComStation operating system. 29 29 30 - Odin32 library version 0.6.215 58 (2011-01-12) or above:31 32 ftp://ftp.netlabs.org/pub/odin/odin32bin-20110 112-release.wpi30 - Odin32 library version 0.6.21577 (2011-02-21) or above: 31 32 ftp://ftp.netlabs.org/pub/odin/odin32bin-20110221-release.wpi 33 33 34 34 … … 221 221 222 222 Besides adding the 'j' prefix, some DLLs were also renamed further to fit the 223 8 character length limit forced by the OS/2 kernel loader. 224 225 226 On OS/2, the directory containing JDK DLLs 227 In order to avoid conflicts... 228 the following dlls were renamed... 229 230 hprof.dll -> jhprof.dll in -agentlib: cmd line option 231 debug dlls as well 223 8 character DLL name length limit forced by the OS/2 kernel loader. 224 225 This rename operation is transparent to all Java applications except a few 226 cases which involve custom agent libraries used to enhance the functionality 227 of JDK or JVM. These libraries in particular include: 228 229 Original Name New Name 230 -------------------------------------------- 231 hprof.dll jhprof.dll 232 dt_shmem.dll jdtshmem.dll 233 dt_socket.dll jdtsock.dll 234 235 In order to use the renamed libraries, you need to substitute the old name 236 with the new name wherever the old name is used in Java documentation, 237 configuration files or command line options. For example, to use the profiler 238 library, you will have to write "-agentlib:jhprof.dll" on the command line 239 instead of "-agentlib:hprof.dll" and so on. 232 240 233 241 … … 240 248 Warp4 kernel instead. 241 249 242 2. The JPDA (Java Platform Debugger Architecture) component is missing. 243 244 3. The com.sun.tools.attach package (API to attach to a Java virtual machine) 250 2. The com.sun.tools.attach package (API to attach to a Java virtual machine) 245 251 is missing. 246 247 4. Some other rarely used Java system classes may also be missing in this248 release.249 252 250 253 See the project roadmap for more information on the current progress and -
trunk/tools/CreateImageZIPs.cmd
r242 r266 3 3 ver_id = 'openjdk6_b19' 4 4 5 build_id = ' beta2-20110112'5 build_id = 'rc-20110221' 6 6 7 7 src_path = '..'
Note:
See TracChangeset
for help on using the changeset viewer.