New in the recently released JDK 1.4.1:
(from http://java.sun.com/j2se/1.4.1/changes.html#compiler)

* Previous versions of javac were not thread-safe
  when invoked concurrently from multiple threads
  using a programmatic entry point. As of Java 2
  SDK 1.4.1, Javac is now thread safe and can be
  used concurrently without problems so long as
  the separate invocations do not attempt conflicting
  access to the file system.

* The compiler now releases the pointers to its
  internal data structures after compilation
  completes, so that using javac inside a java
  program will not leak space.

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to