2003-08-11 Aldy Hernandez <aldyh@redhat.com>
[official-gcc.git] / libjava / ChangeLog
blobd790e60fbd955596d0bfd28641c93227f8ad52b9
1 2003-08-10  Bryce McKinlay  <bryce@mckinlay.net.nz>
3         * java/io/PrintStream.java (print): Always flush if auto_flush is
4         set. Don't check for newline characters.
5         (write (int)): Implement without using a temporary array.
6         (write (byte[], int, int): Always flush if auto_flush is set. Don't
7         check for newline characters.
8         Fixes PR libgcj/11778.
10 2003-08-08  Andrew Haley  <aph@redhat.com>
12         * Makefile.am (AM_CXXFLAGS): Define BOOT_CLASS_PATH.
13         * Makefile.in: Rebuild.
14         * java/lang/natRuntime.cc (insertSystemProperties): Add
15         "sun.boot.class.path".
17 2003-08-07  Andrew Haley  <aph@redhat.com>
19         * java/io/PrintStream.java: Don't crash on a null string.
20         
21 2003-08-07  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
23         * configure.in: Don't initialize GCINCS to boehm-gc/include.
24         * configure: Regenerate.
26 2003-08-07  Bryce McKinlay  <bryce@mckinlay.net.nz>
28         * java/net/Socket.java (Socket (SocketImpl)): Don't allow null
29         SocketImpl. Update Javadoc.
30         (bind): Call close() not impl.close() in event of exception.
31         (connect): Likewise.
32         Remove superfluous null checks throughout.
33         * java/net/ServerSocket.java (ServerSocket (int, int, InetAddress)):
34         Don't create an extra socket. Fix for PR libgcj/10868.
35         (bind): Clean up exception handling.
36         Remove superfluous null checks throughout.
38 2003-08-07  Jacob Gladish <gladish@spinnakernet.com>
39             Bryce McKinlay  <bryce@mckinlay.net.nz>
41         * java/net/natPlainSocketImplPosix.cc (connect): Pass the FD as a
42         ready-to-write argument to _Jv_Select. Reset the socket back to 
43         non-blocking state after connecting.
44         (accept): Pass the FD as a ready-to-write argument to _Jv_Select.
45         Throw SocketTimeoutException not InterruptedIOException.
46         (read): Throw SocketTimeoutException not InterruptedIOException.
48 2003-08-07  Bryce McKinlay  <bryce@mckinlay.net.nz>
50         * java/lang/Thread.java (Thread): Check for null "name" from
51         start of private constructor, not after calling the private
52         constructor.
54 2003-08-06  Tom Tromey  <tromey@redhat.com>
56         * java/io/FilePermission.java (equals): Use correct index for
57         last character of path.
59 2003-08-06  Alan Modra  <amodra@bigpond.net.au>
61         * acinclude.m4 (LIBGCJ_CONFIGURE): Remove AC_CANONICAL_BUILD.
62         * configure.in: Compare with_cross_host to build_alias, not build.
63         * aclocal.m4: Regenerate.
64         * configure: Regenerate.
66 2003-08-05  Tom Tromey  <tromey@redhat.com>
68         Fix for PR libgcj/11779:
69         * java/lang/reflect/natField.cc (getAddr): Skip frames in Field
70         class.
72         * java/lang/reflect/Method.java: Updated status comment.
73         Imported javadoc from Classpath and re-ordered methods.
74         * java/lang/reflect/Constructor.java: Reindented.  Updated
75         status comment.  Imported javadoc from Classpath and re-ordered
76         methods.
78 2003-08-05  Thomas Fitzsimmons  <fitzsim@redhat.com>
80         * gnu/java/awt/peer/gtk/GtkComponentPeer.java (postKeyEvent):
81         Add keyLocation parameter.
82         * java/awt/event/KeyEvent.java (getKeyText): Fix "NumPad-"
83         string.
84         (paramString): Generate keyChar string according to keyChar, not
85         keyCode.
86         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c
87         (state_to_awt_mods): Handle ALT key.
88         (keyevent_state_to_awt_mods): New function.
89         (get_first_keyval_from_keymap): New function.
90         (keysym_to_awt_keycode): Get virtual key code from keymap.
91         Handle missing VK_ values.
92         (keysym_to_awt_keylocation): New function.
93         (keyevent_to_awt_keychar): New function.
94         (generates_key_typed_event): Handle non-text-component case.
95         Handle GDK_KP_Delete and GDK_KP_Enter.
96         (awt_event_handler): Call new functions to get postKeyEvent
97         parameters.
98         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMainThread.c (gtkInit):
99         Update postKeyEvent method signature.
100         * jni/gtk-peer/gtkpeer.h: Add KEY_LOCATION defines.  Add missing
101         VK_ defines.
103 2003-08-05  Matthias Klose  <doko@debian.org>
105         * aclocal.m4: check for libart-config binary
106           under the name libart2-config as well.
107         * configure: regenerated.
109 2003-08-04  David P Grove  <groved@us.ibm.com>
111         * java/text/DecimalFormat.java (format): avoid ArithmeticException
112         when groupingSize is 0.
113         (parse): Likewise.
115 2003-08-04  Matthias Klose  <doko@debian.org>
117         * libart.m4: check for libart-config binary
118           under the name libart2-config as well.
119         * configure, aclocal.m4: regenerated.
121 2003-08-02  Michael Koch  <konqueror@gmx.de>
123         * java/nio/ByteBufferImpl.java
124         (getChar): Check remaining bytes, fixed comment about endianess.
125         (putChar): Likewise.
126         (getShort): Likewise.
127         (putShort): Likewise.
128         (getInt): Check remaining bytes, fixed conversion, fixed comment about
129         endianess.
130         (putInt): Likewise.
131         (getLong): Likewise.
132         (putLong): Likewise.
133         (getFloat): Likewise.
134         (putFloat): Likewise.
135         (getDouble): Likewise.
136         (putDouble): Likewise.
137         * java/nio/DirectByteBufferImpl.java
138         (getChar): Wrapped code, fixed comment about endianess.
139         (putchar): Likewise.
140         (getShort): Likewise.
141         (putShort): Likewise.
142         (getInt): Fixed conversion, fixed comment about endianess.
143         (putInt): Likewise.
144         (getLong): Likewise.
145         (putLong): Likewise.
146         (getFloat): Likewise.
147         (putFloat): Likewise.
148         (getDouble): Likewise.
149         (putDouble): Likewise.
150         * java/nio/MappedByteBufferImpl.java
151         (compact): Implemented.
152         (getChar): Implemented.
153         (putChar): Implemented.
154         (getDouble): Implemented.
155         (putdouble): Implemented.
156         (getFloat): Implemented.
157         (putFloat): Implemented.
158         (getInt): Implemented.
159         (putInt): Implemented.
160         (getLong): Implemented.
161         (putLong): Implemented.
162         (getShort): Implemented.
163         (putShort): Implemented.
164         * java/nio/channels/FileChannelImpl.java
165         (read): Set position where to access file.
166         (write): Likewise.
167         (transferTo): Flip buffer after read and before write.
168         (transferFrom): Likewise.
170 2003-08-02  Michael Koch  <konqueror@gmx.de>
172         * gnu/java/lang/ArrayHelper.java
173         (equalsArray): Reformated, added method documentation.
175 2003-08-02  Michael Koch  <konqueror@gmx.de>
177         * java/net/URL.java
178         (URL): Added paragraph about the
179         gnu.java.net.nocache_protocol_handlers property.
180         (ph_cache): Renamed from handlers to match classpath's implementation.
181         Reordered it with factory and serialVersionUID member variables.
182         (cache_handlers): New member variable.
183         (static): New static initializer to initialize cache_handlers from
184         gnu.java.net.nocache_protocol_handlers property.
185         (URL): Use ph_cache instead of handlers, reformatted some code to
186         match classpath's implementation.
188 2003-08-01  Tom Tromey  <tromey@redhat.com>
190         Fix for PR libgcj/11241:
191         * java/util/WeakHashMap.java (WeakHashMap(int,float)): If
192         initialCapacity is 0, set it to 1.
194 2003-08-01  Stephen Crawley <crawley@dstc.edu.au>
196         * java/net/SocketImpl.java (toString): Display the remote address
197         of an unconnected server socket as "0.0.0.0/0.0.0.0".
199 2003-08-01  Sascha Brawer  <brawer@dandelis.ch>
201         * javax/swing/border/BevelBorder.java,
202         javax/swing/border/EtchedBorder.java,
203         javax/swing/border/LineBorder.java,
204         javax/swing/border/MatteBorder.java,
205         javax/swing/border/SoftBevelBorder.java,
206         javax/swing/plaf/BorderUIResource.java,
207         javax/swing/plaf/ComponentUI.java,
208         javax/swing/plaf/TreeUI.java,
209         javax/swing/plaf/basic/BasicBorders.java,
210         javax/swing/plaf/basic/BasicGraphicsUtils.java,
211         javax/swing/plaf/basic/BasicTreeUI.java:
212         Prepend "doc-files" to all paths to embedded Javadoc images, so
213         that the generated documentation contains the correct URL.
215 2003-08-01  Tom Tromey  <tromey@redhat.com>
217         * configure: Rebuilt.
218         * configure.in (tool_include_dir): Redefine to match gcc.
220 2003-08-01  Jerry Quinn  <jlquinn@optonline.net>
221             Mark Wielaard  <mark@klomp.org>
222             
223         * java/math/BigDecimal (divide): Correctly handle
224         ROUND_HALF_EVEN when amount is greater than 0.5.
225         Simplify and optimize code.
227 2003-07-31  Tom Tromey  <tromey@redhat.com>
229         More for PR libgcj/11737:
230         * java/io/ObjectInputStream.java (processResolution): Use
231         getMethod.
232         (getMethod): Make method accessible.
233         (getField): Make field accessible.
234         (setBooleanField): Don't call setAccessible here.
235         (setByteField, setCharField, setDoubleField, setFloatField,
236         setIntField, setLongField, setShortField, setObjectField):
237         Likewise.
238         (callReadMethod): Don't check whether method is null.  Catch
239         NoSuchMethodException.
240         * java/io/ObjectOutputStream.java (callWriteMethod): Initialize
241         cause on thrown exceptions.
243 2003-07-31  Stepan Koltsov  <yozh@mx1.ru>
245         Fix for PR libgcj/11728:
246         * java/util/HashMap.java (readObject): Set size.
248 2003-07-31  Tom Tromey  <tromey@redhat.com>
250         Fix for PR libgcj/11737:
251         * java/io/ObjectOutputStream.java (getMethod): Make method
252         accessible.
253         (getField): Likewise.
254         (writeObject): Use getMethod.
255         Import PrivilegedAction and AccessController.
256         (callWriteMethod): Don't check whether m is null.  Catch
257         NoSuchMethodException.
259         * java/awt/geom/Arc2D.java (getBounds2D): Implement.
260         (containsAngle): Likewise.
261         (getStartPoint): Rewrote.
262         (getEndPoint): Likewise.
263         (setAngleStart(Point2D)): Likewise.
265 2003-07-31  Roger Sayle  <roger@eyesopen.com>
266             Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
268         * configure.in: Add new THREADCXXFLAGS variable.
269         Handle POSIX threads on alpha*-dec-osf*.
270         * configure: Regenerate.
271         * Makefile.am: Add THREADCXXFLAGS to AM_CXXFLAGS.
272         * Makefile.in: Regenerate.
274 2003-07-08  Andrew Haley  <aph@redhat.com>
276         * include/i386-signal.h (RESTORE): New.
277         (INIT_SEGV): Set restorer.
278         (INIT_FPE): Likewise.
280 2003-07-29  Thomas Fitzsimmons  <fitzsim@redhat.com>
282         * gnu/java/awt/peer/gtk/GtkButtonPeer.java: Call getName rather
283         than getXLFD.
284         * gnu/java/awt/peer/gtk/GtkTextFieldPeer.java: Likewise.
285         * gnu/java/awt/peer/gtk/GtkTextAreaPeer.java: Likewise.
286         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkButtonPeer.c
287         (gtkSetFont): Scale size parameter by PANGO_SCALE.
288         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextFieldPeer.c:
289         Likewise.
290         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextAreaPeer.c:
291         Likewise.
293 2003-07-29  Tom Tromey  <tromey@redhat.com>
295         * defineclass.cc (handleField): Throw exception if field name is
296         duplicated.
297         (handleMethod): Throw exception for duplicate method.
299 2003-07-29  Tom Tromey  <tromey@redhat.com>
301         * gnu/gcj/convert/natIconv.cc (write): Handle case where
302         output buffer is too small.
304 2003-07-28  Tom Tromey  <tromey@redhat.com>
306         * java/lang/natString.cc (init(gnu.gcj.runtime.StringBuffer)):
307         New method.
308         Include gnu/gcj/runtime/StringBuffer.h.
309         * java/lang/String.java (init(gnu.gcj.runtime.StringBuffer)): New
310         native method.
311         (String(gnu.gcj.runtime.StringBuffer)): Use it.
313 2003-07-27  Anthony Green  <green@redhat.com>
315         * configure.in: Fix newlib check.
316         * configure: Rebuilt.
318 2003-07-27  Thomas Fitzsimmons  <fitzsim@redhat.com>
320         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEmbeddedWindowPeer.c:
321         Create vbox and layout for GtkPlug.
323 2003-07-27  Michael Koch  <konqueror@gmx.de>
325         * java/awt/Window.java
326         (Window): Removed now unused constructor. It became oboslete with the
327         new embedded window patch.
329 2003-07-27  Thomas Fitzsimmons <fitzsim@redhat.com.h> 
330             Michael Koch  <konqueror@gmx.de>
332         * gnu/java/awt/EmbeddedWindow.java
333         (EmbeddedWindow): Extends Frame instead of Window.
334         (window_id): New member variable to store the native window handle.
335         (create): Removed.
336         (EmbeddedWindow): New constructor.
337         (addNotify): New method.
338         (getHandler): Likewise.
339         (setWindowPeer): New native method.
340         * gnu/java/awt/EmbeddedWindowSupport.java
341         (EmbeddedWindowSupport): Fixed documentation.
342         (createEmbeddedWindow): Return EmbeddedWindowPeer instead of
343         WindowPeer, give it an EmbeddedWindow instance instead of the raw
344         window data.
345         * gnu/java/awt/natEmbeddedWindow.cc
346         (create): Removed.
347         (setWindowPeer): New method.
348         * gnu/java/awt/peer/EmbeddedWindowPeer.java,
349         gnu/java/awt/peer/gtk/GtkEmbeddedWindowPeer.java,
350         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEmbeddedWindowPeer.c:
351         New files
352         * gnu/java/awt/peer/gtk/GtkToolkit.java
353         (GtkToolkit): Implements EmbeddedWindowSupport.
354         (createEmbeddedWindow): New method.
355         * java/awt/Window.java
356         (Window): Removed.
357         * Makefile.am
358         (java_source_files): Added EmbeddedWindowPeer.java.
359         (gtk_awt_peer_sources): Added GtkEmbeddedWindowPeer.java.
360         (gtk_c_source_files): Added gnu_java_awt_peer_gtk_GtkEmbeddedWindowPeer.c.
361         * Makefile.in: Regenerated.
363 2003-07-26  Ranjit Mathew  <rmathew@hotmail.com>
365         * java/lang/Win32Process.java (ConcreteProcess): Surround
366         a command line element with quotes if it contains an
367         embedded space or tab.
368         * java/lang/natWin32Process.cc (startProcess): Do not
369         surround command line elements with quotes here.
371         * configure.host: Use -fcheck-references and 
372         -fuse-divide-subroutine for MinGW until we fix
373         win32_exception_handler( ) in win32.cc w.r.t. Win32 
374         Structured Exception Handling (SEH).
376         * win32.cc (_Jv_platform_initProperties): Use generic names
377         like "x86" for the "os.arch" property to be consistent with
378         what Sun's JDK produces. Use the wProcessorArchitecture
379         member of the Win32 SYSTEM_INFO structure, filled in a call 
380         to GetSystemInfo( ), instead of dwProcessorType.
382 2003-07-26  Mohan Embar  <gnustuff@thisiscool.com>
383             Ranjit Mathew  <rmathew@hotmail.com>
385         * Makefile.am: Use cross-compiling gcjh from the path for
386         a crossed-native build.
387         * Makefile.in: Rebuilt.
388         * configure.in: Include libltdl in non-newlib builds.
389         Moved determination of gcj used to build libraries to
390         its own section. Fixed cross-compilation issues for
391         non-newlib builds.
392         * configure: Rebuilt.
394 2003-07-25  Tom Tromey  <tromey@redhat.com>
396         * java/io/natFileDescriptorPosix.cc (write): Try again on EINTR.
397         (write): Likewise.
398         (read): Likewise.
399         (read): Likewise.
401 2003-07-25  Mark Wielaard  <mark@klomp.org>
403         * java/lang/natRuntime.cc (_load): Add library name to
404         UnsatisfiedLinkError when thrown.
406 2003-07-25  Mark Wielaard  <mark@klomp.org>
408         * Makefile.am (awt_java_source_files): java/awt/GridBagLayoutInfo.java
409         added.
410         * Makefile.in: Likewise.
412 2003-07-25  Jeroen Frijters  <jeroen@frijters.net>
414         * java/awt/Component.java
415         (getPreferredSize): Call preferredSize.
416         (preferredSize): Moved body of getPreferredSize here.
417         (getMinimumSize): Call minimumSize.
418         (minimumSize): Moved body of getMinimumSize here.
419         (prepareImage): Fall back on Toolkit.prepareImage if there is no peer
420         (checkImage(Image,ImageObserver)): Don't call getWidth/getHeight, but
421         pass -1
422         * java/awt/Container.java
423         (validate): Don't validate if there is no peer.
424         (update): Clear background before calling paint.
425         * java/awt/GridBagLayout.java
426         Completed the implementation and fixed several bugs.
427         * java/awt/MediaTracker.java
428         (MediaEntry.imageUpdate): Fixed typo. & instead of | was used to
429         combine flags.
430         * java/awt/Window.java
431         (Window): Don't call setVisible(false). Windows are invisible by
432         default and calling virtual methods from constructor causes
433         compatibility problems (e.g. subclasses may assume that the peer
434         already exists).
436 2003-07-25  Michael Koch  <konqueror@gmx.de>
438         * java/awt/GridBagLayout.java:
439         Totally reworked and partly implemented.
440         * java/awt/GridBagLayoutInfo.java:
441         New file.
443 2003-07-24  Thomas Fitzsimmons  <fitzsim@redhat.com>
445         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkLabelPeer.c (create):
446         Don't pack label in an event box.
448 2003-07-24  Tom Tromey  <tromey@redhat.com>
450         For PR libgcj/7482:
451         * verify.cc (ref_intersection): New class.
452         (type_val): Removed unresolved_reference_type,
453         uninitialized_unresolved_reference_type.
454         (is_assignable_from_slow): Rewrote.
455         (type::data): Removed.
456         (type::klass): New field.
457         (type::type): Added verifier argument.
458         (type::resolve): Removed.
459         (type::set_uninitialized): Updated for change to type_val.
460         (type::set_initialized): Likewise.
461         (type::isinitialized): Likewise.
462         (type::print): Likewise.
463         (construct_primitive_array_type): Likewise.
464         (type::compatible): Updated for change to type_val and to use
465         ref_intersection.
466         (type::isarray): Updated to use ref_intersection.
467         (type::isinterface): Likewise.
468         (type::element_type): Likewise.
469         (type::to_array): Likewise.
470         (type::verify_dimensions): Rewrote.
471         (type::merge): Likewise.
472         (check_class_constant): Updated for type constructor change.
473         (check_constant): Likewise.
474         (check_field_constant): Likewise.
475         (get_one_type): Likewise.
476         (initialize_stack): Likewise.
477         (verify_instructions_0): Likewise.
478         (verify_instructions_0) [op_invokeinterface]: Removed special
479         case.
480         (isect_list): New field.
481         (_Jv_BytecodeVerifier): Initialize it.
482         (~_Jv_BytecodeVerifier): Destroy ref_intersection objects. 
484 2003-07-24  H. Väisänen  <hvaisane@joyx.joensuu.fi>
486         * java/text/SimpleDateFormat.java (format) [YEAR_FIELD]: Zero pad
487         unless field size is 2.
489 2003-07-23  Thomas Fitzsimmons  <fitzsim@redhat.com>
491         * gnu/java/awt/peer/gtk/GtkTextComponentPeer.java
492         (connectHooks): New method.
493         (handleEvent): Remove.
494         * gnu/java/awt/peer/gtk/GtkTextFieldPeer.java
495         (createHooks): Remove declaration.
496         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c
497         (generates_key_typed_event): Change to handle only certain
498         keyvals.
499         (awt_event_handler): Add special handling for GtkTextView.
500         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextComponentPeer.c
501         (textcomponent_commit_cb): New function.
502         (textcomponent_changed_cb): Likewise.
503         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextFieldPeer.c
504         (connectHooks): Remove.
506 2003-07-23  Tom Tromey  <tromey@redhat.com>
508         * java/lang/natSystem.cc (arraycopy): Check for overflow.
510         * boehm.cc (_Jv_BuildGCDescr): Use `1ULL'.
512 2003-07-22  Tom Tromey  <tromey@redhat.com>
514         * boehm.cc (_Jv_BuildGCDescr): Wrote.
515         Include limits.h.
517 2003-07-22  Tom Tromey  <tromey@redhat.com>
519         * java/awt/Window.java (getWarningString): Just return the
520         string.
521         (Window): Set warningString; check with security manager.
523 2003-07-22  Scott Gilbertson  <scottg@mantatest.com>
525         * gnu/awt/xlib/XGraphicsConfiguration.java
526         (FontMetricsCache): Made static.
528 2003-07-22  Tom Tromey  <tromey@redhat.com>
530         * java/net/URLEncoder.java (encode(String)): Use platform default
531         encoding.
532         (encode(String,String)): Convert to 2-digit upper-case hex
533         number.
534         (hex): New field.
536 2003-07-21  Thomas Fitzsimmons  <fitzsim@redhat.com>
538         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c
539         (create): Remove unused method implementation.
540         (connectHooks): Remove debug messages.
542 2003-07-20  Anthony Green  <green@redhat.com>
544         * gnu/awt/j2d/AbstractGraphicsState.java (clone): Handle
545         CloneNotSupportedException.
546         * gnu/gcj/xlib/WindowAttributes.java (clone): Ditto.
547         * gnu/gcj/xlib/WMSizeHints.java (clone): Ditto.
548         * gnu/gcj/xlib/GC.java (clone): Ditto.
549         * gnu/awt/xlib/XGraphics.java (clone): Ditto.
550         * gnu/awt/j2d/Graphics2DImpl.java (clone): Ditto.
552         * gnu/awt/xlib/XEventLoop.java (postNextEvent): Remove unreachable
553         handler.
554         * gnu/gcj/runtime/NameFinder.java (NameFinder): Ditto.
556 2003-07-20  Steve Pribyl <steve@netfuel.com.>
558         * gnu/gcj/runtime/natSharedLibLoader.cc (init): `libname' now a
559         String.  Put dlerror() message into exception.
560         Include UnsatisfiedLinkError.
561         * gnu/gcj/runtime/SharedLibLoader.java (init): `libname' now a
562         String.  Now native.
564 2003-07-20  Tom Tromey  <tromey@redhat.com>
566         * java/lang/Runtime.java: Comment fix.
567         * java/lang/ClassLoader.java (isAncestorOf): New method.
568         (getParent): Uncommented security check.  Use isAncestorOf.
569         * include/jvm.h (_Jv_CheckAccess): Declare.
570         * java/lang/reflect/natConstructor.cc (newInstance): Perform
571         access check.
572         Include IllegalAccessException.h, ArrayIndexOutOfBoundsException.h.
573         * java/lang/reflect/natArray.cc (newInstance): Pass caller's
574         class loader to _Jv_GetArrayClass.
575         Include ArrayIndexOutOfBoundsException.h.
576         * java/lang/reflect/Field.java: Update comment to reflect status.
577         (equals): Fixed indentation.
578         * java/lang/Class.h (Class): Declare memberAccessCheck, not
579         checkMemberAccess.  Make _Jv_CheckAccess a friend.
580         * java/lang/Class.java (memberAccessCheck): New method from
581         Classpath.
582         (checkMemberAccess): Removed.
583         (getDeclaredMethod): Use memberAccessCheck.
584         (getField): Likewise.
585         (getMethod): Likewise.
586         * resolve.cc (_Jv_ResolvePoolEntry): Use _Jv_CheckAccess.
587         (_Jv_SearchMethodInClass): Likewise.
588         * prims.cc (_Jv_CheckAccess): New function.
589         * jni.cc (_Jv_JNI_FindClass): Use getClassLoaderInternal.
590         (_Jv_JNI_GetAnyFieldID): Likewise.
591         * java/lang/natClass.cc (forName): Use getClassLoaderInternal.
592         (getClassLoader): Added security check.
593         (getConstructor): Call memberAccessCheck.
594         (getDeclaredClasses): Likewise.
595         (getDeclaredField): Likewise.
596         (getDeclaredFields): Likewise.
597         (_getConstructors): Likewise.
598         (getDeclaredConstructor): Likewise.
599         (getDeclaredMethods): Likewise.
600         (getFields): Likewise.
601         (getMethods): Likewise.
602         (newInstance): Likewise.
603         (_Jv_MakeVTable): Put method name in exception.
604         * java/lang/reflect/natMethod.cc (getType): Use
605         getClassLoaderInternal.
606         (_Jv_GetTypesFromSignature): Likewise.
607         (invoke): Perform access check.
608         (_Jv_CallAnyMethodA): Removed old FIXME comments.
609         Include ArrayIndexOutOfBoundsException.h.
610         * java/lang/reflect/natField.cc (getType): Use
611         getClassLoaderInternal.
612         (_Jv_CheckFieldAccessibility): Removed.
613         (getAddr): Use _Jv_CheckAccess; find caller.
614         Include ArrayIndexOutOfBoundsException.h.
616 2003-07-20  Michael Koch  <konqueror@gmx.de>
618         * java/net/URL.java
619         (URL): Fixed documentation to name an argument correcty, Reformatted
620         one method declaration.
621         (getURLStreamHandler): Added documentation from classpath.
623 2003-07-19  Tom Tromey  <tromey@redhat.com>
625         * mauve-libgcj: Don't run CollationElementIterator tests.
627 2003-07-19  Jeroen Frijters <jeroen@sumatra.nl>
629         * java/net/URLClassLoader.java (addURL): Moved implementation to
630         private addURLImpl() to avoid calling addURL from the constructor.
631         (addURLImpl): Contains the code that was previously in addURL.
632         (addURLs): Call addURLImpl(), not addURL().
634 2003-07-18  Graydon Hoare  <graydon@redhat.com>
636         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkScrollBarPeer.c: 
637         Handle missing event cases, connect to "value-changed" signal.
639 2003-07-18  Graydon Hoare  <graydon@redhat.com>
641         * java/awt/geom/CubicCurve2D.java,
642         java/awt/geom/Line2D.java,
643         java/awt/geom/QuadCurve2D.java,
644         java/awt/geom/Rectangle2D.java: 
645         Fix path some calculations, make path iterators follow
646         a consistent style.
648 2003-07-18  Mark Wielaard  <mark@klomp.org>
650         * java/util/logging/Handler.java (isLoggable): Check record level
651         smaller or equal.
653 2003-07-17  Michael Koch  <konqueror@gmx.de>
655         * gnu/java/awt/peer/gtk/GtkToolkit.java:
656         Reworked imports.
658 2003-07-14  Michael Koch  <konqueror@gmx.de>
660         * gnu/java/rmi/server/UnicastServerRef.java:
661         New version from classpath.
663 2003-07-14  Michael Koch  <konqueror@gmx.de>
665         * java/awt/image/MemoryImageSource.java,
666         java/beans/PropertyEditorManager.java,
667         javax/naming/CompoundName.java,
668         javax/naming/spi/NamingManager.java,
669         javax/swing/AbstractButton.java,
670         javax/swing/ButtonModel.java,
671         javax/swing/SwingUtilities.java,
672         javax/swing/UIManager.java,
673         javax/swing/colorchooser/DefaultColorSelectionModel.java,
674         javax/swing/event/AncestorEvent.java,
675         javax/swing/event/InternalFrameEvent.java,
676         java/util/zip/ZipFile.java:
677         New versions from classpath.
679 2003-07-13  Michael Koch  <konqueror@gmx.de>
681         * gnu/java/nio/FileChannelImpl.java,
682         gnu/java/nio/natFileChannelImpl.cc: Removed.
683         * java/io/FileInputStream.java,
684         java/io/FileOutputStream.java,
685         java/io/RandomAccessFile.java,
686         java/nio/MappedByteBufferImpl.java:
687         Import java.nio.channels.FileChannelImpl instead of
688         gnu.java.nio.FileChannelImpl.
689         * java/nio/channels/FileChannelImpl.java,
690         java/nio/channels/natFileChannelImpl.cc:
691         New files.
692         * Makefile.am
693         (ordinary_java_source_files):
694         Removed gnu/java/nio/FileChannelImpl.java and added
695         java/nio/channels/FileChannelImpl.java.
696         (nat source_files):
697         Removed gnu/java/nio/natFileChannelImpl.cc and added
698         java/nio/channels/natFileChannelImpl.cc.
699         * Makefile.in: Regenerated.
701 2003-07-13  Michael Koch  <konqueror@gmx.de>
703         * javax/swing/plaf/basic/BasicBorders.java,
704         javax/swing/plaf/basic/BasicLabelUI.java,
705         javax/swing/plaf/basic/BasicLookAndFeel.java,
706         javax/swing/plaf/basic/BasicTabbedPaneUI.java,
707         javax/swing/plaf/basic/BasicTextUI.java,
708         javax/swing/plaf/metal/MetalLookAndFeel.java:
709         New versions from classpath.
711 2003-07-13  Michael Koch  <konqueror@gmx.de>
713         * gnu/java/awt/peer/gtk/GdkFontMetrics.java
714         * gnu/java/awt/peer/gtk/GdkGraphics.java
715         * gnu/java/awt/peer/gtk/GtkButtonPeer.java
716         * gnu/java/awt/peer/gtk/GtkCanvasPeer.java
717         * gnu/java/awt/peer/gtk/GtkCheckboxGroupPeer.java
718         * gnu/java/awt/peer/gtk/GtkCheckboxMenuItemPeer.java
719         * gnu/java/awt/peer/gtk/GtkCheckboxPeer.java
720         * gnu/java/awt/peer/gtk/GtkChoicePeer.java
721         * gnu/java/awt/peer/gtk/GtkClipboard.java
722         * gnu/java/awt/peer/gtk/GtkDialogPeer.java
723         * gnu/java/awt/peer/gtk/GtkFileDialogPeer.java
724         * gnu/java/awt/peer/gtk/GtkFramePeer.java
725         * gnu/java/awt/peer/gtk/GtkGenericPeer.java
726         * gnu/java/awt/peer/gtk/GtkImage.java
727         * gnu/java/awt/peer/gtk/GtkImagePainter.java
728         * gnu/java/awt/peer/gtk/GtkLabelPeer.java
729         * gnu/java/awt/peer/gtk/GtkListPeer.java
730         * gnu/java/awt/peer/gtk/GtkMenuBarPeer.java
731         * gnu/java/awt/peer/gtk/GtkMenuComponentPeer.java
732         * gnu/java/awt/peer/gtk/GtkMenuItemPeer.java
733         * gnu/java/awt/peer/gtk/GtkMenuPeer.java
734         * gnu/java/awt/peer/gtk/GtkOffScreenImage.java
735         * gnu/java/awt/peer/gtk/GtkPanelPeer.java
736         * gnu/java/awt/peer/gtk/GtkPopupMenuPeer.java
737         * gnu/java/awt/peer/gtk/GtkScrollPanePeer.java
738         * gnu/java/awt/peer/gtk/GtkScrollbarPeer.java
739         * gnu/java/awt/peer/gtk/GtkTextAreaPeer.java
740         * gnu/java/awt/peer/gtk/GtkTextComponentPeer.java
741         * gnu/java/awt/peer/gtk/GtkTextFieldPeer.java
743 2003-07-13  Michael Koch  <konqueror@gmx.de>
745         * gnu/java/locale/LocaleInformation_de.java
746         * gnu/java/locale/LocaleInformation_en.java
747         * gnu/java/locale/LocaleInformation_nl.java
749 2003-07-13  Michael Koch  <konqueror@gmx.de>
751         * gnu/java/awt/EmbeddedWindow.java,
752         gnu/java/awt/EmbeddedWindowSupport.java,
753         gnu/java/awt/natEmbeddedWindow.cc:
754         New files.
755         * java/awt/Window.java
756         (Window): New constructor to support embedded windows.
757         * Makefile.am
758         (awt_java_source_files): Added gnu/java/awt/EmbeddedWindow.java and
759         gnu/java/awt/EmbeddedWindowSupport.java.
760         (nat_source_files): Added gnu/java/awt/natEmbeddedWindow.cc.
761         * Makefile.in: Regenerated.
763 2003-07-11  Matt Kraai  <kraii@alumni.cmu.edu>
765         * gnu/gcj/runtime/SharedLibLoader.java: Fix misspelling.
766         * gnu/gcj/runtime/natSharedLibLoader.cc: Likewise.
767         * java/awt/im/InputContext.java: Remove a redundant
768         partial line.
770 2003-07-09  Tom Tromey  <tromey@redhat.com>
772         * Makefile.in: Rebuilt.
773         * Makefile.am (AM_MAKEFLAGS): Added CPPFLAGS.
775 2003-07-09  Mark Wielaard  <mark@klomp.org>
777         * java/io/ObjectOutputStream.java (writeObject): break after
778         calling writeClassDescriptor().
780 2003-07-09  Mark Mitchell  <mark@codesourcery.com>
782         * gcj/array.h (JvPrimClass): Don't parenthesize the output.
784 2003-07-09  Michael Koch  <konqueror@gmx.de>
786         * gnu/java/awt/peer/gtk/GtkComponentPeer.java,
787         gnu/java/awt/peer/gtk/GtkContainerPeer.java,
788         gnu/java/awt/peer/gtk/GtkDialogPeer.java,
789         gnu/java/awt/peer/gtk/GtkWindowPeer.java:
790         Explicitly import used classes.
791         * java/awt/Container.java: New version from classpath.
793 2003-07-09  Michael Koch  <konqueror@gmx.de>
795         * libgcj.pc.in: New file.
796         * Makefile.am: Install libgcj.pc in $libdir/pkgconfig.
797         * Makefile.in: Regenerated.
798         * configure: Regenrated.
799         * configure.in: Create libgcj.pc from libgcj.pc.in.
801 2003-07-08  Mark Wielaard <mark@klomp.org>
803         * gcj/cni.h: CNI now expands to Compiled Native Interface.
805         * java/lang/e_pow.c: CYGNUS LOCAL should be GCJ LOCAL.
806         * java/lang/fdlibm.h: Likewise.
808 2003-07-07  Adam Megacz <adam@xwt.org>
810         * posix.cc: added #include<stdio.h>
811                 
812 2003-07-07  Thomas Fitzsimmons  <fitzsim@redhat.com>
814         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMainThread.c: Fix
815         formatting.
817         * gnu/java/awt/peer/gtk/GtkTextComponentPeer.java
818         (setCaretPosition, setEditable): Rely entirely on native
819         implementation.
820         (getArgs): Remove.
821         (postTextEvent): New method.
822         (handleEvent): New method.
823         * gnu/java/awt/peer/gtk/GtkTextFieldPeer.java (handleEvent): New
824         method.
825         * java/awt/event/ActionEvent.java (paramString): Fix formatting.
826         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c
827         (keysym_to_awt_keycode): Fix range checks.
828         (generates_key_typed_event): New function.
829         (awt_event_handler): Post AWT_KEY_RELEASED events to event
830         queue.
831         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMainThread.c
832         (gtkInit): Store TextComponent's postTextEvent method ID.
833         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextComponentPeer.c
834         (setText): Post TEXT_VALUE_CHANGED event to event queue.
836 2003-07-07  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
838         * configure.in: Check for usleep declaration.
839         * acconfig.h (HAVE_USLEEP_DECL): Provide template.
840         * configure: Regenerate.
841         * include/config.h.in: Likewise.
842         * include/posix.h [!HAVE_USLEEP_DECL]: Declare usleep.
844 2003-07-01  Michael Koch  <konqueror@gmx.de>
846         * gnu/gcj/convert/natIconv.cc
847         (iconv_init): Fixed possible memory leak by releasing allocated iconv
848         handle.
850 2003-06-30  Thomas Fitzsimmons  <fitzsim@redhat.com>
852         * glib-2.0.m4: New file.
853         * gtk-2.0.m4: New file.
854         * glib.m4: Remove.
855         * gtk.m4: Remove.
856         * configure.in: Update AM_PATH_GTK macro call to
857         AM_PATH_GTK_2_0.  Likewise for AM_PATH_GLIB.
858         * jni/gtk-peer/gnu_java_awt_peer_gtk_GdkGraphics.c,
859         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkButtonPeer.c,
860         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c,
861         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c,
862         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkListPeer.c,
863         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMainThread.c,
864         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkScrollBarPeer.c,
865         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextAreaPeer.c,
866         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextComponentPeer.c,
867         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextFieldPeer.c,
868         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c,
869         jni/gtk-peer/gthread-jni.c,
870         jni/gtk-peer/gthread-jni.h:
871         New versions from classpath.
872         * aclocal.m4: Regenerate.
873         * configure: Regenerate.
874         * Makefile.in: Regenerate.
875         * gcj/Makefile.in: Regenerate.
876         * include/Makefile.in: Regenerate.
877         * testsuite/Makefile.in: Regenerate.
879 2003-06-30  Gary Benson  <gbenson@redhat.com>
881         For PR libgcj/11349:
882         * javax/naming/spi/NamingManager.java (getURLContext): Use
883         correct name for factory class.
885 2003-06-28  Michael Koch  <konqueror@gmx.de>
887         * java/io/PrintStream.java
888         (checkError): Call flush() instead of direct flushing of the Writer
889         object.
890         (print): Call print(String) instead of direct print method of the
891         Writer Object.
892         (println): Call println(String) instead of direct println method of the
893         Writer Object.
894         (write): Simplified.
896 2003-06-28  Michael Koch  <konqueror@gmx.de>
898         * java/net/ServerSocket.java
899         (setChannel): New method.
900         * java/net/Socket.java
901         (setChannel): New method.
903 2003-06-27  Michael Koch  <konqueror@gmx.de>
905         * java/beans/beancontext/BeanContextSupport.java:
906         New version from classpath.
908 2003-06-27  Michael Koch  <konqueror@gmx.de>
910         * java/awt/Window.java,
911         java/awt/font/GraphicAttribute.java,
912         java/awt/font/ImageGraphicAttribute.java,
913         java/awt/image/DataBufferByte.java,
914         java/awt/image/DataBufferInt.java,
915         java/awt/image/DataBufferUShort.java,
916         java/awt/image/DirectColorModel.java,
917         java/awt/image/PixelGrabber.java:
918         New versions from classpath.
920 2003-06-27  Michael Koch  <konqueror@gmx.de>
922         * java/security/Certificate.java
923         (getGuarantor): Removed wrong @deprecated tag.
924         (getPrincipal): Likewise.
925         (getPublicKey): Likewise.
926         (encode): Likewise.
927         (decode): Likewise.
928         (getFormat): Likewise.
929         (toString): Likewise.
930         * java/security/cert/PolicyQualifierInfo.java
931         (PolicyQualifierInfo): Made final.
932         * javax/security/auth/x500/X500Principal.java
933         (serialVersionUID): New member variable.
935 2003-06-27  Michael Koch  <konqueror@gmx.de>
937         * java/text/Format.java
938         (serialVersionUID): Fixed value.
940 2003-06-27  Michael Koch  <konqueror@gmx.de>
942         * java/net/Inet4Address.java
943         (Inet4Address): Made package-private.
944         * java/net/Inet6Address.java
945         (Inet4Address): Made package-private.
947 2003-06-27  Michael Koch  <konqueror@gmx.de>
949         * java/io/RandomAccessFile.java
950         (readLine): Removed wrong @deprecated tag.
951         (getChannel): Made final.
953 2003-06-27  Michael Koch  <konqueror@gmx.de>
955         * gnu/java/nio/FileChannelImpl.java
956         (write): Removed.
958 2003-06-27  Michael Koch  <konqueror@gmx.de>
960         * java/nio/ByteBufferImpl.java
961         (ByteBufferImpl): Made it a package-private class
962         * java/nio/CharBufferImpl.java
963         (CharBufferImpl): Made it a package-private class
964         * java/nio/DirectByteBufferImpl.java
965         (DirectByteBufferImpl): Made it a package-private class
966         * java/nio/DoubleBufferImpl.java
967         (DoubleBufferImpl): Made it a package-private class
968         * java/nio/FloatBufferImpl.java
969         (FloatBufferImpl): Made it a package-private class
970         * java/nio/IntBufferImpl.java
971         (IntBufferImpl): Made it a package-private class
972         * java/nio/LongBufferImpl.java
973         (LongBufferImpl): Made it a package-private class
974         * java/nio/ShortBufferImpl.java
975         (ShortBufferImpl): Made it a package-private class
976         * java/nio/channels/FileChannel.java
977         (write): Made final.
978         * java/nio/channels/ServerSocketChannel.java
979         (ServerSocketChanne): Made protected.
981 2003-06-27  Michael Koch  <konqueror@gmx.de>
983         * javax/naming/CompositeName.java
984         (serialVersionUID): New member variable.
985         * javax/naming/CompoundName.java
986         (serialVersionUID): New member variable.
987         * javax/naming/InitialContext.java
988         (InitialContext): Throws NamingException.
989         (init): Likewise.
990         * javax/naming/LinkRef.java
991         (serialVersionUID): New member variable.
992         (gteLinkName): Throws NamingException.
993         * javax/naming/NamingException.java
994         (serialVersionUID): New member variable.
995         * javax/naming/NamingSecurityException.java
996         (NamingSecurityException): Made abstract.
997         (serialVersionUID): New member variable.
998         * javax/naming/ReferralException.java
999         (serialVersionUID): New member variable.
1000         * javax/naming/StringRefAddr.java
1001         (serialVersionUID): New member variable.
1002         * javax/naming/directory/BasicAttribute.java:
1003         Reworked imports.
1004         (serialVersionUID): New member variable.
1005         (get): Throws NamingException.
1006         (getAll): Throws NamingException.
1007         * javax/naming/directory/BasicAttributes.java:
1008         Reworked imports.
1009         (serialVersionUID): New member variable.
1010         * javax/naming/ldap/UnsolicitedNotificationEvent.java
1011         (serialVersionUID): New member variable.
1013 2003-06-27  Michael Koch  <konqueror@gmx.de>
1015         * Makefile.am
1016         (awt_java_source_files): Added new files:
1017         javax/swing/Popup.java,
1018         javax/swing/PopupFactory.java
1019         * Makefile.in: Regenerated.
1021 2003-06-27  Michael Koch  <konqueror@gmx.de>
1023         * javax/swing/JWindow.java,
1024         javax/swing/event/AncestorEvent.java,
1025         javax/swing/event/HyperlinkEvent.java,
1026         javax/swing/event/InternalFrameEvent.java,
1027         javax/swing/event/ListDataEvent.java,
1028         javax/swing/event/TableModelEvent.java,
1029         javax/swing/plaf/PopupMenuUI.java,
1030         javax/swing/plaf/SplitPaneUI.java,
1031         javax/swing/plaf/TabbedPaneUI.java,
1032         javax/swing/plaf/TextUI.java,
1033         javax/swing/plaf/TreeUI.java,
1034         javax/swing/plaf/basic/BasicTextUI.java,
1035         javax/swing/plaf/basic/BasicTreeUI.java:
1036         New versions from classpath.
1037         * javax/swing/Popup.java,
1038         javax/swing/PopupFactory.jav:
1039         New source files from classpath.
1040         * javax/swing/plaf/doc-files/TreeUI-1.png:
1041         New binary files from classpath.
1043 2003-06-25  Michael Koch  <konqueror@gmx.de>
1045         * Makefile.am
1046         (awt_java_source_files): Added javax/swing/plaf/SpinnerUI.java.
1047         * Makefile.in: Regenerated.
1049 2003-06-25  Michael Koch  <konqueror@gmx.de>
1051         * javax/swing/plaf/ActionMapUIResource.java,
1052         javax/swing/plaf/BorderUIResource.java,
1053         javax/swing/plaf/ButtonUI.java,
1054         javax/swing/plaf/ColorChooserUI.java,
1055         javax/swing/plaf/ColorUIResource.java,
1056         javax/swing/plaf/ComboBoxUI.java,
1057         javax/swing/plaf/ComponentInputMapUIResource.java,
1058         javax/swing/plaf/ComponentUI.java,
1059         javax/swing/plaf/DesktopIconUI.java,
1060         javax/swing/plaf/DesktopPaneUI.java,
1061         javax/swing/plaf/DimensionUIResource.java,
1062         javax/swing/plaf/FileChooserUI.java,
1063         javax/swing/plaf/FontUIResource.java,
1064         javax/swing/plaf/IconUIResource.java,
1065         javax/swing/plaf/InputMapUIResource.java,
1066         javax/swing/plaf/InsetsUIResource.java,
1067         javax/swing/plaf/InternalFrameUI.java,
1068         javax/swing/plaf/LabelUI.java,
1069         javax/swing/plaf/ListUI.java,
1070         javax/swing/plaf/MenuBarUI.java,
1071         javax/swing/plaf/MenuItemUI.java,
1072         javax/swing/plaf/OptionPaneUI.java,
1073         javax/swing/plaf/PanelUI.java,
1074         javax/swing/plaf/ProgressBarUI.java,
1075         javax/swing/plaf/RootPaneUI.java,
1076         javax/swing/plaf/ScrollBarUI.java,
1077         javax/swing/plaf/ScrollPaneUI.java,
1078         javax/swing/plaf/SeparatorUI.java,
1079         javax/swing/plaf/SliderUI.java,
1080         javax/swing/plaf/TableHeaderUI.java,
1081         javax/swing/plaf/TableUI.java,
1082         javax/swing/plaf/ToolBarUI.java,
1083         javax/swing/plaf/ToolTipUI.java,
1084         javax/swing/plaf/ViewportUI.java:
1085         New versions from classpath.
1086         * javax/swing/plaf/SpinnerUI.java: 
1087         New file from classpath
1089 2003-06-25  Michael Koch  <konqueror@gmx.de>
1091         * java/awt/image/ColorModel.java:
1092         New version from classpath.
1094 2003-06-25  Michael Koch  <konqueror@gmx.de>
1096         * java/net/PlainDatagramSocketImpl.java:
1097         Partly merged with classpath, this mainly adds documentation.
1099 2003-06-25  Michael Koch  <konqueror@gmx.de>
1101         * java/io/ObjectInputStream.java
1102         (readClassDescriptor): New method.
1103         (readObject): Moved functionality to readClassDescriptor().
1104         * java/io/ObjectOutputStream.java
1105         (writeClassDescriptor): New method.
1106         (writeObject): Moved functionality to writeClassDescriptor().
1108 2003-06-25  Michael Koch  <konqueror@gmx.de>
1110         * javax/swing/plaf/basic/BasicListUI.java,
1111         javax/swing/plaf/basic/BasicOptionPaneUI.java:
1112         Added missing methods.
1114 2003-06-25  Michael Koch  <konqueror@gmx.de>
1116         * javax/swing/event/AncestorEvent.java
1117         javax/swing/event/HyperlinkEvent.java
1118         javax/swing/event/InternalFrameEvent.java
1119         javax/swing/event/ListDataEvent.java
1120         javax/swing/event/TableModelEvent.java:
1121         Compile fixes.
1123 2003-06-24  Michael Koch  <konqueror@gmx.de>
1125         * java/net/URL.java:
1126         Renamed "handler" to "ph" in the whole file to match classpaths
1127         version.
1128         * java/net/URLStreamHandler.java:
1129         (equals): Renamed "handler" to "ph".
1131 2003-06-24  Michael Koch  <konqueror@gmx.de>
1133         * javax/swing/event/AncestorEvent.java,
1134         javax/swing/event/HyperlinkEvent.java,
1135         javax/swing/event/InternalFrameEvent.java,
1136         javax/swing/event/ListDataEvent.java,
1137         javax/swing/event/TableModelEvent.java,
1138         javax/swing/event/TreeWillExpandListener.java,
1139         javax/swing/plaf/ComponentUI.java,
1140         javax/swing/plaf/DesktopIconUI.java,
1141         javax/swing/plaf/DesktopPaneUI.java,
1142         javax/swing/plaf/DimensionUIResource.java,
1143         javax/swing/plaf/FileChooserUI.java,
1144         javax/swing/plaf/FontUIResource.java,
1145         javax/swing/plaf/IconUIResource.java,
1146         javax/swing/plaf/InputMapUIResource.java,
1147         javax/swing/plaf/InsetsUIResource.java,
1148         javax/swing/plaf/InternalFrameUI.java,
1149         javax/swing/plaf/LabelUI.java,
1150         javax/swing/plaf/ListUI.java,
1151         javax/swing/plaf/MenuBarUI.java,
1152         javax/swing/plaf/MenuItemUI.java,
1153         javax/swing/plaf/OptionPaneUI.java,
1154         javax/swing/plaf/PanelUI.java,
1155         javax/swing/plaf/ProgressBarUI.java,
1156         javax/swing/plaf/doc-files/ComponentUI-1.dia,
1157         javax/swing/plaf/doc-files/ComponentUI-1.png:
1158         New versions from classpath.
1160 2003-06-24  Michael Koch  <konqueror@gmx.de>
1162         * java/nio/Buffer.java
1163         (cap): Made package-private.
1164         (pos): Likewise.
1165         (limit): Likewise.
1166         (mark): Likewise.
1168 2003-06-24  Michael Koch  <konqueror@gmx.de>
1170         * java/net/SocketImpl.java
1171         (shutdownInput): Made it non-abstract method throwing an exception
1172         like in SUNs JRE.
1173         (shutdownOutput): Likewise.
1174         * java/net/SocketInputStream.java,
1175         java/net/SocketOutputStream.java:
1176         New files from classpath.
1178 2003-06-24  Michael Koch  <konqueror@gmx.de>
1180         * java/awt/Font.java,
1181         java/awt/Window.java,
1182         java/awt/color/ColorSpace.java,
1183         java/awt/datatransfer/StringSelection.java,
1184         java/awt/image/ColorModel.java:
1185         New versions from classpath.
1187 2003-06-24  Michael Koch  <konqueror@gmx.de>
1189         * Makefile.am
1190         (awt_java_source_files): Added new files:
1191         javax/swing/plaf/basic/BasicSplitPaneDivider.java,
1192         javax/swing/plaf/basic/BasicSplitPaneUI.java
1193         * Makefile.in: Regenerated.
1195 2003-06-24  Michael Koch  <konqueror@gmx.de>
1197         * javax/swing/text/JTextComponent.java:
1198         New version from classpath.
1200 2003-06-24  Michael Koch  <konqueror@gmx.de>
1202         * javax/swing/Timer.java,
1203         javax/swing/plaf/ActionMapUIResource.java,
1204         javax/swing/plaf/ButtonUI.java,
1205         javax/swing/plaf/ColorChooserUI.java,
1206         javax/swing/plaf/ColorUIResource.java,
1207         javax/swing/plaf/ComboBoxUI.java,
1208         javax/swing/plaf/ComponentInputMapUIResource.java,
1209         javax/swing/plaf/basic/BasicBorders.java:
1210         New versions from classpath.
1211         * javax/swing/plaf/basic/BasicSplitPaneDivider.java.
1212         javax/swing/plaf/basic/BasicSplitPaneUI.java:
1213         New file from classpath.
1214         * javax/swing/plaf/basic/doc-files/BasicBorders-1.png,
1215         javax/swing/plaf/basic/doc-files/BasicBorders-2.png,
1216         javax/swing/plaf/basic/doc-files/BasicBorders.FieldBorder-1.png,
1217         javax/swing/plaf/doc-files/ComponentUI-1.dia,
1218         javax/swing/plaf/doc-files/ComponentUI-1.png:
1219         New binary files from classpath.
1221 2003-06-24  Michael Koch  <konqueror@gmx.de>
1223         * java/io/LineNumberReader.java
1224         (skip): Dont do line number accounting here as this is already done in
1225         read(), simplified.
1227 2003-06-21  Michael Koch  <konqueror@gmx.de>
1229         * java/io/File.java
1230         (static): Load javaio lib if existing (only in classpath).
1231         (File): Revised documentation to show the correct argument name.
1232         (createTempFile): Partly merged with classpath.
1233         (compareTo): Simplified.
1234         (lastModified): Throw exception if time < 0.
1235         (deleteOnExit): Revised documentation.
1237 2003-06-21  Michael Koch  <konqueror@gmx.de>
1239         * java/net/PlainSocketImpl.java:
1240         Reformatted.
1241         (PlainSocketImpl): Merged class documentaion with classpath.
1242         (in): Moved.
1243         (out): Moved.
1244         (PlainSocketImpl): New empty constructor.
1245         (finalize): Moved.
1246         (setOption): Merged documentation from classpath.
1247         (getOption): Likewise.
1248         (create): Likewise.
1249         (connect): Likewise.
1250         (bind): Likewise.
1251         (listen): Likewise.
1252         (accept): Likewise.
1253         (available): Likewise.
1254         (close): Likewise.
1255         (read): Likewise.
1256         (write): Likewise.
1257         (getInputStream): Made synchronozed to get sure that only one stream
1258         object can be created for this socket, merged documentation from
1259         classpath.
1260         (getOutputStream): Likewise.
1262 2003-06-21  Michael Koch  <konqueror@gmx.de>
1264         * java/net/PlainSocketImpl.java:
1265         Reformatting.
1266         (static): New implicit method.
1267         (read): Made package private.
1268         (write): Likewise.
1270 2003-06-21  Michael Koch  <konqueror@gmx.de>
1272         * java/util/SimpleTimeZone.java:
1273         Removed unneeded import, reformatting.
1275 2003-06-21  Michael Koch  <konqueror@gmx.de>
1277         * java/text/DateFormat.java,
1278         java/text/SimpleDateFormat.java,
1279         java/util/Locale.java:
1280         New versions from classpath.
1282 2003-06-21  Michael Koch  <konqueror@gmx.de>
1284         * javax/swing/SpinnerModel.java:
1285         New file from classpath.
1286         * javax/swing/border/LineBorder.java,
1287         javax/swing/border/SoftBevelBorder.java,
1288         javax/swing/plaf/BorderUIResource.java,
1289         javax/swing/plaf/basic/BasicBorders.java:
1290         New versions from classpath.
1291         * javax/swing/plaf/basic/doc-files/BasicBorders.MenuBarBorder-1.png,
1292         javax/swing/plaf/basic/doc-files/BasicBorders.RadioButtonBorder-1.png,
1293         javax/swing/plaf/basic/doc-files/BasicBorders.SplitPaneBorder-1.png,
1294         javax/swing/plaf/basic/doc-files/BasicBorders.SplitPaneBorder-2.png,
1295         javax/swing/plaf/basic/doc-files/BasicBorders.SplitPaneDividerBorder-1.png,
1296         javax/swing/plaf/basic/doc-files/BasicBorders.ToggleButtonBorder-1.png:
1297         New binary files from classpath.
1299 2003-06-21  Michael Koch  <konqueror@gmx.de>
1301         * java/util/logging/LogRecord.java,
1302         java/util/logging/Logger.java,
1303         java/util/logging/SocketHandler.java,
1304         java/util/logging/SimpleFormatter.java,
1305         java/util/logging/Formatter.java,
1306         java/util/logging/ErrorManager.java,
1307         java/util/logging/Handler.java,
1308         java/util/logging/FileHandler.java,
1309         java/util/logging/LogManager.java,
1310         java/util/logging/Level.java,
1311         java/util/logging/ConsoleHandler.java,
1312         java/util/logging/StreamHandler.java,
1313         java/util/logging/LoggingPermission.java,
1314         java/util/logging/Filter.java,
1315         java/util/logging/MemoryHandler.java,
1316         java/util/logging/XMLFormatter.java:
1317         New files from classpath.
1319 2003-06-20  Michael Koch  <konqueror@gmx.de>
1321         * java/io/ObjectStreamField.java
1322         (unshared): new member variable.
1323         (ObjectStreamField): New constructor.
1324         (isUnshared): New method.
1326 2003-06-20  Michael Koch  <konqueror@gmx.de>
1328         * java/net/URLStreamHandler.java
1329         (hostsEqual): Rewritten.
1331 2003-06-20  Michael Koch  <konqueror@gmx.de>
1333         * gnu/java/nio/MappedByteFileBuffer.java,
1334         gnu/java/nio/natMappedByteFileBuffer.cc:
1335         Removed
1336         * java/nio/MappedByteBufferImpl.java:
1337         New file.
1338         * gnu/java/nio/FileChannelImpl.java:
1339         Use MappedByteBufferImpl instead of MappedByteFileBuffer.
1340         * Makefile.am
1341         (ordinary_java_source_files): Removed
1342         gnu/java/nio/MappedByteFileBuffer.java and added
1343         java/nio/MappedByteBufferImpl.java.
1344         (nat_source_files): Removed gnu/java/nio/natMappedByteFileBuffer.cc
1345         * Makefile.in: Regenerated.
1347 2003-06-19  Michael Koch  <konqueror@gmx.de>
1349         * gnu/java/nio/DatagramChannelImpl.java
1350         (fd): Removed.
1351         (blocking): New member variable.
1352         (socket): Likewise.
1353         (DatagramChannelImpl): Throws IOException, initialize socket.
1354         (socket):Implemented.
1355         (implCloseSelectableChannel): Throws IOException, implemented.
1356         (implConfigureBlocking): Likewise.
1357         (connect): Likewise.
1358         (disconnect): Likewise.
1359         (isConnected): Likewise.
1360         (write): Likewise.
1361         (read): Likewise.
1362         (receive): Throws IOException.
1363         (send): Likewise.
1364         * gnu/java/nio/SocketChannelImpl.java
1365         (read): Implemented.
1366         (write): Implemented.
1368 2003-06-19  Michael Koch  <konqueror@gmx.de>
1370         * javax/swing/JComponent.java,
1371         javax/swing/JInternalFrame.java,
1372         javax/swing/MenuSelectionManager.java,
1373         javax/swing/SwingUtilities.java,
1374         javax/swing/ToggleButtonModel.java:
1375         New versions from classpath.
1377 2003-06-19  Michael Koch  <konqueror@gmx.de>
1379         * java/text/CollationElementIterator.java
1380         (NULLORDER): Initialize with -1 as JDK documentation says.
1382 2003-06-19  Michael Koch  <konqueror@gmx.de>
1384         * java/net/HttpURLConnection.java,
1385         java/net/Inet4Address.java,
1386         java/net/Inet6Address.java,
1387         java/net/SocketImpl.java,
1388         java/net/URLClassLoader.java:
1389         Reworked import statements.
1390         * java/net/InetAddress.java
1391         (getByAddress): Simplified.
1392         * java/net/ServerSocket.java
1393         (ServerSocket): Moved special handling during bind operation to
1394         bind().
1395         (bind): Handle different cases when trying to bind a socket.
1396         * java/net/URLConnection.java
1397         (getHeaderFieldDate): Merged with classpath.
1398         (getHeaderFieldInt): Likewise.
1400 2003-06-19  Michael Koch  <konqueror@gmx.de>
1402         * java/util/zip/InflaterInputStream.java
1403         (InflaterInputStream): Throw NullPointerException if in is null (as
1404         JDK does).
1406 2003-06-19  Michael Koch  <konqueror@gmx.de>
1408         * java/awt/Font.java
1409         javax/swing/UIManager.java
1410         javax/swing/border/AbstractBorder.java
1411         javax/swing/border/BevelBorder.java
1412         javax/swing/border/Border.java
1413         javax/swing/border/CompoundBorder.java
1414         javax/swing/border/EmptyBorder.java
1415         javax/swing/border/EtchedBorder.java
1416         javax/swing/border/LineBorder.java
1417         javax/swing/border/MatteBorder.java
1418         javax/swing/border/TitledBorder.java
1419         javax/swing/plaf/BorderUIResource.java
1420         javax/swing/plaf/basic/BasicBorders.java
1421         javax/swing/plaf/basic/BasicButtonUI.java
1422         javax/swing/plaf/basic/BasicCheckBoxUI.java
1423         javax/swing/plaf/basic/BasicGraphicsUtils.java
1424         javax/swing/plaf/basic/BasicLabelUI.java
1425         javax/swing/plaf/basic/BasicRadioButtonUI.java
1426         javax/swing/plaf/basic/BasicToggleButtonUI.java:
1427         New versions from classpath.
1428         * javax/swing/border/SoftBevelBorder.java:
1429         New file from classpath.
1430         * javax/swing/border/doc-files/LineBorder-1.png,
1431         javax/swing/border/doc-files/BevelBorder-1.png,
1432         javax/swing/border/doc-files/BevelBorder-2.png,
1433         javax/swing/border/doc-files/BevelBorder-3.png,
1434         javax/swing/border/doc-files/EmptyBorder-1.png,
1435         javax/swing/border/doc-files/EtchedBorder-1.png,
1436         javax/swing/border/doc-files/EtchedBorder-2.png,
1437         javax/swing/border/doc-files/MatteBorder-1.png,
1438         javax/swing/border/doc-files/MatteBorder-2.png,
1439         javax/swing/border/doc-files/MatteBorder-3.png,
1440         javax/swing/border/doc-files/MatteBorder-4.png,
1441         javax/swing/border/doc-files/MatteBorder-5.png,
1442         javax/swing/border/doc-files/MatteBorder-6.png,
1443         javax/swing/border/doc-files/SoftBevelBorder-1.png,
1444         javax/swing/border/doc-files/SoftBevelBorder-2.png,
1445         javax/swing/border/doc-files/SoftBevelBorder-3.png,
1446         javax/swing/plaf/basic/doc-files/BasicBorders.MarginBorder-1.png,
1447         javax/swing/plaf/basic/doc-files/BasicBorders.ButtonBorder-1.png,
1448         javax/swing/plaf/basic/doc-files/BasicGraphicsUtils-1.png,
1449         javax/swing/plaf/basic/doc-files/BasicGraphicsUtils-2.png,
1450         javax/swing/plaf/basic/doc-files/BasicGraphicsUtils-3.png,
1451         javax/swing/plaf/basic/doc-files/BasicGraphicsUtils-4.png,
1452         javax/swing/plaf/basic/doc-files/BasicGraphicsUtils-5.png,
1453         javax/swing/plaf/basic/doc-files/BasicGraphicsUtils-6.png,
1454         javax/swing/plaf/basic/doc-files/BasicGraphicsUtils-7.png:
1455         New binary files from classpath.
1456         * Makefile.am
1457         (awt_java_source_files): Added
1458         javax/swing/border/SoftBevelBorder.java.
1459         * Makefile.in: Regenerated.
1461 2003-06-19  Michael Koch  <konqueror@gmx.de>
1463         * gnu/java/security/x509/X509Certificate.java
1464         (writeReplace): Merged from classpath.
1466 2003-06-19  Michael Koch  <konqueror@gmx.de>
1468         * gnu/java/nio/FileChannelImpl.java
1469         (map_address): Made public.
1470         (FileChannelImpl): Merged with classpath.
1471         * gnu/java/nio/natFileChannelImpl.cc
1472         (nio_mmap_file): Commented out unused arguments.
1473         (nio_unmmap_file): Likewise.
1474         (niu_msync): Likewise.
1476 2003-06-19  Michael Koch  <konqueror@gmx.de>
1478         * java/awt/image/IndexColorModel.java:
1479         New version from classpath.
1481 2003-06-18  Tom Tromey  <tromey@redhat.com>
1483         * java/net/Inet6Address.java (isAnyLocalAddress): Don't use "=="
1484         on arrays.
1485         (isLoopbackAddress): Likewise.
1486         * java/net/Inet4Address.java (isAnyLocalAddress): Don't use "=="
1487         on arrays.
1489 2003-06-18  Matt Kraai  <kraai@alumni.cmu.edu>
1491         * java/lang/natVMSecurityManager.cc (getClassContext):
1492         Use maxlen instead of len for loop bound.
1494 2003-06-18  Michael Koch  <konqueror@gmx.de>
1496         * gnu/java/nio/SelectorImpl.java
1497         (register): Use fd with value 0 for now, will be fixed later.
1498         * gnu/java/nio/ServerSocketChannelImpl.java
1499         (fd): Removed.
1500         (local_port): Removed.
1501         (InetSocketAddress): Removed.
1502         (ServerSocketChannelImpl): Just initialize internal socket object.
1503         (implCloseSelectableChannel): Close internal socket object.
1504         (implConfigureBlocking): Added comment.
1505         (accept): Use jaba.net stuff to accept socket.
1506         * gnu/java/nio/SocketChannelImpl.java
1507         (fd): Removed.
1508         (local_port): Removed.
1509         (InetSocketAddress): Removed.
1510         (SocketCreate): Removed.
1511         (SocketConnect): Removed.
1512         (SocketBind): Removed.
1513         (SocketListen): Removed.
1514         (SocketAvailable): Removed.
1515         (SocketClose): Removed.
1516         (SocketRead): Removed.
1517         (SocketWrite): Removed.
1518         (SocketChannelImpl): Just initialize internal socket object.
1519         (implCloseSelectableChannel): Close internal socket object.
1520         (implConfigureBlocking): Fixed implementation, added comment.
1521         (connect): Use internal socket object to connect.
1522         (socket): No need for sanity checks.
1523         (read): Comment out some stuff, this will be reimplemented in the next
1524         commit.
1525         (write): Likewise.
1526         * gnu/java/nio/natFileChannelImpl.cc
1527         (nio_mmap_file): Line wrapped.
1528         * gnu/java/nio/natSocketChannelImpl.cc: Removed.
1529         * Makefile.am
1530         (nat_source_files): Removeded gnu/java/nio/natSocketChannelImpl.cc.
1531         * Makefile.in: Regenerated.
1533 2003-06-18  Michael Koch  <konqueror@gmx.de>
1535         * java/util/Locale.java
1536         (equals): Merged from classpath.
1538 2003-06-18  Michael Koch  <konqueror@gmx.de>
1540         * java/net/InetAddress.java:
1541         Reformatted to better match classpath's version.
1542         * java/net/URL.java
1543         (equals): Simplified.
1544         * java/net/URLConnection.java
1545         (setDoInput): Revised documentation.
1546         (getDefaultUseCaches): Likewise.
1547         (setRequestProperty): Added @since tag.
1549 2003-06-17  Michael Koch  <konqueror@gmx.de>
1551         * java/net/InetSocketAddress.java
1552         (InetSocketAddress): Use wildcard address if addr is null.
1553         (InetSocketAddress): Dont duplicate implementation.
1554         (InetSocketAddress): Throw exception when hostname is null.
1555         * java/net/Socket.java:
1556         Reworked imports.
1557         (Socket): Throw exception when raddr is null, handle case when laddr
1558         is null.
1560 2003-06-17  Michael Koch  <konqueror@gmx.de>
1562         * java/nio/DirectByteBufferImpl.java
1563         (address): Made package private.
1564         (DirectByteBufferImpl): New constructor.
1565         * java/nio/natDirectByteBufferImpl.cc
1566         (allocateImpl): Moved to java.nio namespace, implemented.
1567         (freeImpl): Likewise.
1568         (getImpl): Likewise.
1569         (putImpl): Likewise.
1570         * jni.cc
1571         (_Jv_JNI_NewDirectByteBuffer): Implemented.
1572         (_Jv_JNI_GetDirectBufferAddress): Implemented.
1573         (_Jv_JNI_GetDirectBufferCapacity): Implemented.
1575 2003-06-17  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
1577         * include/powerpc-signal.h: New File.
1578         * configure.in: Use it.
1579         * configure: Regenerated.
1581 2003-06-17  Michael Koch  <konqueror@gmx.de>
1583         * java/util/Locale.java
1584         (getDisplayLanguage): Made it final.
1585         (getDisplayCountry): Likewise.
1586         (getDisplayVariant): Likewise.
1587         (getDisplayName): Likewise.
1589 2003-06-17  Michael Koch  <konqueror@gmx.de>
1591         * java/util/PropertyResourceBundle.java:
1592         Removed unneeded import.
1594 2003-06-17  Michael Koch  <konqueror@gmx.de>
1596         * java/util/prefs/AbstractPreferences.java,
1597         java/util/prefs/PreferencesFactory.java:
1598         Reworked imports, removed unused imports.
1599         * java/util/prefs/Preferences.java
1600         (systemNodeForPackage): Method takes a Class not an Object.
1601         (userNodeForPackage): Likewise.
1602         (nodeForPackage): Likewise.
1604 2003-06-17  Michael Koch  <konqueror@gmx.de>
1606         * gnu/java/security/x509/X509Certificate.java:
1607         Explicitely import used classes.
1609 2003-06-17  Michael Koch  <konqueror@gmx.de>
1611         * java/util/zip/ZipEntry.java,
1612         java/util/zip/ZipFile.java,
1613         java/util/zip/ZipInputStream.java,
1614         java/util/zip/ZipOutputStream.java:
1615         Reworked imports, only import used classes.
1617 2003-06-17  Michael Koch  <konqueror@gmx.de>
1619         * gnu/java/lang/ArrayHelper.java,
1620         gnu/java/lang/ClassHelper.java:
1621         Reformatted to match classpath's versions.
1623 2003-06-14  Michael Koch  <konqueror@gmx.de>
1625         * gnu/java/nio/FileChannelImpl.java
1626         (map_address): Removed incorrect comment.        
1627         * gnu/java/nio/SelectorImpl.java
1628         (register): Remove code duplication and code for file channel handling.        
1629         * gnu/java/nio/ServerSocketChannelImpl.java
1630         (serverSocket): Renamed from sock_object.
1631         (ServerSocketChannel): Initialize serverSocket.
1632         (socket): Return serverSocket.
1633         * gnu/java/nio/SocketChannelImpl.java
1634         (socket): Renamed from sock_object.
1635         (isConnectionPenging): Simplified.
1636         (socket): Return socket.
1637 2003-06-14  Michael Koch  <konqueror@gmx.de>
1639         * java/security/BasicPermission.java:
1640         New version from classpath.
1642 2003-06-14  Michael Koch  <konqueror@gmx.de>
1644         * javax/naming/directory/Attribute.java:
1645         New version from classpath.
1647 2003-06-14  Michael Koch  <konqueror@gmx.de>
1649         * java/io/BufferedReader.java,
1650         java/io/FileOutputStream.java:
1651         New versions from classpath.
1653 2003-06-12  Andrew Haley  <aph@redhat.com>
1655         * prims.cc (catch_segv): Create exception in handler.
1656         (catch_fpe): Likewise.  
1657         (_Jv_divI, _Jv_remI, _Jv_divJ, _Jv_remJ): Likewise.
1658         (_Jv_ThrowSignal): Remove.
1660         * include/x86_64-signal.h (INIT_SEGV): Delete reference to nullp.
1661         * include/default-signal.h (INIT_SEGV, INIT_FPE): Delete reference
1662         to nullp and arithexception.
1663         * include/dwarf2-signal.h (INIT_SEGV, INIT_FPE): Likewise.
1664         * include/i386-signal.h (INIT_SEGV, INIT_FPE): Likewise.
1665         * include/s390-signal.h (INIT_SEGV, INIT_FPE): Likewise.
1666         * include/sparc-signal.h (INIT_SEGV, INIT_FPE): Likewise.
1667         * include/win32-signal.h (INIT_SEGV, INIT_FPE): Likewise.
1669 2003-06-11  Andrew Haley  <aph@redhat.com>
1671         * jni.cc (_Jv_JNI_check_types): New.
1672         (_Jv_JNI_SetPrimgitiveArrayRegion): Check array type.
1673         (_Jv_JNI_GetPrimitiveArrayRegion): Ditto.
1674         (_Jv_JNI_GetPrimitiveArrayElements): Ditto.
1675         (_Jv_JNI_ReleasePrimitiveArrayElements): Ditto.
1676         
1677         * java/lang/natVMSecurityManager.cc (getClassContext): Fix
1678         infinite loop.
1680 2003-06-11  Tom Tromey  <tromey@redhat.com>
1682         * java/lang/ClassLoader.java (loadClass): Not deprecated.
1683         * java/io/PrintStream.java: Not deprecated.
1685 2003-06-11  Scott Gilbertson  <scottg@mantatest.com>
1687         * gnu/awt/j2d/IntegerGraphicsState.java (drawOval): implemented.
1688         (fillOval): implemented
1689         * gnu/awt/xlib/XGraphics.java (drawArc): implemented.
1690         (fillArc): implemented.
1691         * gnu/gcj/xlib/GC.java (drawArc): added native method.
1692         (fillArc): added native method.
1693         * gnu/gcj/xlib/natGC.cc (drawArc): added native method.
1694         (fillArc): added native method.
1696 2003-06-11  Michael Koch  <konqueror@gmx.de>
1698         * java/awt/im/InputSubset.java:
1699         New version from classpath.
1701 2003-06-11  Michael Koch  <konqueror@gmx.de>
1703         * javax/swing/AbstractAction.java,
1704         javax/swing/AbstractButton.java,
1705         javax/swing/AbstractCellEditor.java,
1706         javax/swing/AbstractListModel.java,
1707         javax/swing/BorderFactory.java,
1708         javax/swing/Box.java,
1709         javax/swing/BoxLayout.java,
1710         javax/swing/ButtonGroup.java,
1711         javax/swing/DefaultButtonModel.java,
1712         javax/swing/DefaultListModel.java,
1713         javax/swing/DefaultListSelectionModel.java,
1714         javax/swing/FocusManager.java,
1715         javax/swing/ImageIcon.java,
1716         javax/swing/InputMap.java,
1717         javax/swing/JApplet.java,
1718         javax/swing/JButton.java,
1719         javax/swing/JCheckBox.java,
1720         javax/swing/JCheckBoxMenuItem.java,
1721         javax/swing/JColorChooser.java,
1722         javax/swing/JComboBox.java,
1723         javax/swing/JComponent.java,
1724         javax/swing/JDesktopPane.java,
1725         javax/swing/JDialog.java,
1726         javax/swing/JEditorPane.java,
1727         javax/swing/JFileChooser.java,
1728         javax/swing/JFormattedTextField.java,
1729         javax/swing/JFrame.java,
1730         javax/swing/JLabel.java,
1731         javax/swing/JLayeredPane.java,
1732         javax/swing/JList.java,
1733         javax/swing/JMenuBar.java,
1734         javax/swing/JMenuItem.java,
1735         javax/swing/JOptionPane.java,
1736         javax/swing/JPanel.java,
1737         javax/swing/JPasswordField.java,
1738         javax/swing/JPopupMenu.java,
1739         javax/swing/JProgressBar.java,
1740         javax/swing/JRadioButton.java,
1741         javax/swing/JRadioButtonMenuItem.java,
1742         javax/swing/JRootPane.java,
1743         javax/swing/JScrollBar.java,
1744         javax/swing/JScrollPane.java,
1745         javax/swing/JSeparator.java,
1746         javax/swing/JSlider.java,
1747         javax/swing/JTabbedPane.java,
1748         javax/swing/JTable.java,
1749         javax/swing/JTextField.java,
1750         javax/swing/JToggleButton.java,
1751         javax/swing/JToolBar.java,
1752         javax/swing/JToolTip.java,
1753         javax/swing/JTree.java,
1754         javax/swing/JViewport.java,
1755         javax/swing/JWindow.java,
1756         javax/swing/KeyStroke.java,
1757         javax/swing/ListSelectionModel.java,
1758         javax/swing/LookAndFeel.java,
1759         javax/swing/RepaintManager.java,
1760         javax/swing/ScrollPaneLayout.java,
1761         javax/swing/SizeRequirements.java,
1762         javax/swing/SwingConstants.java,
1763         javax/swing/Timer.java,
1764         javax/swing/UIDefaults.java,
1765         javax/swing/UIManager.java,
1766         javax/swing/border/AbstractBorder.java,
1767         javax/swing/border/CompoundBorder.java,
1768         javax/swing/colorchooser/AbstractColorChooserPanel.java,
1769         javax/swing/colorchooser/ColorChooserComponentFactory.java,
1770         javax/swing/colorchooser/ColorSelectionModel.java,
1771         javax/swing/colorchooser/DefaultColorSelectionModel.java,
1772         javax/swing/event/AncestorEvent.java,
1773         javax/swing/event/HyperlinkEvent.java,
1774         javax/swing/event/InternalFrameAdapter.java,
1775         javax/swing/event/InternalFrameEvent.java,
1776         javax/swing/event/ListDataEvent.java,
1777         javax/swing/event/MouseInputAdapter.java,
1778         javax/swing/event/SwingPropertyChangeSupport.java,
1779         javax/swing/event/TableModelEvent.java,
1780         javax/swing/event/TreeWillExpandListener.java,
1781         javax/swing/event/UndoableEditEvent.java,
1782         javax/swing/filechooser/FileFilter.java,
1783         javax/swing/filechooser/FileSystemView.java,
1784         javax/swing/filechooser/FileView.java,
1785         javax/swing/plaf/BorderUIResource.java,
1786         javax/swing/plaf/basic/BasicDefaults.java,
1787         javax/swing/table/AbstractTableModel.java,
1788         javax/swing/table/DefaultTableCellRenderer.java,
1789         javax/swing/table/DefaultTableColumnModel.java,
1790         javax/swing/table/DefaultTableModel.java,
1791         javax/swing/table/TableColumn.java,
1792         javax/swing/text/JTextComponent.java,
1793         javax/swing/tree/AbstractLayoutCache.java,
1794         javax/swing/tree/DefaultMutableTreeNode.java,
1795         javax/swing/tree/DefaultTreeCellEditor.java,
1796         javax/swing/tree/DefaultTreeCellRenderer.java,
1797         javax/swing/tree/DefaultTreeModel.java,
1798         javax/swing/tree/DefaultTreeSelectionModel.java,
1799         javax/swing/tree/FixedHeightLayoutCache.java,
1800         javax/swing/tree/TreeCellEditor.java,
1801         javax/swing/tree/TreeModel.java,
1802         javax/swing/tree/TreeNode.java,
1803         javax/swing/tree/TreePath.java,
1804         javax/swing/tree/TreeSelectionModel.java,
1805         javax/swing/tree/VariableHeightLayoutCache.java,
1806         javax/swing/undo/AbstractUndoableEdit.java,
1807         javax/swing/undo/CompoundEdit.java,
1808         javax/swing/undo/StateEdit.java,
1809         javax/swing/undo/UndoManager.java,
1810         javax/swing/undo/UndoableEditSupport.java:
1811         New versions from classpath.
1812         * javax/swing/table/JTableHeader.java:
1813         New file from classpath.
1814         * Makefile.am
1815         (java_awt_sources): Added javax/swing/table/JTableHeader.java.
1816         * Makefile.in: Regenerated.
1818 2003-06-11  Michael Koch  <konqueror@gmx.de>
1820         * java/nio/MappedByteBuffer.java,
1821         java/nio/channels/Channels.java,
1822         java/nio/channels/ServerSocketChannel.java,
1823         java/nio/channels/spi/AbstractSelector.java:
1824         Removed unneeded imports.
1826 2003-06-11  Michael Koch  <konqueror@gmx.de>
1828         * java/net/DatagramSocket.java:
1829         Partly merged with classpath.
1831 2003-06-11  Michael Koch  <konqueror@gmx.de>
1833         * java/awt/Frame.java,
1834         java/awt/Graphics.java,
1835         java/awt/Menu.java,
1836         java/awt/Robot.java,
1837         java/awt/image/ColorModel.java:
1838         New versions from classpath.
1840 2003-06-10  Michael Koch  <konqueror@gmx.de>
1842         * java/io/PrintStream.java:
1843         Merged version from classpath.
1844         (close): Removed sychronized keyword. This class is not garantied to
1845         be thread-safe.
1846         (write): Likewise.
1848 2003-06-09  Tom Tromey  <tromey@redhat.com>
1850         * gnu/gcj/xlib/natFont.cc (getAscent): Correctly access "ascent"
1851         field.
1852         (getDescent): Likewise, for "descent".
1854 2003-06-09  Scott Gilbertson  <scottg@mantatest.com>
1856         * gnu/gcj/xlib/natFont.cc (getMaxAscent): adjusted return value.
1857         (getMaxDescent): adjusted return value.
1858         (getAscent): modified to use metrics for 'O'.
1859         (getDescent): modified to use metrics for 'y'.
1861 2003-06-08  Anthony Green  <green@redhat.com>
1863         * java/net/URLStreamHandler.java (sameFile): Fix port value
1864         comparison.
1865         * java/net/URL.java (handler): Make package private.
1866         * gnu/gcj/protocol/http/Handler.java (getDefaultPort): New method.
1868 2003-06-07  Tom Tromey  <tromey@redhat.com>
1870         For PR libgcj/11085:
1871         * java/text/SimpleDateFormat.java (parse(String,ParsePosition)):
1872         Limit number of characters in numeric field when required.
1873         * java/text/DecimalFormat.java (parse(String,ParsePosition)):
1874         Respect maximumIntegerDigits.
1876 2003-06-08  Michael Koch  <konqueror@gmx.de>
1878         * java/net/Socket.java
1879         (Socket): Dont initialize inputShutdown and outputShutdown twice,
1880         call bind() and connect() to actually do the bind and connect tasks.
1881         (bind): Connect to canonical address if bindpoint is null, create
1882         socket and bind it to bindpoint.
1883         (connect): Check for exceptions.
1885 2003-06-08  Michael Koch  <konqueror@gmx.de>
1887         * java/net/DatagramSocket.java
1888         (DatagramSocket): No need to set SO_REUSEADDRESS here. This belongs
1889         into the Multicast constructors.
1890         * java/net/DatagramSocketImpl.java
1891         (getOption): Removed.
1892         (setOption): Removed.
1893         * java/net/MulticastSocket.java
1894         (MulticastSocket): Call setReuseAddress (true).
1895         * java/net/SocketImpl.java
1896         (getOption): Removed.
1897         (setOption): Removed.
1899 2003-06-07      Jeff Sturm      <jsturm@one-point.com>
1901         PR libgcj/10886:
1902         * gnu/java/rmi/server/UnicastRemoteCall.java (returnValue):
1903         Test for empty vector.
1905 2003-06-06  Mark Wielaard  <mark@klomp.org>
1907         * java/security/Security.java (secprops): Initialize.
1908         (loadProviders): Return boolean.
1909         (static): Check result of loadProvider calls. If necessary
1910         display WARNING and fallback to Gnu provider.
1912 2002-06-06  James Clark  <jjc@jclark.com>
1914         Fix for PR libgcj/8738:
1915         * gnu/gcj/convert/UnicodeToBytes.java (havePendingBytes): New method.
1916         * gnu/gcj/convert/Output_SJIS.java (havePendingBytes): Likewise.
1917         * gnu/gcj/convert/Output_EUCJIS.java (havePendingBytes): Likewise.
1918         * gnu/gcj/convert/Output_UTF8.java (havePendingBytes): Likewise.
1919         (write): Always decrease avail when count is increased.
1920         * java/lang/natString.cc (getBytes): Check converter havePendingBytes()
1921         and whether output buffer is full before increasing size.
1923 2002-06-06  Mark Wielaard  <mark@klomp dot org>
1925         * java/io/PrintStream.java (writeChars(char[],int, int)):
1926         Check converter.havePendingBytes().
1927         (writeChars(String,int,int)): Likewise.
1928         * java/io/OutputStreamWriter.java (writeChars(char[], int, int)):
1929         Check converter.havePendingBytes() and flush buffer when stalled.
1931 2003-06-07  Michael Koch  <konqueror@gmx.de>
1933         * include/posix.h
1934         (O_DSYNC): Define O_DSYNC on platforms not
1935         supporting O_FSYNC (newlib).
1937 2003-06-06  Mark Wielaard  <mark@klomp.org>
1939         * java/awt/Toolkit.java (getDefaultToolkit): Add exception cause to
1940         AWTError.
1942 2003-06-06  Michael Koch  <konqueror@gmx.de>
1944         * javax/swing/plaf/basic/BasicOptionPaneUI.java:
1945         More compile fixes from my stupid work yesterday.
1947 2003-06-05  Matt Kraai  <kraai@alumni.cmu.edu>
1949         * java/lang/w_exp.c (o_threshold, u_threshold): Define only
1950         if _IEEE_LIBM is undefined.
1952 2002-06-05  Loren J. Rittle  <ljrittle@acm.org>
1954         * libjava/include/posix.h (O_SYNC): Define if not available
1955         and a reasonable, perhaps more conservative, replacement exists.
1956         (O_DSYNC): Likewise.
1957         * java/io/natFileDescriptorPosix.cc (open): Revert last patch.
1959 2003-06-05  Michael Koch  <konqueror@gmx.de>
1961         * javax/swing/plaf/BorderUIResource.java,
1962         javax/swing/plaf/basic/BasicDefaults.java,
1963         javax/swing/plaf/basic/BasicOptionPaneUI.java:
1964         More compile fixes for latest Border commit. I should not commit
1965         something in this heat here ...
1967 2003-06-05  Michael Koch  <konqueror@gmx.de>
1969         * javax/swing/border/BevelBorder.java
1970         (BevelBorder): Removed.
1971         * javax/swing/border/EmptyBorder.java:
1972         Reformatted.
1973         (EmptyBorder): Removed.
1974         (getBorderInsets): Dont use l, r, t and b.
1975         * javax/swing/border/EtchedBorder.java
1976         (EtchedBorder): Removed.
1977         * javax/swing/border/LineBorder.java
1978         (LineBorder): Removed.
1979         * javax/swing/border/MatteBorder.java
1980         (MatteBorder): Removed.
1981         * javax/swing/border/TitledBorder.java
1982         (defaultBorder): Use other default for now.
1983         (defaultFont): Likewise.
1984         (defaultColor): Likewise.
1986 2003-06-05  Michael Koch  <konqueror@gmx.de>
1988         * javax/swing/border/Border.java:
1989         New version from classpath.
1991 2003-06-05  Michael Koch  <konqueror@gmx.de>
1993         * javax/swing/border/AbstractBorder.java,
1994         javax/swing/border/BevelBorder.java,
1995         javax/swing/border/CompoundBorder.java,
1996         javax/swing/border/EmptyBorder.java,
1997         javax/swing/border/EtchedBorder.java,
1998         javax/swing/border/LineBorder.java,
1999         javax/swing/border/MatteBorder.java,
2000         javax/swing/border/TitledBorder.java:
2001         New versions from Classpath.
2003 2003-06-05  Michael Koch  <konqueror@gmx.de>
2005         * java/awt/Button.java,
2006         java/awt/Checkbox.java,
2007         java/awt/CheckboxMenuItem.java,
2008         java/awt/Choice.java,
2009         java/awt/Container.java,
2010         java/awt/Dialog.java,
2011         java/awt/EventQueue.java,
2012         java/awt/FileDialog.java,
2013         java/awt/Frame.java,
2014         java/awt/Label.java,
2015         java/awt/List.java,
2016         java/awt/Menu.java,
2017         java/awt/MenuItem.java,
2018         java/awt/Panel.java,
2019         java/awt/PopupMenu.java,
2020         java/awt/Rectangle.java,
2021         java/awt/ScrollPane.java,
2022         java/awt/Scrollbar.java,
2023         java/awt/TextArea.java,
2024         java/awt/TextField.java,
2025         java/awt/Window.java,
2026         java/awt/datatransfer/DataFlavor.java,
2027         java/awt/dnd/DragSource.java,
2028         java/awt/dnd/DragSourceContext.java,
2029         java/awt/event/HierarchyEvent.java,
2030         java/awt/event/MouseWheelEvent.java,
2031         java/awt/im/InputContext.java,
2032         java/awt/image/BufferedImage.java,
2033         java/awt/image/ComponentColorModel.java,
2034         java/awt/image/Raster.java,
2035         java/awt/image/WritableRaster.java,
2036         java/awt/peer/ComponentPeer.java,
2037         java/awt/print/PageFormat.java,
2038         java/awt/print/PrinterJob.java:
2039         New versions from Classpath.
2041 2003-06-05  Scott Gilbertson  <scottg@mantatest.com>
2043         * java/text/SimpleDateFormat.java (SimpleDateFormat): Added
2044         numberFormat.setParseIntegerOnly(true).
2046 2003-06-05  Bert Deknuydt  <Bert.Deknuydt@esat.kuleuven.ac.be>
2048         * include/posix-threads.h: Include <machine/pal.h> on OSF.
2050 2003-06-03  Andrew Haley  <aph@redhat.com>
2052         * include/x86_64-signal.h (MAKE_THROW_FRAME): Mark sigcontext on
2053         stack volatile to prevent optimization from removing it.
2055 2003-05-27  Michael Koch  <konqueror@gmx.de>
2057         * java/util/zip/Deflater.java
2058         (FILTERED): Merged documentation from classpath.
2059         * java/util/zip/DeflaterOutputStream.java
2060         (DeflaterOutputStream): Merged documentation and argument validity
2061         check from classpath.
2062         (deflate): Merged documentation from classpath.
2063         (finish): Likewise.
2064         * java/util/zip/Inflater.java
2065         (Inflater): Merged class documentation from classpath.
2066         (zstream): Reordered.
2067         (is_finished): Reordered.
2068         (dict_needed): Reordered.
2069         (Inflater): Reordered, merged documentation from classpath.
2070         (end): Likewise.
2071         (finalize): Merged documentation from classpath.
2072         (finished): Likewise.
2073         (getAdler): Likewise.
2074         (getRemaining): Likewise.
2075         (getTotalIn): Likewise.
2076         (getTotalOut): Likewise.
2077         (inflate): Likewise.
2078         (needsDictionary): Likewise.
2079         (needsInput): Likewise.
2080         (reset): Likewise.
2081         (setDictionary): Likewise.
2082         (setInput): Likewise.
2084 2003-05-27  Michael Koch  <konqueror@gmx.de>
2086         * java/net/URLConnection.java
2087         (getHeaderFieldInt): Merged with classpath.
2089 2003-05-27  Michael Koch  <konqueror@gmx.de>
2091         * java/io/PrintStream.java
2092         (PrintStream): Reformatted.
2093         (PrintStream): New method, merged from classpath.
2094         (write): Reformatted.
2096 2003-05-27  Michael Koch  <konqueror@gmx.de>
2098         * java/lang/System.java:
2099         Explicitely import needed classes.
2101 2003-05-26  Michael Koch  <konqueror@gmx.de>
2103         * java/net/NetPermission.java,
2104         java/net/NetworkInterface.java,
2105         java/net/PasswordAuthentication.java,
2106         java/net/SocketPermission.java:
2107         New versions from classpath.
2109 2003-05-25  Michael Koch  <konqueror@gmx.de>
2111         * java/io/PushbackInputStream.java,
2112         java/net/Authenticator.java,
2113         java/net/ContentHandler.java,
2114         java/net/ContentHandlerFactory.java,
2115         java/net/DatagramSocket.java,
2116         java/net/DatagramSocketImpl.java,
2117         java/net/DatagramSocketImplFactory.java,
2118         java/net/FileNameMap.java,
2119         java/net/SocketImplFactory.java,
2120         java/net/SocketOptions.java,
2121         java/net/URLStreamHandlerFactory.java:
2122         Merged new versions from classpath.
2124 2003-05-25  Michael Koch  <konqueror@gmx.de>
2126         * java/awt/Checkbox.java,
2127         java/awt/Dialog.java,
2128         java/awt/Font.java,
2129         java/awt/Frame.java,
2130         java/awt/ScrollPaneAdjustable.java,
2131         java/awt/Scrollbar.java,
2132         java/awt/Window.java:
2133         New versions from classpath.
2135 2003-05-22      Jeff Sturm      <jsturm@one-point.com>
2137         PR libgcj/10838:
2138         * java/io/ObjectInputStream (enableResolveObject):
2139         Fixed spelling of permission name.
2141 2003-05-20  Michael Koch  <konqueror@gmx.de>
2143         * java/io/DataInputStream.java
2144         (convertFromUTF): Merged comment from classpath.
2145         * java/io/PrintStream.java
2146         (error_occured): Renamed from error, merged comment from classpath.
2147         (PrintStream): No need to initialized error.
2148         (checkError): Replace error with error_occurred.
2149         (setError): Likewise.
2151 2003-05-20  Michael Koch  <konqueror@gmx.de>
2153         * java/io/DataInputStream.java:
2154         Reformatted, Replaced < and & with html entitites in documentation.
2155         * java/io/File.java:
2156         Reformatted.
2157         * java/io/PrintWriter.java:
2158         Moved class documentation.
2160 2003-05-20  Michael Koch  <konqueror@gmx.de>
2162         * gnu/java/nio/ByteBufferImpl.java,
2163         gnu/java/nio/CharBufferImpl.java,
2164         gnu/java/nio/CharViewBufferImpl.java,
2165         gnu/java/nio/DirectByteBufferImpl.java,
2166         gnu/java/nio/DoubleBufferImpl.java,
2167         gnu/java/nio/DoubleViewBufferImpl.java,
2168         gnu/java/nio/FloatBufferImpl.java,
2169         gnu/java/nio/FloatViewBufferImpl.java,
2170         gnu/java/nio/IntBufferImpl.java,
2171         gnu/java/nio/IntViewBufferImpl.java,
2172         gnu/java/nio/LongBufferImpl.java,
2173         gnu/java/nio/LongViewBufferImpl.java,
2174         gnu/java/nio/natDirectByteBufferImpl.cc,
2175         gnu/java/nio/ShortBufferImpl.java,
2176         gnu/java/nio/ShortViewBufferImpl.java:
2177         Moved files to java/nio.
2178         * gnu/java/nio/SocketChannelImpl.java
2179         
2180         * java/nio/ByteBuffer.java,
2181         java/nio/CharBuffer.java,
2182         java/nio/DoubleBuffer.java,
2183         java/nio/FloatBuffer.java,
2184         java/nio/IntBuffer.java,
2185         java/nio/LongBuffer.java,
2186         java/nio/ShortBuffer.java:
2187         Dont import anything.
2188         * java/nio/ByteBufferImpl.java,
2189         java/nio/CharBufferImpl.java,
2190         java/nio/CharViewBufferImpl.java,
2191         java/nio/DirectByteBufferImpl.java,
2192         java/nio/DoubleBufferImpl.java,
2193         java/nio/DoubleViewBufferImpl.java,
2194         java/nio/FloatBufferImpl.java,
2195         java/nio/FloatViewBufferImpl.java,
2196         java/nio/IntBufferImpl.java,
2197         java/nio/IntViewBufferImpl.java,
2198         java/nio/LongBufferImpl.java,
2199         java/nio/LongViewBufferImpl.java,
2200         java/nio/natDirectByteBufferImpl.cc,
2201         java/nio/ShortBufferImpl.java,
2202         java/nio/ShortViewBufferImpl.java:
2203         Moved from gnu/java/nio.
2204         * Makefile.am
2205         (ordinary_java_source_files): Moved files from gnu/java/nio to
2206         java/nio.
2207         (nat_source_files): Moved natDirectByteBufferImpl.cc from gnu/java/nio
2208         to java/nio.
2209         * Makefile.in: Regenerated.
2211 2003-05-19  Michael Koch  <konqueror@gmx.de>
2213         * java/util/Calendar.java
2214         (get): Not final anymore since JDK 1.4
2215         (set): Likewise.
2217 2003-05-19  Michael Koch  <konqueror@gmx.de>
2219         * java/text/CollationKey.java:
2220         Merged copyright and dat from classpath.
2221         * java/text/RuleBasedCollator.java:
2222         Merged class documentation from classpath.
2224 2003-05-19  Michael Koch  <konqueror@gmx.de>
2226         * java/nio/CharBuffer.java
2227         (toString): Compile fix.
2229 2003-05-19  Michael Koch  <konqueror@gmx.de>
2231         * gnu/java/nio/ByteBufferImpl.java
2232         (putLong): Fixed conversion to bytes.
2233         (putDouble): Fixed conversion to bytes.
2234         * gnu/java/nio/DirectByteBufferImpl.java
2235         (putLong): Fixed conversion to bytes.
2236         (putDouble): Fixed conversion to bytes.
2237         * gnu/java/nio/FileLockImpl.java
2238         (isValid): Reformatted.
2239         * java/nio/Buffer.java
2240         (Buffer): Fixed off-by-one bug in handling mark.
2241         * java/nio/ByteBuffer.java:
2242         Added newline.
2243         * java/nio/CharBuffer.java
2244         (toString): Don't use relative get to get string data.
2246 2003-05-16  Michael Koch  <konqueror@gmx.de>
2248         * java/io/natFileDescriptorPosix.cc
2249         (open): Commented out the O_SYNC and O_DSYNC usage until its better
2250         tested.
2252 2003-05-14  Michael Koch  <konqueror@gmx.de>
2254         * gnu/java/nio/FileLockImpl.java
2255         (released): New member variable.
2256         (FileLockImpl): Initialize released.
2257         (releaseImpl): New native method.
2258         (release): Implemented.
2259         * gnu/java/nio/SelectorImpl.java: Reformatted.
2260         * gnu/java/nio/SelectionKeyImpl.java: Reformatted.
2261         * gnu/java/nio/ServerSocketChannelImpl.java: Reformatted.
2262         (accept): Throws IOException.
2263         * gnu/java/nio/SocketChannelImpl.java: Reformatted.
2264         (implConfigureBlocking): Throws IOException.
2265         (connect): Likewise.
2266         (read): Likewise.
2267         (write): Likewise.
2268         * gnu/java/nio/natFileLockImpl.cc: New file.
2269         * java/nio/channels/FileLock.java: Reformatted.
2270         * Makefile.am:
2271         (ordinary_java_source_files): Added gnu/java/nio/FileLockImpl.java.
2272         (nat_source_files): Added gnu/java/nio/natFileLockImpl.cc.
2273         * Makefile.in: Regenerated.
2275 2003-05-13  Michael Koch  <konqueror@gmx.de>
2277         * gnu/java/nio/CharViewBufferImpl.java
2278         (CharViewBufferImpl): Fixed super constructor call, initialize offset.
2279         (get): Shift bits to the right direction.
2280         (put): Likewise.
2281         * gnu/java/nio/DoubleViewBufferImpl.java
2282         (DoubleViewBufferImpl): Fixed super constructor call, initialize offset.
2283         (get): Shift bits to the right direction.
2284         (put): Likewise.
2285         * gnu/java/nio/FloatViewBufferImpl.java
2286         (FloatViewBufferImpl): Fixed super constructor call, initialize offset.
2287         (get): Shift bits to the right direction.
2288         (put): Likewise.
2289         * gnu/java/nio/IntViewBufferImpl.java
2290         (IntViewBufferImpl): Fixed super constructor call, initialize offset.
2291         (get): Shift bits to the right direction.
2292         (put): Likewise.
2293         * gnu/java/nio/LongViewBufferImpl.java
2294         (LongViewBufferImpl): Fixed super constructor call, initialize offset.
2295         (get): Shift bits to the right direction.
2296         (put): Likewise.
2297         * gnu/java/nio/ShortViewBufferImpl.java
2298         (ShortViewBufferImpl): Fixed super constructor call, initialize offset.
2299         (get): Shift bits to the right direction.
2300         (put): Likewise.
2302 2003-05-13  Michael Koch  <konqueror@gmx.de>
2304         * gnu/java/nio/natDirectByteBufferImpl.cc
2305         (allocateImpl): jlong -> RawData*.
2306         (freeImpl): Likewise.
2308 2003-05-13  Michael Koch  <konqueror@gmx.de>
2310         * java/nio/channels/FileChannel.java
2311         (MapMode.m): Made it package-private to match JDK 1.4.
2312         * java/nio/charset/Charset.java
2313         (decode): Made it final to match JDK 1.4.
2315 2003-05-13  Michael Koch  <konqueror@gmx.de>
2317        * java/io/FileDescriptor.java
2318        (SYNC): New constant.
2319        (DSYNC): Likewise.
2320        (getLength): Renamed from lenght() to match classpath's
2321        FileDescriptor.java.
2322        * java/io/RandomAccessFile.java
2323        (RandomAccessFile): Removed unneeded mode check, implemented mode
2324        "rws" and "rwd", merged documentation from classpath.
2325        (setLength): Reformatted.
2326        (length): Use new getLength() of FileDescriptor.
2327        * java/io/natFileDescriptorEcos.cc
2328        (getLength): Renamed from length().
2329        * java/io/natFileDescriptorPosix.cc
2330        (open): Implemented support for SYNC and DSYNC.
2331        (seek): Use getLength() instead of length().
2332        (getLength): Renamed from length().
2333        * java/io/natFileDescriptorWin32.cc
2334        (getLength): Renamed from length().
2335        (seek): Use getLength() instead of length().
2336        (available): Likewise.
2337        * gnu/java/nio/natFileChannelImpl.cc
2338        (size): Use getLength() instead of length().
2340 2003-05-13  Michael Koch  <konqueror@gmx.de>
2342         * gnu/java/nio/ByteBufferImpl.java
2343         (ByteBufferImpl): All constructors revised.
2344         (slice): Reimplemented.
2345         (duplicate): Reimplemented.
2346         (asReadOnlyBuffer): Reimplemented.
2347         * java/nio/ByteBuffer.java:
2348         Reformatted.
2349         (array_offset): Renamed from "offset" to match all other buffer
2350         classes.
2351         (ByteBuffer): All constructors revised.
2352         (allocateDirect): Implemented.
2353         (allocate): New implementation, documentation reworked.
2354         (wrap): Likewise.
2355         (get): Documentation reworked.
2356         (put): New implementation, documentation reworked.
2357         (hasArray): Documentation reworked.
2358         (arrayOffset): Likewise.
2359         (hashCode): Likewise.
2360         (equals): Likewise.
2361         (compareTo): Likewise.
2362         (order): Likewise.
2363         (compact): Likewise.
2364         (isDirect): Likewise.
2365         (slice): Likewise.
2366         (duplicate): Likewise.
2367         (asReadOnlyBuffer): Likewise.
2368         * Makefile.am
2369         (ordinary_java_source_files):
2370         Added gnu/java/nio/DirectByteBufferImpl.java.
2371         (nat_source_files):
2372         Added gnu/java/nio/natDirectByteBufferImpl.cc.
2373         * Makefile.in: Regenerated.
2375 2003-05-12  Michael Koch  <konqueror@gmx.de>
2377         * gnu/java/nio/ByteBufferImpl.java: Reformatted.
2378         (nio_get_*): Removed.
2379         (nio_put_*): Removed.
2380         (as*Buffer): Implemented.
2381         (compact): Implemented.
2382         (get): Documentation added.
2383         (put): Documentation added.
2384         (get*): Newly implemented.
2385         (put*): Newly implemented.
2386         * gnu/java/nio/CharBufferImpl.java: Reformatted.
2387         (CharBufferImpl): Revised.
2388         (slice): New implementation.
2389         (duplicate): New implementation.
2390         (compact): New implementation.
2391         (asReadOnlyBuffer): New implementation.
2392         (get): Documentation revised.
2393         (order): Return native byte order.
2394         * gnu/java/nio/DirectByteBufferImpl.java
2395         (allocateDirect): objects can be null not 0.
2396         * gnu/java/nio/DoubleBufferImpl.java: Reformatted.
2397         (DoubleBufferImpl): Revised.
2398         (slice): New implementation.
2399         (duplicate): New implementation.
2400         (compact): New implementation.
2401         (asReadOnlyBuffer): New implementation.
2402         (get): Documentation revised.
2403         (order): Return native byte order.
2404         * gnu/java/nio/FloatBufferImpl.java: Reformatted.
2405         (FloatBufferImpl): Revised.
2406         (slice): New implementation.
2407         (duplicate): New implementation.
2408         (compact): New implementation.
2409         (asReadOnlyBuffer): New implementation.
2410         (get): Documentation revised.
2411         (order): Return native byte order.
2412         * gnu/java/nio/IntBufferImpl.java: Reformatted.
2413         (IntBufferImpl): Revised.
2414         (slice): New implementation.
2415         (duplicate): New implementation.
2416         (compact): New implementation.
2417         (asReadOnlyBuffer): New implementation.
2418         (get): Documentation revised.
2419         (order): Return native byte order.
2420         * gnu/java/nio/LongBufferImpl.java: Reformatted.
2421         (LongBufferImpl): Revised.
2422         (slice): New implementation.
2423         (duplicate): New implementation.
2424         (compact): New implementation.
2425         (asReadOnlyBuffer): New implementation.
2426         (get): Documentation revised.
2427         (order): Return native byte order.
2428         * gnu/java/nio/ShortBufferImpl.java: Reformatted.
2429         (ShortBufferImpl): Revised.
2430         (slice): New implementation.
2431         (duplicate): New implementation.
2432         (compact): New implementation.
2433         (asReadOnlyBuffer): New implementation.
2434         (get): Documentation revised.
2435         (order): Return native byte order.
2436         * java/nio/CharBuffer.java: Reformatted, much documentation rewritten.
2437         (CharBuffer): Revised.
2438         (order): Removed.
2439         * java/nio/DoubleBuffer.java: Reformatted, much documentation rewritten.
2440         (DoubleBuffer): Revised.
2441         (allocateDirect): Removed.
2442         (order): Removed.
2443         * java/nio/FloatBuffer.java: Reformatted, much documentation rewritten.
2444         (FloatBuffer): Revised.
2445         (allocateDirect): Removed.
2446         (order): Removed.
2447         * java/nio/IntBuffer.java: Reformatted, much documentation rewritten.
2448         (IntBuffer): Revised.
2449         (allocateDirect): Removed.
2450         (order): Removed.
2451         * java/nio/LongBuffer.java: Reformatted, much documentation rewritten.
2452         (LongBuffer): Revised.
2453         (allocateDirect): Removed.
2454         (order): Removed.
2455         * java/nio/ShortBuffer.java: Reformatted, much documentation rewritten.
2456         (ShortBuffer): Revised.
2457         (allocateDirect): Removed.
2458         (order): Removed.
2459         * gnu/java/nio/natByteBufferImpl.cc: Removed.
2460         * gnu/java/nio/natCharBufferImpl.cc: Removed.
2461         * Makefile.am
2462         (ordinary_java_source_files): Added the following files:
2463         gnu/java/nio/CharViewBufferImpl.java,
2464         gnu/java/nio/DoubleViewBufferImpl.java,
2465         gnu/java/nio/FloatViewBufferImpl.java,
2466         gnu/java/nio/IntViewBufferImpl.java,
2467         gnu/java/nio/LongViewBufferImpl.java,
2468         gnu/java/nio/ShortViewBufferImpl.java
2469         (nat_source_files): Removed the following files:
2470         gnu/java/nio/natByteBufferImpl.cc,
2471         gnu/java/nio/natCharBufferImpl.cc
2472         * Makefile.in: Regenerated.
2474 2003-05-12  Michael Koch  <konqueror@gmx.de>
2476         * gnu/java/nio/CharViewBufferImpl.java,
2477         gnu/java/nio/DirectByteBufferImpl.java,
2478         gnu/java/nio/DoubleViewBufferImpl.java,
2479         gnu/java/nio/FloatViewBufferImpl.java,
2480         gnu/java/nio/IntViewBufferImpl.java,
2481         gnu/java/nio/LongViewBufferImpl.java,
2482         gnu/java/nio/ShortViewBufferImpl.java,
2483         gnu/java/nio/natDirectByteBufferImpl.cc:
2484         New files, not yet to be compiled.
2486 2003-05-10  Michael Koch  <konqueror@gmx.de>
2488         * javax/swing/plaf/ButtonUI.java,
2489         javax/swing/plaf/ColorUIResource.java,
2490         javax/swing/plaf/ComponentUI.java,
2491         javax/swing/plaf/DimensionUIResource.java,
2492         javax/swing/plaf/FontUIResource.java,
2493         javax/swing/plaf/IconUIResource.java,
2494         javax/swing/plaf/InsetsUIResource.java,
2495         javax/swing/plaf/LabelUI.java,
2496         javax/swing/plaf/ListUI.java,
2497         javax/swing/plaf/OptionPaneUI.java,
2498         javax/swing/plaf/PanelUI.java,
2499         javax/swing/plaf/TabbedPaneUI.java,
2500         javax/swing/plaf/TextUI.java,
2501         javax/swing/plaf/TreeUI.java,
2502         javax/swing/plaf/ViewportUI.java,
2503         javax/swing/plaf/basic/BasicBorders.java,
2504         javax/swing/plaf/basic/BasicButtonUI.java,
2505         javax/swing/plaf/basic/BasicCheckBoxUI.java,
2506         javax/swing/plaf/basic/BasicDefaults.java,
2507         javax/swing/plaf/basic/BasicGraphicsUtils.java,
2508         javax/swing/plaf/basic/BasicIconFactory.java,
2509         javax/swing/plaf/basic/BasicLabelUI.java,
2510         javax/swing/plaf/basic/BasicListUI.java,
2511         javax/swing/plaf/basic/BasicOptionPaneUI.java,
2512         javax/swing/plaf/basic/BasicPanelUI.java,
2513         javax/swing/plaf/basic/BasicRadioButtonUI.java,
2514         javax/swing/plaf/basic/BasicScrollPaneUI.java,
2515         javax/swing/plaf/basic/BasicTabbedPaneUI.java,
2516         javax/swing/plaf/basic/BasicTextUI.java,
2517         javax/swing/plaf/basic/BasicToggleButtonUI.java,
2518         javax/swing/plaf/basic/BasicTreeUI.java,
2519         javax/swing/plaf/basic/BasicViewportUI.java,
2520         javax/swing/plaf/metal/MetalLookAndFeel.java:
2521         New versions from classpath. This adds copyrights to all files and
2522         some serialVersionUIDs.
2524 2003-05-10  Michael Koch  <konqueror@gmx.de>
2526         * java/nio/CharBuffer.java
2527         (offset): Make it package-private.
2528         (backing_buffer): Likewise.
2529         * java/nio/DoubleBuffer.java
2530         (offset): Make it package-private.
2531         (backing_buffer): Likewise.
2532         (put): Reformatted.
2533         * java/nio/FloatBuffer.java
2534         (offset): Make it package-private.
2535         (backing_buffer): Likewise.
2536         * java/nio/IntBuffer.java
2537         (offset): Make it package-private.
2538         (backing_buffer): Likewise.
2539         * java/nio/LongBuffer.java
2540         (offset): Make it package-private.
2541         (backing_buffer): Likewise.
2542         * java/nio/ShortBuffer.java
2543         (offset): Make it package-private.
2544         (backing_buffer): Likewise.
2546 2003-05-10  Michael Koch  <konqueror@gmx.de>
2548         * java/nio/CharBuffer.java
2549         (put): Fixed precondtion check.
2550         (toString): Make it work without backing array.
2551         (put): Skip one level of method calling.
2553 2003-05-10  Michael Koch  <konqueror@gmx.de>
2555         * java/security/Identity.java,
2556         java/security/IdentityScope.java,
2557         java/security/Key.java,
2558         java/security/KeyPair.java,
2559         java/security/PrivateKey.java,
2560         java/security/Provider.java,
2561         java/security/PublicKey.java,
2562         java/security/SecureRandom.java,
2563         java/security/SecureRandomSpi.java,
2564         java/security/SignedObject.java,
2565         java/security/Signer.java,
2566         java/security/cert/Certificate.java,
2567         java/security/cert/PKIXCertPathBuilderResult.java,
2568         java/security/cert/X509Certificate.java:
2569         New versions from classpath.
2571 2003-05-09  Tom Tromey  <tromey@redhat.com>
2573         * Makefile.in: Rebuilt.
2574         * Makefile.am (nat_source_files): Removed old files.
2575         * gnu/java/nio/natDoubleBufferImpl.cc: Removed.
2576         * gnu/java/nio/natFloatBufferImpl.cc: Removed.
2577         * gnu/java/nio/natIntBufferImpl.cc: Removed.
2578         * gnu/java/nio/natLongBufferImpl.cc: Removed.
2579         * gnu/java/nio/natShortBufferImpl.cc: Removed.
2581 2003-05-09  Michael Koch  <konqueror@gmx.de>
2583         * gnu/java/nio/ByteBufferImpl.java
2584         (nio_cast): Removed.
2585         (ByteBufferImpl): Removed.
2586         (nio_get_Byte): Removed.
2587         (nio_put_Byte): Removed.
2588         (asByteBuffer): Removed.
2589         (asCharBuffer): Removed implementation and throw exception.
2590         (asShortBuffer): Likewise.
2591         (asIntBuffer): Likewise.
2592         (asLongBuffer): Likewise.
2593         (asFloatBuffer): Likewise.
2594         (asDoubleBuffer): Likewise.
2595         * gnu/java/nio/CharBufferImpl.java
2596         (CharBufferImpl): Removed.
2597         (nio_get_Byte): Removed.
2598         (nio_put_Byte): Removed.
2599         (asByteBuffer): Removed.
2600         * gnu/java/nio/DoubleBufferImpl.java
2601         (DoubleBufferImpl): Removed.
2602         (nio_get_Byte): Removed.
2603         (nio_put_Byte): Removed.
2604         (asByteBuffer): Removed.
2605         * gnu/java/nio/FloatBufferImpl.java
2606         (FloatBufferImpl): Removed.
2607         (nio_get_Byte): Removed.
2608         (nio_put_Byte): Removed.
2609         (asByteBuffer): Removed.
2610         * gnu/java/nio/IntBufferImpl.java
2611         (IntBufferImpl): Removed.
2612         (nio_get_Byte): Removed.
2613         (nio_put_Byte): Removed.
2614         (asByteBuffer): Removed.
2615         * gnu/java/nio/LongBufferImpl.java
2616         (LongBufferImpl): Removed.
2617         (nio_get_Byte): Removed.
2618         (nio_put_Byte): Removed.
2619         (asByteBuffer): Removed.
2620         * gnu/java/nio/ShortBufferImpl.java
2621         (ShortBufferImpl): Removed.
2622         (nio_get_Byte): Removed.
2623         (nio_put_Byte): Removed.
2624         (asByteBuffer): Removed.
2625         * gnu/java/nio/natByteBufferImpl.cc
2626         (nio_cast): Removed.
2627         (nio_get_Byte): Removed.
2628         (nio_put_Byte): Removed.
2629         * gnu/java/nio/natCharBufferImpl.cc
2630         (nio_get_Byte): Removed.
2631         (nio_put_Byte): Removed.
2633 2003-05-09  Michael Koch  <konqueror@gmx.de>
2635         * java/net/JarURLConnection.java
2636         (getJarEntry): Merged documentation from classpath.
2637         (getJarFile): Likewise.
2638         (getMainAttributes): Likewise.
2639         (getAttributes): Likewise.
2640         (getManifest): Likewise.
2641         (getCertificates): Reformatted.
2642         * java/net/URLConnection.java:
2643         Little classpath merge.
2645 2003-05-09  Michael Koch  <konqueror@gmx.de>
2647         * java/io/DataOutputStream.java
2648         (writeShort): Made it synchronized.
2649         (writeChar): Likewise.
2650         (writeInt): Likewise.
2651         (writeLong): Liekwise.
2652         (writeUTF): Made it synchronized, renamed argument to match classpath.
2653         * java/io/InputStreamReader.java
2654         (converter): Added documentation.
2655         (read): Merged documentation from classpath.
2656         * java/io/OutputStreamWriter.java
2657         (OutputStreamWriter): Merged documentation from classpath.
2658         (close): Reformatted.
2659         (getEncoding): Likewise.
2660         (flush): Likewise.
2661         (write): Merged documentation from classpath, reformatted.
2663 2003-05-08  Tom Tromey  <tromey@redhat.com>
2665         * configure.host <powerpc64*-*>: Set with_libffi_default and
2666         libgcj_interpreter to "yes".
2668 2003-05-08  Scott Gilbertson  <scottg@mantatest.com>
2670         * gnu/gcj/xlib/natGC.cc (drawString): Removed obsolete code.
2671         
2672 2003-05-06  Tom Tromey  <tromey@redhat.com>
2674         * verify.cc: Reverted previous patch.
2676 2003-05-06  Michael Koch  <konqueror@gmx.de>
2678         * java/io/DataOutputStream.java
2679         (write): Renamed argument to "value", merged documentation from
2680         classpath.
2681         (writeBoolean): Likewise.
2682         (writeByte): Likewise.
2683         (writeShort): Likewise.
2684         (writeChar): Likewise.
2685         (writeInt): Likewise.
2686         (writeLong): Likewise.
2687         (writeFloat): Likewise.
2688         (writeDouble): Likewise.
2689         (writeBytes): Likewise.
2690         (writeChars): Likewise.
2691         (writeUTF): Likewise.
2692         * java/io/File.java
2693         (performDelete): Added documentation.
2694         (performList): Likewise.
2695         (performMkdir): Likewise.
2696         (performSetReadOnly): Likewise.
2697         (performRenameTo): Likewise.
2698         (performSetLastModified): Likewise.
2699         (delete): Made it sychronized.
2700         (renameTo): Made it sychronized.
2701         (equals): Reformatted.
2702         (isHidden): Likewise.
2703         (listFiles): Likewise.
2704         (setReadOnly): Likewise.
2705         (listRoots): Likewise.
2706         (setLastModified): Likewise.
2707         (checkRead): Likewise.
2708         (checkWrite): Likewise.
2709         * java/io/FileInputStream.java
2710         (skip): Made it sychronized, merged from classpath.
2711         * java/io/FileOutputStream.java
2712         (write): Merged from classpath.
2713         * java/io/InputStreamReader.java:
2714         (InputStreamReader): Merged documentation from classpath.
2716 2003-05-05  Michael Koch  <konqueror@gmx.de>
2718         * java/net/NetworkInterface.java
2719         (networkInterfaces): Removed.
2720         (getByName): Use getRealNetworkInterfaces() instead of
2721         networkInterfaces.
2722         (getByInetAddress): Likewise.
2723         (getNetworkInterfaces): Likewise.
2724         (toString): Fix output of addresses of an interface.
2726 2003-05-05  Michael Koch  <konqueror@gmx.de>
2728         * java/io/DataInputStream.java:
2729         Merged new documentation from classpath.
2731 2003-05-03  Matt Kraai  <kraai@alumni.cmu.edu>
2733         * gnu/awt/gtk/GtkButtonPeer.java: Fix misspelling of
2734         "version".
2735         * gnu/awt/gtk/GtkComponentPeer.java: Likewise.
2736         * gnu/awt/gtk/GtkContainerPeer.java: Likewise.
2737         * gnu/awt/gtk/GtkFramePeer.java: Likewise.
2738         * gnu/awt/gtk/GtkLabelPeer.java: Likewise.
2739         * gnu/awt/gtk/GtkMainThread.java: Likewise.
2740         * gnu/awt/gtk/GtkToolkit.java: Likewise.
2741         * gnu/awt/gtk/GtkWindowPeer.java: Likewise.
2742         * java/security/Key.java: Likewise.
2743         * java/security/PrivateKey.java: Likewise.
2744         * java/security/Provider.java: Likewise.
2745         * java/security/PublicKey.java: Likewise.
2747 2003-05-02  Michael Koch  <konqueror@gmx.de>
2749         * java/net/URI.java
2750         (create): Doesnt throws any exceptions.
2751         * java/net/URLConnection.java
2752         (URLConnection): Commend added.
2753         (getExpiration): The header field is called "expires" not
2754         "expiration".
2755         (getHeaderField): Merged documentation with classpath.
2756         (getHeaderFieldInt): Likewise.
2757         (getHeaderFieldDate): Likewise.
2758         (getHeaderFieldKey): Likewise.
2759         (getPermission): Likewise.
2760         (setDefaultUseCaches): Likewise.
2761         (setRequestProperty): Likewise.
2762         (addRequestProperty): Likewise.
2763         (getRequestProperty): Likewise.
2764         (getRequestProperties): Likewise.
2765         (setDefaultRequestProperty): Likewise.
2766         (getDefaultRequestProperty): Likewise.
2767         (guessContentTypeFromStream): Likewise.
2768         (getFileNameMap): Likewise.
2769         (setFileNameMap): Likewise.
2770         (setDoInput): Merged implementation and documentation with classpath.
2771         (setDoOutput): Likewise.
2772         (setAllowUserInteraction): Likewise.
2773         (setDefaultAllowUserInteraction): Likewise.
2774         (setContentHandlerFactory): Made it synchronized, merged documentation
2775         with classpath.
2776         (guessContentTypeFromName): Renamed argument fname to filename to
2777         match classpath, merged documentation with classpath.
2779 2003-05-02  Michael Koch  <konqueror@gmx.de>
2781         * java/net/JarURLConnection.java
2782         (JarURLConnection): Class documentation merged with classpath.
2783         (getJarFileURL): Moved and documentation merged with classpath.
2784         (getEntryName): Likewise.
2785         (JarURLConnection): Documentation merged with classpath.
2786         (getJarEntry): Likewise.
2787         (getJarFile): Likewise.
2788         * java/net/PlainDatagramSocketImpl.java:
2789         Class documentation moved.
2790         * java/net/URLConnection.java
2791         (fileNameMap): Moved and documentation merged with classpath.
2792         (factory): Likewise.
2793         (defaultAllowUserInteraction): Likewis.
2794         (defaultUseCaches): Likewise.
2795         (allowUserInteraction): Likewise.
2796         (connected): Likewise.
2797         (url): Likewise.
2798         (connect): Documentation merged with classpath.
2799         (getURL): Likewise.
2800         (getContentLength): Likewise.
2801         (getContentType): Likewise.
2802         (getContentEncoding): Likewise.
2803         (getExpiration): Likewise.
2804         (getDate): Likewise.
2805         (getLastModified): Likewise.
2806         (getHeaderField): Likewise.
2807         (getContent): Likewise.
2808         (getPermission): Likewise.
2809         (getInputStream): Likewise.
2810         (getOutputStream): Likewise.
2811         (toString): Likewise.
2812         (getDoInput): Likewise.
2813         (getDoOutput): Likewise.
2814         (setAllowUserInteraction): Likewise.
2815         (getAllowUserInteraction): Likewise.
2816         (setDefaultAllowUserInteraction): Likewise.
2817         (getDefaultAllowUserInteraction): Likewise.
2818         (setUseCaches): Likewise.
2819         (getUseCaches): Likewise.
2820         (setIfModifiedSince): Likewise.
2821         (getIfModifiedSince): Likewise.
2822         (setDefaultRequestProperty): Likewise.
2823         (getDefaultRequestProperty): Likewise.
2824         (setContentHandlerFactory): Likewise.
2825         (setFileNameMap): Likewise.
2827 2003-05-02  Michael Koch  <konqueror@gmx.de>
2829         * java/net/InetAddress.java:
2830         Merged class documentation with classpath.
2831         * java/net/JarURLConnection.java:
2832         Explicitely import all used classes.
2833         * java/net/URL.java:
2834         Reformatting.
2835         * java/net/ServerSocket.java,
2836         java/net/Socket.java:
2837         New versions from classpath.
2839 2003-05-02  Michael Koch  <konqueror@gmx.de>
2841         * gnu/java/nio/FileChannelImpl.java
2842         (read): New implementation.
2843         (implRead): New methods.
2844         (write): New implementation, call other write insteal of read method.
2845         (implWrite): New methods.
2846         (map): Added comment.
2847         (transferFrom): Implemented.
2848         (transferTo): Implemented.
2849         (lock): Added checks to throw exceptions.
2850         (truncate): Added check to throw exception.
2851         * gnu/java/nio/natFileChannelImpl.cc
2852         (implRead): New method.
2853         (implWrite): New method.
2854         * java/nio/ByteBuffer.java
2855         (hashCode): Fixed comment.
2856         (get): Fixed exception documentation.
2857         (put): Fixed exception documentation.
2858         * java/nio/CharBuffer.java:
2859         Added comment for later optimizations.
2861 2003-04-30  Tom Tromey  <tromey@redhat.com>
2863         PR libgcj/10582:
2864         * verify.cc (_Jv_BytecodeVerifier::is_assignable_from_slow):
2865         Removed.
2866         (type::compatible): Use _Jv_IsAssignableFrom.
2867         * java/lang/natClass.cc (iindex_mutex_initialized): Now static.
2868         (_Jv_IsAssignableFrom): Work even when source or target class is
2869         not prepared.
2871 2003-04-30  Michael Koch  <konqueror@gmx.de>
2873         * java/text/BreakIterator.java
2874         (clone): New method.
2876 2003-04-30  Michael Koch  <konqueror@gmx.de>
2878         * java/text/CollationElementIterator.java,
2879         java/text/CollationKey.java,
2880         java/text/RuleBasedCollator.java:
2881         Merged copyright and documentation from classpath and
2882         rearranged some code. No code changes done.
2884 2003-04-30  Michael Koch  <konqueror@gmx.de>
2886         * java/util/regex/Matcher.java
2887         (pattern): New member variable.
2888         (appendReplacement): New method.
2889         (appendTail): New method.
2890         (end): New method.
2891         (find): New method.
2892         (group): New method.
2893         (replaceFirst): Added documentation.
2894         (replaceAll): Added documentation.
2895         (groupCount): New method.
2896         (lookingAt): New method.
2897         (matches): New method.
2898         (reset): New method.
2899         (start): New method.
2900         * java/util/regex/Pattern.java
2901         (serialVersionUID): New constant.
2902         (CANON_EQ): New constant.
2903         (CASE_INSENSITIVE): New constant.
2904         (COMMENTS): New constant.
2905         (DOTALL): New constant.
2906         (MULTILINE): New constant.
2907         (UNICODE_CASE): New constant.
2908         (UNIX_LINES): New constant.
2909         (regex): New member variable.
2910         (flags): New member variable.
2911         (Pattern): New method.
2912         (compile): Documentation added.
2913         (flags): New method.
2914         (matches): Documentation added.
2915         (matcher): Documentation added.
2916         (split): Documentation added.
2917         (pattern): New method.
2919 2003-04-30  Michael Koch  <konqueror@gmx.de>
2921         * gnu/java/security/Engine.java,
2922         gnu/java/security/OID.java,
2923         gnu/java/security/der/BitString.java,
2924         gnu/java/security/der/DER.java,
2925         gnu/java/security/der/DERReader.java,
2926         gnu/java/security/der/DERValue.java,
2927         gnu/java/security/der/DERWriter.java,
2928         gnu/java/security/provider/DSAKeyFactory.java,
2929         gnu/java/security/provider/X509CertificateFactory.java,
2930         gnu/java/security/x509/X500DistinguishedName.java,
2931         gnu/java/security/x509/X509CRL.java,
2932         gnu/java/security/x509/X509CRLEntry.java,
2933         gnu/java/security/x509/X509Certificate.java,
2934         java/security/cert/CRLSelector.java,
2935         java/security/cert/CertPathBuilder.java,
2936         java/security/cert/CertPathBuilderResult.java,
2937         java/security/cert/CertPathBuilderSpi.java,
2938         java/security/cert/CertPathParameters.java,
2939         java/security/cert/CertPathValidator.java,
2940         java/security/cert/CertPathValidatorResult.java,
2941         java/security/cert/CertPathValidatorSpi.java,
2942         java/security/cert/CertSelector.java,
2943         java/security/cert/CertStore.java,
2944         java/security/cert/CertStoreParameters.java,
2945         java/security/cert/CertStoreSpi.java,
2946         java/security/cert/CollectionCertStoreParameters.java,
2947         java/security/cert/LDAPCertStoreParameters.java,
2948         java/security/cert/PKIXBuilderParameters.java,
2949         java/security/cert/PKIXCertPathBuilderResult.java,
2950         java/security/cert/PKIXCertPathChecker.java,
2951         java/security/cert/PKIXCertPathValidatorResult.java,
2952         java/security/cert/PKIXParameters.java,
2953         java/security/cert/PolicyNode.java,
2954         java/security/cert/PolicyQualifierInfo.java,
2955         java/security/cert/TrustAnchor.java,
2956         javax/security/auth/x500/X500Principal.java:
2957         New files from classpath.
2958         * gnu/java/io/ASN1ParsingException.java,
2959         gnu/java/io/Base64InputStream.java,
2960         gnu/java/security/der/DEREncodingException.java,
2961         gnu/java/security/provider/DSAParameters.java,
2962         gnu/java/security/provider/DSASignature.java,
2963         gnu/java/security/provider/Gnu.java,
2964         gnu/java/security/provider/GnuDSAPrivateKey.java,
2965         gnu/java/security/provider/GnuDSAPublicKey.java,
2966         java/security/AlgorithmParameterGenerator.java,
2967         java/security/AlgorithmParameters.java,
2968         java/security/KeyFactory.java,
2969         java/security/KeyPairGenerator.java,
2970         java/security/KeyStore.java,
2971         java/security/MessageDigest.java,
2972         java/security/SecureClassLoader.java,
2973         java/security/SecureRandom.java,
2974         java/security/Security.java,
2975         java/security/Signature.java,
2976         java/security/cert/Certificate.java,
2977         java/security/cert/CertificateFactory.java,
2978         java/security/cert/CertificateFactorySpi.java,
2979         java/security/cert/X509CRL.java,
2980         java/security/cert/X509Certificate.java,
2981         java/security/spec/DSAPublicKeySpec.java:
2982         New versions from classpath.
2983         * gnu/java/security/provider/DERReader.java,
2984         gnu/java/security/provider/DERWriter.java,
2985         java/security/Engine.java: Removed.
2986         * Makefile.am
2987         (java_source_files, javax_source_files): Added new files.
2988         * Makefile.in: Regenerated.
2990 2003-04-29  Michael Koch  <konqueror@gmx.de>
2992         * javax/swing/JTable.java
2993         (AUTO_RESIZE_ALL_COLUMNS): New constant.
2994         (AUTO_RESIZE_LAST_COLUMN): New constant.
2995         (AUTO_RESIZE_NEXT_COLUMN): New constant.
2996         (AUTO_RESIZE_OFF): New constant.
2997         (AUTO_RESIZE_SUBSEQUENT_COLUMNS): New constant.
2998         (JTable): New method.
2999         (columnAdded): New method.
3000         (columnMarginChanged): New method.
3001         (columnMoved): New method.
3002         (columnRemoved): New method.
3003         (columnSelectionChanged): New method.
3004         (editingCanceled): New method.
3005         (editingStopped): New method.
3006         (getColumnModel): New method.
3007         (getPreferredScrollableViewportSize): New method.
3008         (getScrollableBlockIncrement): New method.
3009         (getScrollableTracksViewportHeight): New method.
3010         (getScrollableTracksViewportWidth): New method.
3011         (getScrollableUnitIncrement): New method.
3012         (getSelectedRow): New method.
3013         (getSelectionModel): New method.
3014         (tableChanged): New method.
3015         (setModel): New method.
3016         (setSelectionMode): New method.
3017         (setSelectionModel): New method.
3018         (setShowGrid): New method.
3019         (valueChanged): New method.
3020         * javax/swing/text/DefaultEditorKit.java
3021         (backwardAction): New constant.
3022         (beepAction): New constant.
3023         (beginAction): New constant.
3024         (beginLineAction): New constant.
3025         (beginParagraphAction): New constant.
3026         (beginWordAction): New constant.
3027         (copyAction): New constant.
3028         (cutAction): New constant.
3029         (defaultKeyTypedAction): New constant.
3030         (deleteNextCharAction): New constant.
3031         (deletePrevCharAction): New constant.
3032         (downAction): New constant.
3033         (endAction): New constant.
3034         (endLineAction): New constant.
3035         (endOfLineStringProperty): New constant.
3036         (endParagraphAction): New constant.
3037         (endWordAction): New constant.
3038         (forwardAction): New constant.
3039         (insertBreakAction): New constant.
3040         (insertContentAction): New constant.
3041         (insertTabAction): New constant.
3042         (nextWordAction): New constant.
3043         (pageDownAction): New constant.
3044         (pageUpAction): New constant.
3045         (pasteAction): New constant.
3046         (previousWordAction): New constant.
3047         (readOnlyAction): New constant.
3048         (selectAllAction): New constant.
3049         (selectionBackwardAction): New constant.
3050         (selectionBeginAction): New constant.
3051         (selectionBeginLineAction): New constant.
3052         (selectionBeginParagraphAction): New constant.
3053         (selectionBeginWordAction): New constant.
3054         (selectionDownAction): New constant.
3055         (selectionEndAction): New constant.
3056         (selectionEndLineAction): New constant.
3057         (selectionEndParagraphAction): New constant.
3058         (selectionEndWordAction): New constant.
3059         (selectionForwardAction): New constant.
3060         (selectionNextWordAction): New constant.
3061         (selectionPreviousWordAction): New constant.
3062         (selectionUpAction): New constant.
3063         (selectLineAction): New constant.
3064         (selectParagraphAction): New constant.
3065         (selectWordAction): New constant.
3066         (upAction): New constant.
3067         (writableAction): New constant.
3069 2003-04-29  Michael Koch  <konqueror@gmx.de>
3071         * java/util/PropertyPermission.java:
3072         New version from classpath
3073         * java/util/ResourceBundle.java:
3074         Partly merged from classpath
3075         (getObject): Reformated.
3076         (tryBundle): Set foundBundle = null if no bundle found.
3078 2003-04-29  Michael Koch  <konqueror@gmx.de>
3080         * javax/swing/AbstractListModel.java,
3081         javax/swing/DefaultBoundedRangeModel.java,
3082         javax/swing/DefaultSingleSelectionModel.java:
3083         New Versions from classpath.
3085 2003-04-29  Michael Koch  <konqueror@gmx.de>
3087         * java/awt/Window.java
3088         (show): Call super.show() instead of setVisible() to avoid endless
3089         loop.
3090         (hide): Call super.hide() instead of setVisible() to avoid endless
3091         loop.
3093 2003-04-29  Michael Koch  <konqueror@gmx.de>
3095         * java/util/zip/Deflater.java,
3096         java/util/zip/DeflaterOutputStream.java:
3097         Partly merged with classpath.
3099 2003-04-27  Tom Tromey  <tromey@redhat.com>
3101         * java/lang/natString.cc (_Jv_AllocString): Initialize
3102         cachedHashCode.
3103         (init): Likewise.
3104         (_Jv_NewStringUtf8Const): Likewise.
3106 2003-03-29  Mohan Embar  <gnustuff@thisiscool.com>
3108         * include/jvm.h: (_Jv_GetNbArgs) added
3109         (_Jv_GetSafeArg) added
3110         (_Jv_SetArgs) added
3111         * prims.cc: (_Jv_GetNbArgs) implemented
3112         (_Jv_GetSafeArg) implemented
3113         (_Jv_SetArgs) implemented
3114         (_Jv_RunMain) use _Jv_SetArgs() instead of explicitly
3115         setting _Jv_argc and _Jv_argv
3116         * posix.cc: (_Jv_ThisExecutable) use _Jv_GetSafeArg()
3117         instead of _Jv_argv
3118         * java/lang/natRuntime.cc: (insertSystemProperties) use
3119         _Jv_GetSafeArg() instead of _Jv_argv
3121 2003-04-23  Tom Tromey  <tromey@redhat.com>
3123         * resolve.cc (_Jv_PrepareClass): Round size up to alignment
3124         required by this object.  Search superclasses to find required
3125         alignment.
3126         (get_alignment_from_class): Use alignment of type as it appears
3127         in a struct.
3128         (ALIGNOF): New macro.
3129         (struct aligner): New helper structure.
3131 2003-04-20  Scott Gilbertson  <scottg@mantatest.com>
3133         * java/awt/Container.java (addImpl): Enable paint events if adding
3134         a lightweight to a heavyweight.
3135         (addNotify): Ensure that peer is created before
3136         addNotifyContainerChildren.
3137         (addNotifyContainerChildren): Enable paint events if a heavyweight
3138         container contains a lightweight.
3140 2003-04-20  Tom Tromey  <tromey@redhat.com>
3142         * java/io/BufferedReader.java, java/io/BufferedWriter.java,
3143         java/io/DataInput.java, java/io/DataOutput.java: Imports from
3144         Classpath.
3146 2003-04-19  Tom Tromey  <tromey@redhat.com>
3148         * java/sql/Date.java, java/sql/DriverManager.java,
3149         java/sql/Time.java, java/sql/Timestamp.java: New versions from
3150         Classpath.
3152         * Makefile.in: Rebuilt.
3153         * Makefile.am (ordinary_java_source_files): Added new files.
3154         * java/security/AlgorithmParameterGenerator.java,
3155         java/security/AlgorithmParameters.java, java/security/Engine.java,
3156         java/security/Identity.java, java/security/IdentityScope.java,
3157         java/security/KeyFactory.java,
3158         java/security/KeyPairGenerator.java, java/security/KeyStore.java,
3159         java/security/MessageDigest.java, java/security/Policy.java,
3160         java/security/ProtectionDomain.java,
3161         java/security/SecureRandom.java, java/security/Security.java,
3162         java/security/Signature.java, java/security/SignatureSpi.java,
3163         java/security/SignedObject.java, java/security/Signer.java,
3164         java/security/interfaces/RSAMultiPrimePrivateCrtKey.java,
3165         java/security/spec/PSSParameterSpec.java,
3166         java/security/spec/RSAMultiPrimePrivateCrtKeySpec.java,
3167         java/security/spec/RSAOtherPrimeInfo.java: New versions from
3168         Classpath.
3170 2003-04-19  Scott Gilbertson  <scottg@mantatest.com>
3172         * gnu/awt/xlib/XGraphics.java (XGraphics): Use new GC.create.
3173         (dispose): Null metrics.
3174         * gnu/awt/xlib/XToolkit.java (sync): Implement.
3175         * gnu/gcj/xlib/Clip.java (dispose): Change name of native from
3176         finalize.
3177         (finalize): Call dispose.
3178         * gnu/gcj/xlib/Drawable.java (gcCache): New field.
3179         (gcCachedCount): New field.
3180         (finalize): New method.
3181         (putGCInCache): New method.
3182         (getGCFromCache): New method.
3183         * gnu/gcj/xlib/GC.java (GC): Make protected.
3184         (clone): Get new GC from cache if possible.
3185         (create): New static method.
3186         (dispose): Save old GC in cache.
3187         * gnu/gcj/xlib/natClip.cc (dispose): Check for null before
3188         deleting.
3189         * gnu/gcj/xlib/natGC.cc (initStructure): Call XCreateGC only if gc
3190         is null.
3191         * gnu/gcj/xlib/Pixmap.java (Pixmap): Use new GC.create.
3192         * java/awt/Container.java (visitChild): Dispose gfx2 when
3193         finished.
3195 2003-04-19  Jerry Quinn  <jlquinn@optonline.net>
3197         * java/math/BigInteger.java (probablePrime): New.
3198         * java/math/BigDecimal.java (unscaledValue): New.
3200 2003-04-19  Ranjit Mathew  <rmathew@hotmail.com>
3202         * java/io/File.java (getAbsolutePath): On Windows, take care
3203         of paths like "C:", "G:foo\bar", etc.
3204         (getName): Make it work correctly on Windows.
3205         (getParent): Make it work correctly on Windows. For UNIX,
3206         fix bug that causes "/" to be returned as the parent of "/",
3207         instead of null as returned by Sun's JRE.
3209         * java/io/natFileWin32.cc: Change copyright owner to FSF.
3211 2003-04-19  Scott Gilbertson  <scottg@mantatest.com>
3213         * gnu/awt/xlib/XGraphicsConfiguration.java (FontMetricsCache): New
3214         inner class.
3215         (CACHE_SIZE_PER_DISPLAY): New field
3216         (fontMetricsCache): New field
3217         (getXFontMetrics): Use fontMetricsCache to cache fonts. Prefer
3218         loading ISO10646-1 fonts.
3220 2003-04-19  Scott Gilbertson  <scottg@mantatest.com>
3222         * libjava/gnu/gcj/xlib/natFont.cc (getStringWidth): Support 16-bit
3223         characters.
3224         * libjava/gnu/gcj/xlib/natGC.cc (drawString): Support 16-bit
3225         characters.
3227 2003-04-16  Richard Earnshaw  <rearnsha@arm.com>
3229         * java/lang/ieeefp.h: Handle ARM platforms that have pure-endian
3230         floating point.
3232 2003-04-15  Jakub Jelinek  <jakub@redhat.com>
3234         * configure.host (*-linux*): Don't set slow_pthread_self if primary
3235         installed libpthread is either linuxthreads with floating stacks or
3236         NPTL.
3238 2003-04-14  Tom Tromey  <tromey@redhat.com>
3240         * resolve.cc (_Jv_PrepareClass): Round up class size to multiple
3241         of alignment.
3243 2003-04-10  Tom Tromey  <tromey@redhat.com>
3245         * verify.cc (pop64): Removed.
3246         (verify_instructions_0) <op_pop2>: Inline code.  Don't throw
3247         exception if top-of-stack is narrow.
3248         (initialize_stack): Check to ensure that <init> is not static and
3249         <clinit> is.
3251 2003-04-07  Aaron M. Renn (arenn@urbanophile.com)
3253         * java/io/ObjectStreamException
3254         * java/io/FileFilter
3255         * java/io/FilenameFilter
3256         * java/io/ObjectInput
3257         * java/io/ObjectOutput
3258         * java/io/ObjectStreamConstants
3259         Minor doc fixes, format fixes, spelling corrections, etc.
3260         * java/io/DataInput
3261         Corrected code samples in Javadocs to match reality
3262         * java/io/DataOutput
3263         * java/io/ObjectInputValidation
3264         Major documentation fixes - all Javadocs re-written or updated
3266 2003-04-06  Michael Koch  <konqueror@gmx.de>
3268         * java/net/URLConnection.java:
3269         Import classes directly.
3270         (URLConnection): Merged class documentation with classpath.
3271         (url): Moved, documentation from classpath added.
3272         (doInput): Moved, documentation from classpath added.
3273         (doOutput): Moved, documentation from classpath added.
3274         (allowUserInteraction): Moved.
3275         (useCaches): Moved, documentation from classpath added.
3276         (ifModifiedSince): Moved, documentation from classpath added.
3277         (connected): Moved, documentation from classpath added.
3279 2003-04-06  Michael Koch  <konqueror@gmx.de>
3281         * java/io/FileInputStream.java
3282         (skip): Renamed some variables to match classpath, added
3283         checks from classpath.
3285 2003-03-31  Michael Koch  <konqueror@gmx.de>
3287         * javax/swing/AbstractAction.java
3288         (AbstractAction): Reformatted.
3289         (serialVersionUID): New private member variable.
3290         * javax/swing/plaf/BorderUIResource.java
3291         (serialVersionUID): New private member variable.
3292         * javax/swing/plaf/basic/BasicLookAndFeel.java
3293         (serialVersionUID): New private member variable.
3295 2003-03-31  Michael Koch  <konqueror@gmx.de>
3297         * java/sql/Date.java
3298         (valueOf): Deprecated, reformatted.
3299         (toString): Deprecated, reformatted.
3300         * java/sql/Time.java
3301         (valueOf): Deprecated, reformatted.
3302         (toString): Deprecated, reformatted.
3304 2003-03-31  Michael Koch  <konqueror@gmx.de>
3306         * java/rmi/dgc/VMID.java
3307         (isUnique): Deprecated.
3309 2003-03-31  Michael Koch  <konqueror@gmx.de>
3311         * java/io/File.java
3312         (separator): Merged documentation from classpath.
3313         (separatorChar): Merged documentation from classpath.
3314         (pathSeparator): Merged documentation from classpath.
3315         (pathSeparatorChar): Merged documentation from classpath.
3316         (path): Merged documentation from classpath.
3317         (canRead): Merged documentation from classpath.
3318         (canWrite): Merged documentation from classpath.
3319         (createNewFile): Merged documentation from classpath.
3320         (delete): Merged documentation from classpath.
3321         (equals): Merged documentation from classpath.
3322         (exists): Merged documentation from classpath.
3323         (File): Renamed p to name to match classpath, merged documentation
3324         from classpath.
3325         (getAbsolutePath): Merged documentation from classpath.
3326         (getCanonicalPath): Merged documentation from classpath.
3327         (getCanonicalFile): Merged documentation from classpath.
3328         (getName): Merged documentation from classpath.
3329         (getParent): Merged documentation from classpath.
3330         (getParentFile): Merged documentation from classpath.
3331         (getPath): Merged documentation from classpath.
3332         (hashCode): Merged documentation from classpath.
3333         (isAbsolute): Merged documentation from classpath.
3334         (isDirectory): Merged documentation from classpath.
3335         (isFile): Merged documentation from classpath.
3336         (isHidden): Merged documentation from classpath.
3337         (lastModified): Merged documentation from classpath.
3338         (length): Merged documentation from classpath.
3339         (list): Merged documentation from classpath.
3340         (listFiles): Merged documentation from classpath.
3341         (toString): Merged documentation from classpath.
3342         (toURL): Merged documentation from classpath.
3343         (mkdir): Merged documentation from classpath.
3344         (mkdirs): Merged documentation from classpath.
3345         (createTempFile): Merged documentation from classpath.
3346         (setReadOnly): Merged documentation from classpath.
3347         (listRoots): Merged documentation from classpath.
3348         (compareTo): Merged documentation from classpath.
3349         (renameTo): Merged documentation from classpath.
3350         (setLastModified): Merged documentation from classpath.
3351         * java/io/PrintStream.java
3352         (auto_flush): Merged documentation from classpath.
3353         (PrintStream): Merged documentation from classpath.
3354         (checkError): Merged documentation from classpath.
3355         (setError): Merged documentation from classpath.
3356         (close): Merged documentation from classpath.
3357         (flush): Merged documentation from classpath.
3358         (print): Merged documentation from classpath.
3359         (println):  Merged documentation from classpath.
3360         (write): Renamed count to len to match classpath,
3361         merged documentation from classpath.
3362         * java/io/RandomAccessFile.java
3363         (readShort): Merged documentation from classpath.
3364         (readUnsignedByte): Merged documentation from classpath.
3365         (readUnsignedShort): Merged documentation from classpath.
3366         (readUTF): Merged documentation from classpath.
3367         (seek): Reformatted, merged documentation from classpath.
3368         (skipBytes): Renamed some variables to match classpath, reformatted,
3369         merged documentation from classpath.
3370         (write): Merged documentation from classpath.
3371         (writeBoolean): Merged documentation from classpath.
3372         (writeByte): Merged documentation from classpath.
3373         (writeShort): Merged documentation from classpath.
3374         (writeChar): Merged documentation from classpath.
3375         (writeInt): Merged documentation from classpath.
3376         (writeLong): Merged documentation from classpath.
3377         (writeFloat): Merged documentation from classpath.
3378         (writeDouble): Merged documentation from classpath.
3379         (writeBytes): Merged documentation from classpath.
3380         (writeChars): Merged documentation from classpath.
3381         (writeUTF): Reformatted.
3382         (getChannel): Reformatted.
3384 2003-03-31  Michael Koch  <konqueror@gmx.de>
3386         * java/awt/font/TextAttribute.java
3387         (readResolve): Throws java.io.InvalidObjectException.
3389 2003-03-31  Michael Koch  <konqueror@gmx.de>
3391         * java/rmi/server/LoaderHandler.java
3392         (loadClass): Deprecated.
3393         (getSecurityContext): Deprecated.
3394         * java/rmi/server/LogStream.java
3395         (getDefaultStream): Deprecated.
3396         (setDefaultStream): Deprecated.
3397         (getOutputStream): Deprecated.
3398         (setOutputStream): Deprecated.
3399         (write): Deprecated.
3400         (toString): Deprecated.
3401         (parseLevel): Deprecated.
3402         * java/rmi/server/Operation.java
3403         (Operation): Deprecated.
3404         (getOperation): Deprecated.
3405         (toString): Deprecated.
3406         * java/rmi/server/RemoteCall.java
3407         (getOutputStream): Deprecated.
3408         (releaseOutputStream): Deprecated.
3409         (getInputStream): Deprecated.
3410         (releaseInputStream): Deprecated.
3411         (getResultStream): Deprecated.
3412         (executeCall): Deprecated.
3413         (done): Deprecated.
3414         * java/rmi/server/RemoteRef.java
3415         (invoke): Deprecated.
3416         (newCall): Deprecated.
3417         (done): Deprecated.
3418         * java/rmi/server/RemoteStub.java
3419         (setRef): Deprecated.
3420         * java/rmi/server/Skeleton.java:
3421         No need to import java.lang.Exception explicitly.
3422         (dispatch): Deprecated.
3423         (getOperations): Deprecated.
3425 2003-03-31  Michael Koch  <konqueror@gmx.de>
3427         * java/rmi/dgc/VMID.java,
3428         java/rmi/registry/RegistryHandler.java,
3429         java/rmi/server/LogStream.java,
3430         java/rmi/server/Operation.java,
3431         java/rmi/server/RemoteCall.java,
3432         java/rmi/server/RemoteRef.java,
3433         java/rmi/server/RemoteStub.java:
3434         Reformatted.
3436 2003-03-31  Michael Koch  <konqueror@gmx.de>
3438         * javax/swing/AbstractCellEditor.java,
3439         javax/swing/AbstractListModel.java,
3440         javax/swing/ActionMap.java,
3441         javax/swing/BorderFactory.java,
3442         javax/swing/ButtonGroup.java,
3443         javax/swing/DefaultBoundedRangeModel.java,
3444         javax/swing/DefaultButtonModel.java,
3445         javax/swing/DefaultCellEditor.java,
3446         javax/swing/DefaultComboBoxModel.java,
3447         javax/swing/DefaultDesktopManager.java,
3448         javax/swing/DefaultListCellRenderer.java,
3449         javax/swing/DefaultSingleSelectionModel.java,
3450         javax/swing/InputMap.java,
3451         javax/swing/JComponent.java,
3452         javax/swing/JMenu.java,
3453         javax/swing/JSlider.java,
3454         javax/swing/KeyStroke.java,
3455         javax/swing/OverlayLayout.java,
3456         javax/swing/ScrollPaneLayout.java,
3457         javax/swing/SizeRequirements.java,
3458         javax/swing/UIManager.java,
3459         javax/swing/ViewportLayout.java,
3460         javax/swing/border/AbstractBorder.java,
3461         javax/swing/colorchooser/DefaultColorSelectionModel.java,
3462         javax/swing/event/EventListenerList.java,
3463         javax/swing/table/AbstractTableModel.java,
3464         javax/swing/table/DefaultTableCellRenderer.java,
3465         javax/swing/table/DefaultTableColumnModel.java,
3466         javax/swing/table/DefaultTableModel.java,
3467         javax/swing/table/TableColumn.java,
3468         javax/swing/text/StyledEditorKit.java,
3469         javax/swing/tree/DefaultMutableTreeNode.java,
3470         javax/swing/tree/DefaultTreeModel.java,
3471         javax/swing/tree/DefaultTreeSelectionModel.java,
3472         javax/swing/tree/TreePath.java,
3473         javax/swing/undo/AbstractUndoableEdit.java,
3474         javax/swing/undo/StateEdit.java,
3475         javax/swing/undo/StateEditable.java,
3476         javax/swing/undo/UndoableEditSupport.java:
3477         Merges from classpath.
3479 2003-03-30  Tom Tromey  <tromey@redhat.com>
3481         * java/lang/String.java (data, boffset, count): Documented.
3482         (String(byte[],String)): Reformatted.
3483         (String(byte[])): Likewise.
3484         (lastIndexOf(int)): Likewise.
3485         (lastIndexOf(String)): Likewise.
3486         (substring(int)): Renamed argument to match Classpath.
3487         (String(StringBuffer)): Don't share buffer if it is nearly empty.
3489         * java/lang/String.java: Miscellaneous minor formatting changes
3490         to match Classpath more closely.
3492 2003-03-29  Eric Blake  <ebb9@email.byu.edu>
3493             Tom Tromey  <tromey@redhat.com>
3495         * java/lang/natString.cc (hashCode): Use cachedHashCode.
3496         (init()): Removed.
3497         (charAt): Put index in exception.
3498         (contentEquals): New method.
3499         Include StringBuffer.h.
3500         * java/lang/String.java (cachedHashCode): New field.
3501         (String()): Follow classpath implementation.
3502         (init()): Removed.
3503         (contentEquals): Declare.
3504         (subSequence): Don't declare IndexOutIfBoundsException in throws
3505         clause.
3506         (matches, replaceFirst, replaceAll, split): New methods from
3507         Classpath.
3509 2003-03-29  Tom Tromey  <tromey@redhat.com>
3511         * java/lang/String.java: Reordered to follow Classpath; merged in
3512         javadoc.
3514         * java/text/MessageFormat.java: Removed some whitespace.
3516         * Makefile.in: Rebuilt.
3517         * Makefile.am (awt_java_source_files): Added new files.
3518         * gnu/javax/rmi/PortableServer.java,
3519         gnu/javax/rmi/CORBA/DelegateFactory.java,
3520         gnu/javax/rmi/CORBA/GetDelegateInstanceException.java,
3521         gnu/javax/rmi/CORBA/PortableRemoteObjectDelegateImpl.java,
3522         gnu/javax/rmi/CORBA/StubDelegateImpl.java,
3523         gnu/javax/rmi/CORBA/UtilDelegateImpl.java,
3524         gnu/javax/rmi/CORBA/ValueHandlerImpl.java,
3525         javax/rmi/BAD_OPERATION.java, javax/rmi/ORB.java,
3526         javax/rmi/PortableRemoteObject.java,
3527         javax/rmi/CORBA/ClassDesc.java, javax/rmi/CORBA/ObjectImpl.java,
3528         javax/rmi/CORBA/PortableRemoteObjectDelegate.java,
3529         javax/rmi/CORBA/Stub.java, javax/rmi/CORBA/StubDelegate.java,
3530         javax/rmi/CORBA/SystemException.java, javax/rmi/CORBA/Tie.java,
3531         javax/rmi/CORBA/Util.java, javax/rmi/CORBA/UtilDelegate.java,
3532         javax/rmi/CORBA/ValueHandler.java: New files from Classpath.
3534         * java/lang/natClass.cc (newInstance): Put method name in
3535         exception.
3536         (getConstructor): Likewise.
3537         (getDeclaredConstructor): Likewise.
3538         (getPrivateMethod): Likewise.
3540 2003-03-28  Tom Tromey  <tromey@redhat.com>
3542         * java/lang/reflect/Proxy.java: New version from Classpath.
3543         * java/lang/Package.java: New version from Classpath.
3545 2003-03-29  Ulrich Weigand  <uweigand@de.ibm.com>
3547         * configure.in (HAVE_BACKTRACE) [s390*-*-linux*]: Define.
3548         * configure: Regenerate.
3550 2003-03-28  Michael Koch  <konqueror@gmx.de>
3552         * java/io/File.java:
3553         Import needed classes instead of whole packages, merged class
3554         documentation with classpath, moved constants and variables to top of
3555         class.
3556         * java/io/PrintStream.java:
3557         Merged class documentation with classpath, moved constants and
3558         variables to top of class.
3559         * java/io/RandomAccessFile.java
3560         (RandomAccessFile): Merged with classpath.
3561         (read): Merged with classpath).
3562         (read*): Reformatted.
3564 2003-03-28  Michael Koch  <konqueror@gmx.de>
3566         * java/io/FileDescriptor.java
3567         (finalize): Throws Throwable, not IOException.
3568         * java/io/ObjectOutputStream.java
3569         (PutField.put): Doesnt throws anything.
3571 2003­03-28  Michael Koch  <konqueror@gmx.de>
3573         * java/io/FileOutputStream.java:
3574         Merged class documentation and authors with classpath.
3575         (FileOutputStream): Partly merged with classpath.
3576         (write): Merged with classpath.
3577         (getChannel): Make it synchronized instead of explicit block in this
3578         method.
3579         * java/io/RandomAccessFile.java:
3580         Merged class documentation and authors with classpath.
3582 2003-03-26  Tom Tromey  <tromey@redhat.com>
3584         * java/lang/natRuntime.cc (insertSystemProperties): Set
3585         gnu.classpath.home.url.
3586         * Makefile.in: Rebuilt.
3587         * Makefile.am: Define LIBDIR.
3589 2003-03-25  Michael Koch  <konqueror@gmx.de>
3591         * java/io/FileInputStream.java
3592         (read): Renamed b to buf and off to offset.
3593         * java/io/FileOutputStream.java
3594         (ch): Documentation added.
3595         (FileOutputStream): Documentation added.
3596         (getFD): Documentation added.
3597         (write): Documentation added.
3598         (close): Documentation added.
3599         (getChannel): Documentation added.
3601 2003-03-24  Michael Koch  <konqueror@gmx.de>
3603         * java/io/DataOutputStream.java
3604         (write): Merged from classpath.
3605         * java/io/File.java:
3606         Merged copyrigth with classpath.
3607         * java/io/FileInputStream.java
3608         (getChannel): Made it synchronized instead of using a synchronized
3609         block.
3610         * java/io/FileOutputStream.java: Reformatted.
3611         * java/io/InputStreamReader.java
3612         (InputStreamReader): Renamed enc to encoding_name.
3613         (close): Merged documentation from classpath.
3614         (getEncoding): Merged documentation from classpath.
3615         (ready): Merged documentation from classpath.
3616         (read): Merged documentation from classpath.
3617         * java/io/LineNumberReader.java
3618         (lineNumber): Made it private.
3619         (LineNumberReader): Use Constant instead of a direct value.
3620         * java/io/OutputStreamWriter.java
3621         (OutputStreamWriter): Renamed enc to encoding_scheme, merged
3622         documentation from classpath.
3623         (close): Merged documentation from classpath.
3624         (flush): Merged documentation from classpath.
3625         (write): Merged documentation from classpath.
3626         * java/io/PrintStream.java: Reformatted.
3628 2003-03-24  Michael Koch  <konqueror@gmx.de>
3630         * javax/swing/text/ComponentView.java
3631         (getComponent): Must be final.
3632         * javax/swing/tree/DefaultTreeCellRenderer.java:
3633         Reformatted.
3634         * javax/swing/undo/StateEditable.java:
3635         Reformatted.
3637 2003-03-24  Michael Koch  <konqueror@gmx.de>
3639         * java/rmi/activation/ActivationInstantiator.java:
3640         Reformatted.
3641         * java/rmi/activation/Activator.java:
3642         Reformatted.
3643         * java/rmi/registry/RegistryHandler.java:
3644         Remerged from classpath.
3646 2003-03-24  Michael Koch  <konqueror@gmx.de>
3648         * java/util/Date.java:
3649         Fixed documentation starting tag to make javadoc happy.
3650         * java/util/regex/Pattern.java
3651         (Pattern): Implements Serializable.
3652         * java/util/PatternSyntaxException.java
3653         (serialVersionUID): New member variable.
3655 2003-03-24  Michael Koch  <koqnueror@gmx.de>
3657         * java/awt/ContainerOrderFocusTraversalPolicy.java
3658         (getFirstComponent): Implemented.
3659         (getLastComponent): Implemented.
3660         (getDefaultComponent): Implemented.
3661         (setImplicitDownCycleTraversal): Fixed implementation.
3662         * java/awt/Robot.java
3663         (Robot): Added documentation.
3664         * java/awt/Toolkit.java
3665         (getFontList): Deprecated.
3666         (getFontMetrics): Deprecated.
3667         (getPrintJob): Added documentation.
3668         (getSystemSelection): Added documentation.
3669         (getLockingKeyState): Added documentation.
3670         (setLockingKeyState): Added documentation.
3671         (createCustomCursor): Added documentation.
3672         (getBestCursorSize): Added documentation.
3673         (getMaximumCursorColors): Added documentation.
3674         (isFrameStateSupported): Added documentation.
3676 2003-03-24  Michael Koch  <konqueror@gmx.de>
3678         * java/io/RandomAccessFile.java:
3679         More little merges with classpath. No code changes.
3681 2003-03-24  Michael Koch  <konqueror@gmx.de>
3683         * java/net/natInetAddressNoNet.cc:
3684         Include stddef.h.
3685         * java/net/natPlainDatagramSocketImplNoNet.cc:
3686         Fixed inlcude of java/net/DatagramPacket.h.
3687         * java/net/natPlainSocketImplNoNet.cc:
3688         Include some missing classes.
3690 2003-03-24  Michael Koch  <konqueror@gmx.de>
3692         * java/awt/dnd/DropTarget.java
3693         (DropTargetAutoScroller): According to the online documentation, this
3694         is protected, but in reality it is public.
3695         * java/awt/dnd/DropTargetContext.java
3696         (TransferableProxy): According to the online documentation, this
3697         is protected, but in reality it is public.
3699 2003-03-24  Michael Koch  <konqueror@gmx.de>
3701         * java/io/DataInputStream.java
3702         (): Wrapped documentation line.
3703         (): Fixed @return tag.
3704         * java/io/DataOutputStream.java
3705         (written): Moved to top of class.
3706         (all methods): Merged documentation from classpath.
3707         * java/io/File.java:
3708         Merged copyright year with classpath.
3709         * java/io/FileInputStream.java
3710         (all methods): Merged documentation from classpath.
3711         * java/io/LineNumberReader.java
3712         (getLineNumber): Fixed @return tag.
3713         * java/io/ObjectInputStream.java.
3714         Reformatted.
3715         * java/io/ObjectOutputStream.java:
3716         Reformatted, fixed some @see tags.
3717         * java/io/OutputStreamWriter.java:
3718         Deleted empty line.
3719         * java/io/Writer.java:
3720         Reformatted.
3722 2003-03-24  Michael Koch  <konqueror@gmx.de>
3724         * java/awt/Frame.java
3725         (DEFAULT_CURSOR): Fixed @deprecated tag.
3726         (setCursor): Fixed @deprecated tag.
3728 2003-03-24  Michael Koch  <konqueror@gmx.de>
3730         * java/beans/beancontext/BeanContextEvent.java:
3731         Reformated.
3733 2003-03-23  Eric Blake  <ebb9@email.byu.edu>
3735         * java/lang/natStringBuffer.cc (regionMatches): New function.
3736         * java/lang/String.java (count): Now package-private.
3737         * java/lang/StringBuffer.java: Merged with Classpath.
3739 2003-03-23  Michael Koch  <konqueror@gmx.de>
3741         * java/io/BufferedOutputStream.java:
3742         Reformated.
3743         * java/io/BufferedReader.java:
3744         Reformated.
3745         * java/io/ByteArrayOutputStream.java
3746         (size): Fixed @see tag.
3747         * java/io/CharArrayWriter.java
3748         (size): Fixed @see tag.
3749         * java/io/DataInput.java:
3750         Reformated.
3751         * java/io/DataOutput.java:
3752         Reformated.
3753         * java/io/DataOutputStream.java:
3754         Merged copyright years with classpath.
3755         * java/io/Externalizable.java:
3756         Reformated.
3757         * java/io/FileFilter.java:
3758         Reformated.
3759         * java/io/FileInputStream.java:
3760         Merged copyright years with classpath.
3761         * java/io/FileOutputStream.java:
3762         Merged copyright years with classpath.
3763         * java/io/FilePermission.java
3764         (FilePermission): Replaced @XXX with FIXME:.
3765         * java/io/FileWriter.java:
3766         Reformated.
3767         * java/io/FilenameFilter.java:
3768         Reformated.
3769         * java/io/FilterInputStream.java:
3770         Reformated.
3771         * java/io/FilterOutputStream.java:
3772         Reformated.
3773         * java/io/FilterReader.java:
3774         Reformated.
3775         * java/io/FilterWriter.java:
3776         Reformated.
3777         * java/io/LineNumberInputStream.java
3778         (LineNumberInputStream): Replaced @code with HTML tags to make javadoc
3779         happy.
3780         (getLineNumber): Fixed @return tag.
3781         * java/io/ObjectInput.java:
3782         Reformated.
3783         * java/io/ObjectOutput.java:
3784         Reformated.
3785         * java/io/ObjectStreamClass.java:
3786         Reformated.
3787         * java/io/PrintStream.java:
3788         Merged copyright years with classpath.
3789         * java/io/PushbackReader.java
3790         (PushbackReader): Replaced @code with @param.
3791         * java/io/SerializablePermission.java:
3792         Reformated.
3793         * java/io/StreamTokenizer.java
3794         (resetSyntax): Fixed @see tag.
3796 2003-03-22  Richard Henderson  <rth@redhat.com>
3798         * sysdep/ia64/locks.h: Include ia64intrin.h.
3799         (compare_and_swap): Use __sync_bool_compare_and_swap.
3800         (compare_and_swap_release): Expose ar.ccv assignment.
3802 2003-03-22  Andreas Tobler <a.tobler@schweiz.ch>
3804         * include/posix.h: Add suffix for darwin dynamic libraries.
3806 2003-03-21  Michael Koch  <konqueror@gmx.de>
3808         * javax/swing/Action.java
3809         (ACCELERATOR_KEY): New constant.
3810         (ACTION_COMMAND_KEY): Likewise.
3811         (MNEMONIC_KEY): Likewise.
3812         * javax/swing/UnsupportedLookAndFeelException.java
3813         (UnsupportedLookAndFeelException): Must be public.
3814         * javax/swing/WindowConstants.java
3815         (EXIT_ON_CLOSE): New constant.
3816         * javax/swing/text/BadLocationException.java
3817         (offset): New member variable.
3818         (BadLocationException): New implementation, documentation added.
3819         (offsetRequested): New method.
3820         * javax/swing/text/Caret.java:
3821         Reformated.
3822         * javax/swing/text/Document.java:
3823         Reformated.
3825 2003-03-21  Michael Koch  <konqueror@gmx.de>
3827         * java/rmi/activation/Activatable.java
3828         (serialVersionUID): New member variable.
3829         * java/rmi/activation/ActivationGroup.java
3830         (serialVersionUID): New member variable.
3831         * java/rmi/activation/ActivationGroupDesc.java
3832         (serialVersionUID): New member variable.
3833         * java/rmi/registry/Registry.java:
3834         Reformated.
3835         (Registry): Deprecated.
3836         * java/rmi/server/LoaderHandler.java
3837         Reformated.
3838         (LoaderHandler): Deprecated.
3839         * java/rmi/server/LogStream.java
3840         Reformated.
3841         (LogStream): Deprecated.
3842         * java/rmi/server/Operation.java
3843         (Operation): Deprecated.
3844         * java/rmi/server/RMIFailureHandler.java:
3845         Reformated.
3846         * java/rmi/server/RMISocketFactory.java:
3847         Reformated.
3848         * java/rmi/server/RemoteCall.java
3849         (RemoteCall): Deprecated.
3850         * java/rmi/server/RemoteStub.java:
3851         Reformated.
3852         * java/rmi/server/Skeleton.java
3853         Reformated.
3854         (Skeleton): Deprecated.
3856 2003-03-21  Michael Koch  <konqueror@gmx.de>
3858         * java/io/LineNumberReader.java
3859         (LineNumberReader): Merged documentation with classpath.
3860         (getLineNumber): Likewise.
3861         (setLineNumber): Likewise.
3862         (mark): Likewise.
3863         (reset): Likewise.
3864         (read): Likewise.
3865         (readLine): Likewise.
3866         (skip): Likewise.
3868 2003-03-21  Michael Koch  <konqueror@gmx.de>
3870         * java/rmi/RMISecurityManager.java
3871         (checkAccept): Removed.
3872         (checkAccess): Likewise.
3873         (checkAccess): Likewise.
3874         (checkAwtEventQueueAccess): Likewise.
3875         (checkConnect): Likewise.
3876         (checkCreateClassLoader): Likewise.
3877         (checkDelete): Likewise.
3878         (checkExec): Likewise.
3879         (checkExit): Likewise.
3880         (checkLink): Likewise.
3881         (checkListen): Likewise.
3882         (checkMemberAccess): Likewise.
3883         (checkMulticast): Likewise.
3884         (checkPackageAccess): Likewise.
3885         (checkPackageDefinition): Likewise.
3886         (checkPermission): Likewise.
3887         (checkPrintJobAccess): Likewise.
3888         (checkPropertiesAccess): Likewise.
3889         (checkPropertyAccess): Likewise.
3890         (checkRead): Likewise.
3891         (checkSecurityAccess): Likewise.
3892         (checkSetFactory): Likewise.
3893         (checkSystemClipboardAccess): Likewise.
3894         (checkTopLevelWindow): Likewise.
3895         (checkWrite): Likewise.
3897 2003-03-20  Michael Koch  <konqueror@gmx.de>
3899         * gnu/java/nio/FileChannelImpl.java
3900         (address): Removed.
3901         (map_address): New member variable.
3902         (length): Make it package private.
3903         (fd): Make it package private.
3904         (buf): Make it package private.
3905         (file_obj): Make it package private.
3906         (FileChannelImpl): New constructor.
3907         (nio_mmap_file): Use RawData instead of long.
3908         (nio_munmap_file): Use RawData instead of long.
3909         (nio_msync): Use RawData instead of long.
3910         (implCloseChannel): New implementation using map_address.
3911         (read): Reformated.
3912         (map): Implemented.
3913         (create_direct_mapped_buffer): Implemented, use RawData, throws
3914         IOException.
3915         (force): Use map_address instead of address.
3916         * gnu/java/nio/MappedByteFileBuffer.java
3917         (address): Removed.
3918         (map_address): New member variable.
3919         (MappedByteFileBuffer): Use map_address instead of address, reformated.
3920         (several methods): Use map_address instead of address, replaced long
3921         with RawData where appropriate.
3922         * gnu/java/nio/natFileChannelImpl.cc
3923         (nio_mmap_file): Replaced long with RawData.
3924         (nio_munmap_file): Replaced long with RawData.
3925         (nio_msync): Replaced long with RawData.
3926         * gnu/java/nio/natMappedByteFileBuffer.cc
3927         (several methods): Replaced long with RawData where appropriate.
3929 2003-03-20  Michael Koch  <konqueror@gmx.de>
3931         * java/net/InetAddress.java,
3932         java/net/JarURLConnection.java,
3933         java/net/PlainDatagramSocketImpl.java,
3934         java/net/PlainSocketImpl.java,
3935         java/net/URLConnection.java:
3936         Merged copyright statements with classpath for easier merging.
3938 2003-03-20  Michael Koch  <konqueror@gmx.de>
3940         * java/io/FileInputStream.java
3941         (getChannel): New implementation.
3942         * java/io/FileOutputStream.java
3943         (ch): New member variable.
3944         (getChannel): Implemented.
3945         * java/io/RandomAccessFile.java
3946         (RandomAccessFile): Throws FileNotFoundException instead of
3947         IOException.
3948         (getChannel): New method.
3949         (ch): New member variable.
3951 2003-03-20  Michael Koch  <konqueror@gmx.de>
3953         * java/io/DataOutputStream.java,
3954         java/io/File.java,
3955         java/io/FileInputStream.java,
3956         java/io/FileOutputStream.java,
3957         java/io/InputStreamReader.java,
3958         java/io/LineNumberReader.java,
3959         java/io/OutputStreamWriter.java,
3960         java/io/PrintStream.java,
3961         java/io/RandomAccessFile.java:
3962         Merged copyright statements with classpath for easier merging.
3964 2003-03-19  Michael Koch  <konqueror@gmx.de>
3966         * java/lang/Process.java:
3967         Merged from classpath.
3969 2003-03-19  Michael Koch  <konqueror@gmx.de>
3971         * java/io/FileOutputStream.java
3972         (FileOutputStream): New constructor, merged from classpath.
3973         * java/io/FileWriter.java
3974         (FileWriter): New constructor, merged from classpath.
3976 2003-03-18  Michael Koch  <konqueror@gmx.de>
3978         * java/awt/ScrollPane.java
3979         (ScrollPane): Rewrote for new ScrollPaneAdjustable.
3980         (getViewportSize): Likewise.
3981         (addNotify): Likewise.
3982         (removeNotify): Likewise.
3983         * java/awt/ScrollPaneAdjustable.java
3984         (ScrollPaneAdjustable): No longer extends Scrollbar.
3985         * java/beans/beancontext/BeanContextServices.java:
3986         Reformated.
3987         (getService): Added throws TooManyListenersException;
3988         * java/beans/beancontext/BeanContextServicesSupport.java:
3989         Reformated.
3991 2003-03-18  Michael Koch  <konqueror@gmx.de>
3993         * java/io/BufferedOutputStream.java,
3994         java/io/DataInput.java,
3995         java/io/DataInputStream.java,
3996         java/io/DataOutput.java,
3997         java/io/Externalizable.java:
3998         More merges from classpath.
4000 2003-03-18  Michael Koch  <konqueror@gmx.de>
4002         * configure.in: Fixed links to platform dependant java.net files.
4003         * configure: Regenerated.
4004         * java/net/natInetAddress.cc,
4005         java/net/natNetworkInterface.cc,
4006         java/net/natPlainDatagramSocketImpl.cc,
4007         java/net/natPlainSocketImpl.cc:
4008         Removed.
4010 2003-03-18  Michael Koch  <konqueror@gmx.de>
4012         * configure.in: Create links to architecture dependent files,
4013         introduced PLATFORMNET variable (set to NoNet for newlib usage).
4014         * configure: Regenerated.
4015         * java/net/natInetAddressNoNet.cc,
4016         java/net/natInetAddressPosix.cc,
4017         java/net/natInetAddressWin32.cc,
4018         java/net/natNetworkInterfaceNoNet.cc,
4019         java/net/natNetworkInterfacePosix.cc,
4020         java/net/natNetworkInterfaceWin32.cc,
4021         java/net/natPlainDatagramSocketImplNoNet.cc,
4022         java/net/natPlainDatagramSocketImplPosix.cc,
4023         java/net/natPlainDatagramSocketImplWin32.cc,
4024         java/net/natPlainSocketImplNoNet.cc,
4025         java/net/natPlainSocketImplPosix.cc,
4026         java/net/natPlainSocketImplWin32.cc: New files.
4028 2003-03-18  Michael Koch  <konqueror@gmx.de>
4030         * java/io/BufferedReader.java,
4031         java/io/BufferedWriter.java,
4032         java/io/ByteArrayOutputStream.java,
4033         java/io/FileFilter.java,
4034         java/io/FilePermission.java,
4035         java/io/FileReader.java,
4036         java/io/FileWriter.java,
4037         java/io/FilenameFilter.java,
4038         java/io/FilterInputStream.java,
4039         java/io/FilterOutputStream.java,
4040         java/io/FilterReader.java,
4041         java/io/FilterWriter.java,
4042         java/io/ObjectInput.java,
4043         java/io/ObjectInputValidation.java,
4044         java/io/ObjectOutput.java,
4045         java/io/ObjectStreamField.java,
4046         java/io/PipedInputStream.java,
4047         java/io/PipedReader.java,
4048         java/io/PrintWriter.java,
4049         java/io/PushbackReader.java,
4050         java/io/Reader.java,
4051         java/io/SerializablePermission.java,
4052         java/io/StringReader.java,
4053         java/io/Writer.java:
4054         Merged from classpath.
4056 2003-03-17  Michael Koch  <konqueror@gmx.de>
4058         * java/awt/ScrollPaneAdjustable.java:
4059         Compile fixes.
4060         
4061 2003-03-17  Michael Koch  <konqueror@gmx.de>
4063         * java/net/DatagramSocket.java
4064         (connect): Fixed comment.
4065         * java/nio/ByteBuffer.java
4066         (hasArray): Fixed comment.
4068 2003-03-17  Michael Koch  <konqueror@gmx.de>
4070         * java/beans/Beans.java:
4071         Explicitely import classes not packages.
4072         * java/beans/FeatureDescriptor.java
4073         (preferred): New member variable.
4074         (isPreferred): New method.
4075         (setPreferred): New method.
4076         * java/beans/PropertyEditorManager.java:
4077         Explicitely import used classes.
4078         * java/beans/beancontext/BeanContextChild.java:
4079         Added line wrapping.
4080         * java/beans/beancontext/BeanContextChildSupport.java:
4081         Reindented.
4082         * java/beans/beancontext/BeanContextEvent.java:
4083         Reindented.
4085 2003-03-17  Michael Koch  <konqueror@gmx.de>
4087         * java/awt/Dialog.java
4088         (Dialog): New constructor, changed implementations, added
4089         documentation.
4090         * java/awt/ScrollPaneAdjustable.java
4091         (ScrollPaneAdjustable): Extends Object, implements Adjustable and
4092         Serializable.
4093         (serialVersionUID): New member variable.
4094         (sp): New member variable.
4095         (orientation): New member variable.
4096         (value): New member variable.
4097         (minimum): New member variable.
4098         (maximum): New member variable.
4099         (visibleAmount): New member variable.
4100         (unitIncrement): New member variable.
4101         (blockIncrement): New member variable.
4102         (AdjustmentListener): New member variable.
4103         (ScrollPaneAdjustable): New implementation.
4104         (addAdjustmentListener): New method.
4105         (removeAdjustmentListener): New method.
4106         (getAdjustmentListeners): New method.
4107         (getBlockIncrement): New method.
4108         (getMaximum): New method.
4109         (getMinimum): New method.
4110         (getOrientation): New method.
4111         (getUnitIncrement): New method.
4112         (getValue): New method.
4113         (getVisibleAmount): New method.
4114         (setBlockIncrement): New method.
4115         (setMaximum): Implemented.
4116         (setMinimum): Implemented.
4117         (setUnitIncrement): New method.
4118         (setValue): New method.
4119         (setVisibleAmount): Implemented. 
4120         (paramString): New stubbed method.
4121         * java/awt/Window.java
4122         (show): Call setVisible().
4123         (hide): Call setVisible().
4124         (processEvent): Add cases for WINDOW_GAINED_FOCUS, WINDOW_LOST_FOCUS
4125         and WINDOW_STATE_CHANGED.
4126         (processWindowFocusEvent): New method.
4127         (processWindowStateEvent): New method.
4128         (postEvent): Deprecated.
4129         (applyResourceBundle): Deprecated.
4130         * java/awt/datatransfer/DataFlavor.java
4131         (DataFlavor): Doesn't thow ClassNotFoundException.
4133 2003-03-17  Michael Koch
4135         * javax/print/attribute/Attribute.java,
4136         javax/print/attribute/AttributeSet.java,
4137         javax/print/attribute/PrintRequestAttributeSet.java:
4138         New files.
4139         * Makefile.am
4140         (javax_source_files): Added new files:
4141         javax/print/attribute/Attribute.java
4142         javax/print/attribute/AttributeSet.java
4143         javax/print/attribute/PrintRequestAttributeSet.java
4144         * Makefile.in: Regenerated.
4146 2003-03-17  Michael Koch
4148         * javax/print/attribute/Attribute.java,
4149         javax/print/attribute/AttributeSet.java,
4150         javax/print/attribute/PrintRequestAttributeSet.java:
4151         New files.
4152         * Makefile.am
4153         (awt_java_source_files): Added new files:
4154         javax/print/attribute/Attribute.java
4155         javax/print/attribute/AttributeSet.java
4156         javax/print/attribute/PrintRequestAttributeSet.java
4157         * Makefile.in: Regenerated.
4159 2003-03-16  Tom Tromey  <tromey@redhat.com>
4161         * resolve.cc (ncode): Use _Jv_platform_ffi_abi.
4162         Include platform.h.
4163         * java/lang/natRuntime.cc (insertSystemProperties): Use
4164         _Jv_platform_path_separator.
4165         (nativeGetLibname): Use _Jv_platform_file_separator.
4166         (_load): Use _Jv_platform_onload_names.
4167         (onload_names): New global.
4168         * include/win32.h (_Jv_platform_file_separator): New define.
4169         (_Jv_platform_path_separator): Likewise.
4170         (_Jv_platform_onload_names): Likewise.
4171         (_Jv_platform_ffi_abi): Likewise.
4172         * include/posix.h (_Jv_platform_file_separator): New define.
4173         (_Jv_platform_path_separator): Likewise.
4174         (_Jv_platform_onload_names): Likewise.
4175         (_Jv_platform_ffi_abi): Likewise.
4177 2003-03-14  Hans Boehm  <Hans.Boehm@hp.com>
4179         * java/lang/natObject.cc (JV_SYNC_HASH): replace signed % by &.
4181 2003-02-14  Jeroen Frijters  <jeroen@sumatra.nl>
4183         * java/io/ObjectInputStream.java (readObject): Cleaned up the class
4184         hierarchy loop.
4185         (readFields(Object,ObjectStreamField[],boolean)): Changed argument
4186         list to Object,ObjectStreamClass, moved callReadMethod code up into
4187         readObject and added Class argument to all setXxxField calls.
4188         (callReadMethod): Changed Class argument to ObjectStreamClass to be
4189         consistent with ObjectOutputStream and to facilitate caching the
4190         Method in the future.
4191         (setBooleanField): Added Class argument.
4192         (setByteField): Likewise.
4193         (setCharField): Likewise.
4194         (setDoubleField): Likewise.
4195         (setFloatField): Likewise.
4196         (setIntField): Likewise.
4197         (setLongField): Likewise.
4198         (setShortField): Likewise.
4199         (setObjectField): Likewise.
4200         * java/io/ObjectOutputStream.java (writeObject): Cleaned up the
4201         class hierarchy loop.
4202         (defaultWriteObject): Call writeFields with new argument list.
4203         (writeFields(Object,ObjectStreamField[],boolean): Changed argument
4204         list to Object,ObjectStreamClass, moved callWriteMethod up into
4205         writeObject and added Class argument to all getXxxField calls.
4206         (callWriteMethod): Added ObjectStreamClass argument to be able to
4207         get the proper class to call getMethod on (each class can have (or
4208         not have) its own writeObject method).
4209         (getBooleanField): Added Class argument.
4210         (getByteField): Likewise.
4211         (getCharField): Likewise.
4212         (getDoubleField): Likewise.
4213         (getFloatField): Likewise.
4214         (getIntField): Likewise.
4215         (getLongField): Likewise.
4216         (getShortField): Likewise.
4217         (getObjectField): Likewise.
4218         * java/io/ObjectStreamClass.java (hasReadMethod): Added method to
4219         facilitate caching the Method object in the future.
4221 2003-03-12  Andreas Schwab  <schwab@suse.de>
4223         * configure.in: Avoid trailing /. in toolexeclibdir.
4224         * configure: Rebuilt.
4226 2003-03-11  Michael Koch  <konqueror@gmx.de>
4228         * gnu/java/nio/ByteBufferImpl.java
4229         (putInt): Use limit() instead of limit.
4230         * gnu/java/nio/CharBufferImpl.java
4231         (slice): Fixed implementation.
4232         (subSequence): Better bounds checking.
4233         * gnu/java/nio/MappedByteFileBuffer.java:
4234         Import all needed classes directly.
4235         * java/nio/ByteBuffer.java
4236         (hashCode): New dummy method.
4237         * java/nio/CharBuffer.java
4238         (array_offset): New member variable.
4239         (hasArray): Fixed documentation.
4240         (arrayOffset): Return array_offset.
4242 2003-03-10  2003-02-27  Mohan Embar  <gnustuff@thisiscool.com>
4244         * include/jvm.h: removed declaration of _Jv_ThisExecutable()
4245         setter; made return value of getter const char* instead of char*
4246         * prims.cc: removed all references to _Jv_ThisExecutable().
4247         These are in the platform-specific sections now.
4248         * posix.cc: define platform-specific _Jv_ThisExecutable().
4249         Handle DISABLE_MAIN_ARGS and HAVE_PROC_SELF_EXE cases
4250         * win32.cc: define platform-specific _Jv_ThisExecutable()
4251         using GetModuleFilename()
4252         * java/lang/natRuntime.cc: set gnu.gcj.progname property
4253         to argv[0] instead of _Jv_ThisExecutable()
4255 2003-03-10  Ranjit Mathew  <rmathew@hotmail.com>
4257         * gnu/gcj/runtime/NameFinder.java (usingAddr2name): New flag
4258         that is set if we are using addr2name.awk instead of addr2line.
4259         (NameFinder): Set usingAddr2name if using addr2name.awk.
4260         (getExternalLabel): New native method to convert a method 
4261         name to an external label.
4262         (lookup): Convert name given by addr2line to an external label
4263         before demangling.
4265         * gnu/gcj/runtime/natNameFinder.cc (LABEL_PREFIX): New string
4266         constant representing the prefix attached to method names to
4267         convert them to an external label.
4268         (gnu::gcj::runtime::NameFinder::getExternalLabel): Define 
4269         using LABEL_PREFIX.
4271 2003-03-10  Tom Tromey  <tromey@redhat.com>
4273         * Makefile.in: Rebuilt.
4274         * Makefile.am (GCJ_WITH_FLAGS): Added -Wno-deprecated.
4275         (JC1FLAGS): Removed -Wno-deprecated.
4277 2003-03-10  Michael Koch  <konqueror@gmx.de>
4279         * java/nio/ByteOrder.java
4280         (nativeOrder): Working implementation, added documentation.
4281         (toString): Added documentation.
4283 2003-03-10  Michael Koch  <konqueror@gmx.de>
4285         * java/net/DatagramSocket.java,
4286         java/net/MulticastSocket.java,
4287         java/net/Socket.java,
4288         java/net/URL.java,
4289         java/net/URLConnection.java:
4290         Fixed some documentation tags to make javadoc and friends happy.
4292 2003-03-10  Michael Koch  <koqnueror@gmx.de>
4294         * java/beans/beancontext/BeanContextServicesSupport.java,
4295         java/beans/beancontext/BeanContextSupport.java: New files.
4296         * Makefile.am
4297         (awt_source_files): Added new files.
4298         * Makefile.in: Regenerated.
4300 2003-03-10  Michael Koch  <konqueror@gmx.de>
4302         * java/awt/FocusTraversalPolicy.java
4303         (FocusTraversalPolicy): Documentation added.
4304         (getComponentAfter): Documentation added.
4305         (getComponentBefore): Documentation added.
4306         (getFirstComponent): Documentation added.
4307         (getLastComponent): Documentation added.
4308         (getDefaultComponent): Documentation added.
4309         (getInitialComponent): Documentation added.
4310         * java/awt/ScrollPaneAdjustable.java
4311         (sp): New member variable.
4312         (orientation): New member variable.
4313         (value): New member variable.
4314         (minimum): New member variable.
4315         (maximum): New member variable.
4316         (visibleAmount): New member variable.
4317         (unitIncrement): New member variable.
4318         (blockIncrement): New member variable.
4319         (adjustmentListener): New member variable.
4320         (ScrollPaneAdjustable): Rewrote.
4321         (addAdjustmentListener): New method.
4322         (removeAdjustmentListener): New method.
4323         (getAdjustmentListeners): New method.
4324         (getBlockIncrement): New method.
4325         (getMaximum): New method.
4326         (getMinimum): New method.
4327         (getOrientation): New method.
4328         (getUnitIncrement): New method.
4329         (getValue): New method.
4330         (getVisibleAmount): New method.
4331         (setBlockIncrement): New method.
4332         (setUnitIncrement): New method.
4333         (setMaximum): Implemented.
4334         (setMinimum): Implemented.
4335         (setValue): New method.
4336         (setVisibleAmount): Implemented.
4337         (paramString): New method.
4338         * java/awt/Window.java
4339         (show): Use setVisible(true) instead of super.show().
4340         (hide): Use sevVisible(false) instead of super.hide().
4341         (processWindowEvent): Added cases for WINDOW_GAINED_FOCUS,
4342         WINDOW_LOST_FOCUS and WINDOW_STATE_CHANGED.
4343         (postEvent): Deprecated.
4344         (applyResourceBundle): Deprecated.
4345         (processWindowFocusEvent): New method.
4346         (processWindowStateEvent): New method.
4347         * java/awt/datatransfer/DataFlavor.java: Reindented.
4348         * java/awt/font/TextHitInfo.java
4349         (charIndex): New member variable.
4350         (leadingEdge): New member variable.
4351         (TextHitInfo): New constructor.
4352         (getCharIndex): Implemented.
4353         (isLeadingEdge): Implemented.
4354         (getInsertionIndex): Implemented.
4355         (hashCode): Access charIndex directly.
4356         (equals): Reformated.
4357         (leading): Implemented.
4358         (trailing): Implemented.
4359         (beforeOffset): Implemented.
4360         (afterOffset): Implemented.
4361         (getOtherHit): Implemented.
4362         (getOffsetHit): Implemented.
4363         (toString): Implemented.
4364         * java/awt/image/BufferedImage.java
4365         (BufferedImage): Implements WritableRenderedImage.
4366         (observers): New member variable.
4367         (addTileObserver): New method.
4368         (removeTileObserver): New method.
4370 2003-03-09  Tom Tromey  <tromey@redhat.com>
4372         PR libgcj/9934:
4373         * java/io/natFileDescriptorPosix.cc (available): Fixed arguments
4374         to lseek.  Return 0 if we can't compute the value.
4376 2003-03-03  Michael Koch  <konqueror@gmx.de>
4378         * java/net/NetworkInterface.java: Merged with classpath.
4380 2003-03-03  Tom Tromey  <tromey@redhat.com>
4382         * verify.cc (handle_jsr_insn): Don't fail if `jsr' appears at end
4383         of bytecode.
4384         (handle_ret_insn): Fail if returning to jsr that appears at end of
4385         bytecode.
4387 2003-03-03  Michael Koch  <konqueror@gmx.de>
4389         * Makefile.am
4390         (ordinary_java_source_files):
4391         Added gnu/java/nio/MappedByteFileBuffer.java.
4392         (nat_source_files):
4393         Added gnu/java/nio/natMappedByteFileBuffer.cc.
4394         * Makefile.in: Regenerated.
4396 2003-03-03  Michael Koch  <konqueror@gmx.de>
4398         * java/net/DatagramSocket.java
4399         (connect): Merged comment from classpath.
4400         (receive): Merged documentation from classpath.
4401         * java/net/Socket.java
4402         (setSoTimeout): Clarified documentation.
4403         * java/net/URL.java
4404         (getPath): Merged from classpath.
4405         (getUserInfo): Merged from classpath.
4406         (getQuery): Merged from classpath.
4407         * java/net/URLStreamHandler.java
4408         (toExternalForm): Merged from classpath.
4410 2003-03-02  Mark Wielaard  <mark@klomp.org>
4412         * java/util/Properties.java (load): Only skip line if the first
4413         character is a comment, whitespaces don't count.
4415 2003-03-02  Michael Koch  <konqueror@gmx.de>
4417         * java/net/NetPermission.java:
4418         Merged copyright with classpath.
4420 2003-03-02  Michael Koch  <konqueror@gmx.de>
4422         * java/lang/Package.java:
4423         Remerged from classpath.
4425 2003-03-02  Michael Koch  <konqueror@gmx.de>
4427         * java/net/HttpURLConnection.java
4428         (HTTP_SERVER_ERROR): Deprecated.
4429         * java/net/MulticastSocket.java
4430         (send): Replaced checkMulticast with appropriate checkPermission call,
4431         deprecated.
4432         * java/net/URLDecoder.java
4433         (decode): Deprecated.
4434         * java/net/URLEncoder.java
4435         (encode): Deprecated.
4437 2003-03-02  Michael Koch  <konqueror@gmx.de>
4439         * javax/swing/text/Caret.java
4440         (getMagicCaretPosition): Fixed typo in method name.
4441         * javax/swing/text/DefaultCaret.java
4442         (getMagicCaretPosition): Fixed typo in method name.
4444 2003-03-02  Michael Koch  <konqueror@gmx.de>
4446         * java/awt/List.java
4447         (setMultipleSelections): Deprecated.
4448         (delItem): Deprecated.
4449         * java/awt/MenuComponent.java
4450         (getPeer): Deprecated.
4451         * java/awt/ScrollPane.java
4452         (addNotify): getPeer() is deprecated. Use isDisplayable() instead.
4453         * java/awt/dnd/MouseDragGestureRecognizer.java
4454         (mouseClicked): Added comment.
4455         (mousePressed): Added comment.
4456         (mouseReleased): Added comment.
4457         (mouseEntered): Added comment.
4458         (mouseExited): Added comment.
4459         (mouseDragged): Added comment.
4460         (mouseMoved): Added comment.
4461         * java/awt/event/KeyEvent.java
4462         (KeyEvent): Deprecated.
4463         (setModifiers): Deprecated.
4464         
4465 2003-03-02  Michael Koch  <konqueror@gmx.de>
4467         * gnu/java/nio/FileChannelImpl.java
4468         (fd): Type FileDescriptor instead of int.
4469         (lengthInternal): Removed.
4470         (FileChannelImpl): Fixed arguments, check type of file object.
4471         (size): Made it native.
4472         (implPosition): New native method.
4473         (implTruncate): New native method.
4474         (position): Implemented.
4475         (truncate): Implemented.
4476         (nio_mmap_file): Changed arguments.
4477         (nio_munmap_file): Changed arguments.
4478         (nio_msync): Changed arguments.
4479         * gnu/java/nio/natFileChannelImpl.cc
4480         (lengthInternal): Removed.
4481         (size): New method.
4482         (implPosition): New method.
4483         (implTruncate): New method.
4484         (nio_mmap_file): Changed arguments.
4485         (nio_munmap_file): Changed arguments.
4486         (nio_msync): Changed arguments.
4488 2003-03-02  Michael Koch  <konqueror@gmx.de>
4490         * java/awt/dnd/DropTargetContext.java:
4491         Compile fix: Forgot to commit import.
4492         
4493 2003-03-02  Michael Koch  <konqueror@gmx.de>
4495         * java/awt/Component.java,
4496         java/awt/ScrollPane.java:
4497         Fixed typos.
4499 2003-03-02  Michael Koch  <konqueror@gmx.de>
4501         * java/awt/dnd/DnDEventMulticaster.java: New file.
4502         * java/awt/dnd/DragSource.java
4503         (flavorMap): New member variable.
4504         (dragSourceListener): New member variable.
4505         (dragSourceMotionListener): New member variable.
4506         (getFlavorMap): Implemented.
4507         (createDragGestureRecognizer): Implemented.
4508         (addDragSourceListener): Implemented.
4509         (removeDragSourceListener): Implemented.
4510         (getDragSourceListeners): Implemented.
4511         (addDragSourceMotionListener): Implemented.
4512         (removeDragSourceMotionListener): Implemented.
4513         (getDragSourceMotionListeners): Implemented.
4514         (getListeners): Implemented.
4515         * java/awt/dnd/DragSourceContext.java
4516         (peer): New member variable.
4517         (cursor): New member variable.
4518         (transferable): New member variable.
4519         (trigger): New member variable.
4520         (dragSourceListener): New member variable.
4521         (image): New member variable.
4522         (offset): New member variable.
4523         (DragSourceContext): Implemented.
4524         (getDragSource): Implemented.
4525         (getComponent): Implemented.
4526         (getTrigger): Implemented.
4527         (getSourceActions): Implemented.
4528         (setCursor): Implemented.
4529         (getCursor): Implemented.
4530         (addDragSourceListener): Implemented.
4531         (removeDragSourceListener): Implemented.
4532         (getTransferable): Implemented.
4533         * java/awt/dnd/DropTarget.java
4534         (DropTargetAutoScroller.component): New member variable.
4535         (DropTargetAutoScroller.point): New member variable.
4536         (DropTargetAutoScroller.DropTargetAutoScroller): Implemented.
4537         (DropTargetAutoScroller.updateLocation): Implemented.
4538         (active): Renamed from isActive, defaults to true now.
4539         (component): New member variable.
4540         (flavorMap): New member variable.
4541         (actions): New member variable.
4542         (dropTargetContext): New member variable.
4543         (dropTargetListener): New member variable.
4544         (DropTarget): Implemented.
4545         (getComponent): Implemented.
4546         (setComponent): Implemented.
4547         (setDefaultActions): Implemented.
4548         (getDefaultActions): Implemented.
4549         (setActive): Use active instead of isActive.
4550         (isActive): Use active instead of isActive.
4551         (addDropTargetListener): Implemented.
4552         (removeDropTargetListener): Implemented.
4553         (getFlavorMap): Implemented.
4554         (setFlavorMap): Implemented.
4555         (getDropTargetContext): Implemented.
4556         (createDropTargetContext): Implemented.
4557         (createDropTargetAutoScroller): Implemented.
4558         * java/awt/dnd/DropTargetContext.java
4559         (TransferableProxy.getTransferDataFlavors): Implemented.
4560         (TransferableProxy.isDataFlavorSupported): Implemented.
4561         (TransferableProxy.getTransferData): Implemented.
4562         (dropTarget):  New member variable.
4563         (dtcp): New member variable.
4564         (DropTargetContext): New package private constructor.
4565         (getDropTarget): Implemented.
4566         (getComponent): Implemented.
4567         (addNotify): Implemented.
4568         (removeNotify): Implemented.
4569         (getCurrentDataFlavorsAsList): Implemented.
4570         (isDataFlavorSupported): Implemented.
4571         * java/awt/dnd/MouseDragGestureRecognizer.java
4572         (registerListeners): Implemented.
4573         (unregisterListeners): Implemented.
4574         * Makefile.am
4575         (awt_java_source_files): Added java/awt/dnd/DnDEventMulticaster.java.
4576         * Makefile.in: Regenerated.
4578 2003-03-02  Michael Koch  <konqueror@gmx.de>
4580         * java/awt/Component.java
4581         (eventTypeEnabled): New method.
4582         (dispatchEventImpl): Moved checks for event to eventTypeEnabled.
4583         * java/awt/Container.java
4584         (changeSupport): New member variable.
4585         (addPropertyChangeListener): New methods.
4586         * java/awt/ContainerOrderFocusTraversalPolicy.java
4587         (ContainerOrderFocusTraversalPolicy): Added comment.
4588         (getComponentAfter): Throw exception, documentation added.
4589         (getComponentBefore): Throw exception, documentation added.
4590         (getFirstComponent): Throw exception, documentation added.
4591         (getLastComponent): Throw exception, documentation added.
4592         (getDefaultComponent): Throw exception, documentation added.
4593         * java/awt/EventQueue.java: Reindented.
4594         * java/awt/FocusTraversalPolicy.java:
4595         (FocusTraversalPolicy): Added comment.
4596         (getComponentAfter): Documentation added.
4597         (getComponentBefore): Documentation added.
4598         (getFirstComponent): Documentation added.
4599         (getLastComponent): Documentation added.
4600         (getDefaultComponent): Documentation added.
4601         (getInitialComponent): Documentation added.
4602         * java/awt/ScrollPane.java
4603         (wheelScrollingEnabled): New member variable.
4604         (ScrollPane): Initialize wheelScollingEnabled.
4605         (eventTypeEnabled): New method.
4606         (isWheelScrollingEnabled): New method.
4607         (setWheelScrollingEnabled): New method.
4609 2003-03-02  Michael Koch  <konqueror@gmx.de>
4611         * java/net/DatagramSocket.java
4612         (closed): New member variable.
4613         (close): Use closed variable.
4614         (getInetAddress): No need to call isConnected().
4615         (getPort): No need to call isConnected().
4616         (disconnect): Reset remoteAddress and remotePort, fixed typo.
4617         (isClosed): Reimplemented.
4618         
4619 2003-03-02  Michael Koch  <konqueror@gmx.de>
4621         * configure.in: Added check for memory mapping of files.
4622         * configure: Regenerated.
4623         * config.h.in: Regenerated.
4625 2003-03-01  Jason Thorpe  <thorpej@wasabisystems.com>
4627         * posix-threads.cc: Include <unistd.h> if HAVE_UNISTD_H is defined.
4628         (_Jv_ThreadSetPriority): Test for _POSIX_THREAD_PRIORITY_SCHEDULING.
4630 2003-03-01  Ranjit Mathew  <rmathew@hotmail.com>
4632         * java/io/File.java (normalizePath): Remove trailing separator
4633         on Windows only if path is not of the form "x:\".
4635         * java/io/natFileWin32.cc (WIN32_EPOCH_MILLIS): New constant.
4636         (java::io::File::attr): Change formatting a bit and use
4637         WIN32_EPOCH_MILLIS instead of magic numbers.
4638         (java::io::File::isAbsolute): Path must have at least 3 
4639         characters for a UNC network path.
4640         (java::io::File::init_native): Define.
4641         (java::io::File::performCreate): Likewise.
4642         (java::io::File::performSetReadOnly): Likewise.
4643         (java::io::File::performSetLastModified): Likewise.
4644         (java::io::File::performListRoots): Likewise.
4646 2003-03-01  Tom Tromey  <tromey@redhat.com>
4648         * java/lang/natObject.cc: Don't include assert.h.
4649         (heavy_lock_obj_finalization_proc): Use JvAssert.
4650         (remove_all_heavy): Likewise.
4651         (_Jv_MonitorEnter): Likewise.
4652         (_Jv_MonitorExit): Likewise.
4653         (wait): Likewise.
4655 2003-03-01  Ranjit Mathew  <rmathew@hotmail.com>
4657         * java/io/File (getAbsolutePath): Prefix drive specifier on
4658         Windows for paths starting with a '\'.
4659         (toURL): Make URL more consistent with what Sun's JDK returns.
4661         * java/io/natFileWin32.cc (java::io::File::isAbsolute): Return
4662         true only if the path is a UNC network path or it starts with a
4663         drive specifier.
4665         * java/net/URLStreamHandler.java (parseURL): Correct minor typo.
4666         Be prepared to handle either '/' or '\\' in the file path for
4667         Windows if using the "file" protocol.
4668         Canonicalise the file path if using a relative path in the given
4669         context and the "file" protocol.
4671 2003-03-01  Mohan Embar  <gnustuff@thisiscool.com>
4673         * java/lang/natWin32Process.cc (startProcess): Double-quote each
4674         program array element passed to CreateProcess.
4676 2003-03-01  Tom Tromey  <tromey@redhat.com>
4678         * java/rmi/registry/RegistryHandler.java: Deprecate.
4680 2003-03-01  Tom Tromey  <tromey@redhat.com>
4682         * javax/accessibility/AccessibleEditableText.java,
4683         javax/accessibility/AccessibleHyperlink.java: New versions from
4684         Classpath.
4686         * gnu/java/locale/LocaleInformation_af_ZA.java,
4687         gnu/java/locale/LocaleInformation_ar_AE.java,
4688         gnu/java/locale/LocaleInformation_ar_BH.java,
4689         gnu/java/locale/LocaleInformation_ar_DZ.java,
4690         gnu/java/locale/LocaleInformation_ar_EG.java,
4691         gnu/java/locale/LocaleInformation_ar_IN.java,
4692         gnu/java/locale/LocaleInformation_ar_IQ.java,
4693         gnu/java/locale/LocaleInformation_ar_JO.java,
4694         gnu/java/locale/LocaleInformation_ar_KW.java,
4695         gnu/java/locale/LocaleInformation_ar_LB.java,
4696         gnu/java/locale/LocaleInformation_ar_LY.java,
4697         gnu/java/locale/LocaleInformation_ar_MA.java,
4698         gnu/java/locale/LocaleInformation_ar_OM.java,
4699         gnu/java/locale/LocaleInformation_ar_QA.java,
4700         gnu/java/locale/LocaleInformation_ar_SD.java,
4701         gnu/java/locale/LocaleInformation_ar_SY.java,
4702         gnu/java/locale/LocaleInformation_ar_TN.java,
4703         gnu/java/locale/LocaleInformation_ar_YE.java,
4704         gnu/java/locale/LocaleInformation_be_BY.java,
4705         gnu/java/locale/LocaleInformation_bn_IN.java,
4706         gnu/java/locale/LocaleInformation_br_FR.java,
4707         gnu/java/locale/LocaleInformation_bs_BA.java,
4708         gnu/java/locale/LocaleInformation_ca_ES.java,
4709         gnu/java/locale/LocaleInformation_cs_CZ.java,
4710         gnu/java/locale/LocaleInformation_cy_GB.java,
4711         gnu/java/locale/LocaleInformation_da_DK.java,
4712         gnu/java/locale/LocaleInformation_de_AT.java,
4713         gnu/java/locale/LocaleInformation_de_BE.java,
4714         gnu/java/locale/LocaleInformation_de_CH.java,
4715         gnu/java/locale/LocaleInformation_de_DE.java,
4716         gnu/java/locale/LocaleInformation_de_LU.java,
4717         gnu/java/locale/LocaleInformation_el_GR.java,
4718         gnu/java/locale/LocaleInformation_en_AU.java,
4719         gnu/java/locale/LocaleInformation_en_BW.java,
4720         gnu/java/locale/LocaleInformation_en_CA.java,
4721         gnu/java/locale/LocaleInformation_en_DK.java,
4722         gnu/java/locale/LocaleInformation_en_GB.java,
4723         gnu/java/locale/LocaleInformation_en_HK.java,
4724         gnu/java/locale/LocaleInformation_en_IE.java,
4725         gnu/java/locale/LocaleInformation_en_IN.java,
4726         gnu/java/locale/LocaleInformation_en_NZ.java,
4727         gnu/java/locale/LocaleInformation_en_PH.java,
4728         gnu/java/locale/LocaleInformation_en_SG.java,
4729         gnu/java/locale/LocaleInformation_en_US.java,
4730         gnu/java/locale/LocaleInformation_en_ZA.java,
4731         gnu/java/locale/LocaleInformation_en_ZW.java,
4732         gnu/java/locale/LocaleInformation_es_AR.java,
4733         gnu/java/locale/LocaleInformation_es_BO.java,
4734         gnu/java/locale/LocaleInformation_es_CL.java,
4735         gnu/java/locale/LocaleInformation_es_CO.java,
4736         gnu/java/locale/LocaleInformation_es_CR.java,
4737         gnu/java/locale/LocaleInformation_es_DO.java,
4738         gnu/java/locale/LocaleInformation_es_EC.java,
4739         gnu/java/locale/LocaleInformation_es_ES.java,
4740         gnu/java/locale/LocaleInformation_es_GT.java,
4741         gnu/java/locale/LocaleInformation_es_HN.java,
4742         gnu/java/locale/LocaleInformation_es_MX.java,
4743         gnu/java/locale/LocaleInformation_es_NI.java,
4744         gnu/java/locale/LocaleInformation_es_PA.java,
4745         gnu/java/locale/LocaleInformation_es_PE.java,
4746         gnu/java/locale/LocaleInformation_es_PR.java,
4747         gnu/java/locale/LocaleInformation_es_PY.java,
4748         gnu/java/locale/LocaleInformation_es_SV.java,
4749         gnu/java/locale/LocaleInformation_es_US.java,
4750         gnu/java/locale/LocaleInformation_es_UY.java,
4751         gnu/java/locale/LocaleInformation_es_VE.java,
4752         gnu/java/locale/LocaleInformation_et_EE.java,
4753         gnu/java/locale/LocaleInformation_eu_ES.java,
4754         gnu/java/locale/LocaleInformation_fa_IR.java,
4755         gnu/java/locale/LocaleInformation_fi_FI.java,
4756         gnu/java/locale/LocaleInformation_fo_FO.java,
4757         gnu/java/locale/LocaleInformation_fr_BE.java,
4758         gnu/java/locale/LocaleInformation_fr_CA.java,
4759         gnu/java/locale/LocaleInformation_fr_CH.java,
4760         gnu/java/locale/LocaleInformation_fr_FR.java,
4761         gnu/java/locale/LocaleInformation_fr_LU.java,
4762         gnu/java/locale/LocaleInformation_ga_IE.java,
4763         gnu/java/locale/LocaleInformation_gd_GB.java,
4764         gnu/java/locale/LocaleInformation_gl_ES.java,
4765         gnu/java/locale/LocaleInformation_gv_GB.java,
4766         gnu/java/locale/LocaleInformation_he_IL.java,
4767         gnu/java/locale/LocaleInformation_hi_IN.java,
4768         gnu/java/locale/LocaleInformation_hr_HR.java,
4769         gnu/java/locale/LocaleInformation_hu_HU.java,
4770         gnu/java/locale/LocaleInformation_id_ID.java,
4771         gnu/java/locale/LocaleInformation_it_CH.java,
4772         gnu/java/locale/LocaleInformation_it_IT.java,
4773         gnu/java/locale/LocaleInformation_iw_IL.java,
4774         gnu/java/locale/LocaleInformation_ja_JP.java,
4775         gnu/java/locale/LocaleInformation_ka_GE.java,
4776         gnu/java/locale/LocaleInformation_kl_GL.java,
4777         gnu/java/locale/LocaleInformation_ko_KR.java,
4778         gnu/java/locale/LocaleInformation_kw_GB.java,
4779         gnu/java/locale/LocaleInformation_lt_LT.java,
4780         gnu/java/locale/LocaleInformation_lv_LV.java,
4781         gnu/java/locale/LocaleInformation_mi_NZ.java,
4782         gnu/java/locale/LocaleInformation_mk_MK.java,
4783         gnu/java/locale/LocaleInformation_mr_IN.java,
4784         gnu/java/locale/LocaleInformation_mt_MT.java,
4785         gnu/java/locale/LocaleInformation_nl_BE.java,
4786         gnu/java/locale/LocaleInformation_nl_NL.java,
4787         gnu/java/locale/LocaleInformation_nn_NO.java,
4788         gnu/java/locale/LocaleInformation_no_NO.java,
4789         gnu/java/locale/LocaleInformation_oc_FR.java,
4790         gnu/java/locale/LocaleInformation_pl_PL.java,
4791         gnu/java/locale/LocaleInformation_pt_BR.java,
4792         gnu/java/locale/LocaleInformation_pt_PT.java,
4793         gnu/java/locale/LocaleInformation_ro_RO.java,
4794         gnu/java/locale/LocaleInformation_ru_RU.java,
4795         gnu/java/locale/LocaleInformation_ru_UA.java,
4796         gnu/java/locale/LocaleInformation_se_NO.java,
4797         gnu/java/locale/LocaleInformation_sk_SK.java,
4798         gnu/java/locale/LocaleInformation_sl_SI.java,
4799         gnu/java/locale/LocaleInformation_sq_AL.java,
4800         gnu/java/locale/LocaleInformation_sr_YU.java,
4801         gnu/java/locale/LocaleInformation_sv_FI.java,
4802         gnu/java/locale/LocaleInformation_sv_SE.java,
4803         gnu/java/locale/LocaleInformation_ta_IN.java,
4804         gnu/java/locale/LocaleInformation_te_IN.java,
4805         gnu/java/locale/LocaleInformation_tg_TJ.java,
4806         gnu/java/locale/LocaleInformation_tl_PH.java,
4807         gnu/java/locale/LocaleInformation_tr_TR.java,
4808         gnu/java/locale/LocaleInformation_uk_UA.java,
4809         gnu/java/locale/LocaleInformation_ur_PK.java,
4810         gnu/java/locale/LocaleInformation_uz_UZ.java,
4811         gnu/java/locale/LocaleInformation_vi_VN.java,
4812         gnu/java/locale/LocaleInformation_yi_US.java,
4813         gnu/java/locale/LocaleInformation_zh_CN.java,
4814         gnu/java/locale/LocaleInformation_zh_HK.java,
4815         gnu/java/locale/LocaleInformation_zh_SG.java,
4816         gnu/java/locale/LocaleInformation_zh_TW.java: Updated copyright
4817         info; from Classpath.
4819         * gnu/awt/xlib/XPanelPeer.java (beginLayout, endLayout,
4820         isPaintPending): New methods.
4821         * gnu/awt/xlib/XFramePeer.java (getState, setState,
4822         setMaximizedBounds): New methods.
4823         (beginLayout, endLayout, isPaintPending): Likewise.
4824         * gnu/awt/xlib/XCanvasPeer.java (isFocusable): New method.
4825         (requestFocus): Likewise.
4826         (isObscured): Likewise.
4827         (canDetermineObscurity): Likewise.
4828         (coalescePaintEvent): Likewise.
4829         (updateCursorImmediately): Likewise.
4830         (createVolatileImage): Likewise.
4831         (handlesWheelScrolling): Likewise.
4832         (createBuffers): Likewise.
4833         (getBackBuffer): Likewise.
4834         (flip): Likewise.
4835         (destroyBuffers): Likewise.
4837         * Makefile.in: Rebuilt.
4838         * Makefile.am (awt_java_source_files): Added DropTargetPeer.java,
4839         RobotPeer.java.
4840         * gnu/java/awt/GLightweightPeer.java,
4841         gnu/java/awt/peer/gtk/GtkChoicePeer.java,
4842         gnu/java/awt/peer/gtk/GtkComponentPeer.java,
4843         gnu/java/awt/peer/gtk/GtkContainerPeer.java,
4844         gnu/java/awt/peer/gtk/GtkFramePeer.java,
4845         gnu/java/awt/peer/gtk/GtkPopupMenuPeer.java,
4846         gnu/java/awt/peer/gtk/GtkTextComponentPeer.java,
4847         java/awt/dnd/peer/DragSourceContextPeer.java,
4848         java/awt/dnd/peer/DropTargetContextPeer.java,
4849         java/awt/peer/ButtonPeer.java,
4850         java/awt/peer/CheckboxMenuItemPeer.java,
4851         java/awt/peer/CheckboxPeer.java, java/awt/peer/ChoicePeer.java,
4852         java/awt/peer/ComponentPeer.java,
4853         java/awt/peer/ContainerPeer.java, java/awt/peer/DialogPeer.java,
4854         java/awt/peer/FileDialogPeer.java, java/awt/peer/FramePeer.java,
4855         java/awt/peer/LabelPeer.java, java/awt/peer/ListPeer.java,
4856         java/awt/peer/MenuBarPeer.java,
4857         java/awt/peer/MenuComponentPeer.java,
4858         java/awt/peer/MenuItemPeer.java, java/awt/peer/MenuPeer.java,
4859         java/awt/peer/PopupMenuPeer.java,
4860         java/awt/peer/ScrollPanePeer.java,
4861         java/awt/peer/ScrollbarPeer.java, java/awt/peer/TextAreaPeer.java,
4862         java/awt/peer/TextComponentPeer.java,
4863         java/awt/peer/TextFieldPeer.java, java/awt/peer/WindowPeer.java:
4864         New versions from Classpath.
4865         * java/awt/dnd/peer/DropTargetPeer.java: New file from Classpath.
4866         * java/awt/peer/RobotPeer.java: Likewise.
4868 2003-03-01  Mark Wielaard  <mark@klomp.org>
4870         * java/io/ObjectInputStream.java: Reindent.
4871         * java/io/ObjectOutputStream.java: Likewise.
4873 2003-02-28  Hans Boehm  <Hans.Boehm@hp.com>
4875         * java/lang/reflect/natMethod.cc (_Jv_CallAnyMethodA): Allocate a full
4876         jvalue for each argument. Simplify.
4877         * testsuite/libjava.jni/calls.c (docall),
4878         testsuite/libjava.jni/calls.java (longpb_f): check for argument
4879         misalignment.
4881 2003-02-28  Mark Wielaard  <mark@klomp.org>
4883         * Makefile.am (nat_source_files): Remove
4884         java/io/natObjectOutputStream.cc.
4885         * Makefile.in: Regenerated.
4886         * mauve-libgcj: Don't exclude java.io.ObjectInputOutput tests.
4887         * java/io/ObjectStreamField.java (typename): New field.
4888         (ObjectStreamField(String, Class)): Initialize new field.
4889         (ObjectStreamField(String, String)): New Constructor.
4890         (getTypeCode): Use new field.
4891         (getTypeString): Use new field.
4892         * java/io/ObjectOutputStream.java (writeObject): Rethrow fatal
4893         ObjectStreamExceptions. Remember and reset old BlockDataMode.
4894         Handle reading of Proxy classes. Never drain(), just write
4895         TC_ENDBLOCKDATA. Rethrow ObjectStreamExceptions.
4896         (drain): Check writeDataAsBlocks before calling writeBlockDataHeader.
4897         (flush): Call flush(), not just drain().
4898         (writeBoolean): Always use blockDataOutput.
4899         (writeByte): Likewise.
4900         (writeShort): Likewise.
4901         (writeChar): Likewise.
4902         (writeInt): Likewise.
4903         (writeLong): Likewise.
4904         (writeFloat): Likewise.
4905         (writeDouble): Likewise.
4906         (writeBytes): Likewise.
4907         (putfield (put(String,Object))): Throw IllegalArgumentException if
4908         field cannot be found.
4909         (putfield (write(ObjectOutput))): Remember old BlockDataMode.
4910         (writeArraySizeAndElements): Write byte[] in one go.
4911         (writeFields): Write TC_ENDBLOCKDATA when call_write_method, otherwise
4912         set BlockDataMode to false.
4913         (annotateProxyClass): New method.
4914         (defaultProtocolVersion): Now defaults to PROTOCOL_VERSION_2
4915         (getField): No longer native.
4916         (getMethod): Likewise.
4917         (setBlockDataMode): Always drain() on switch, return old mode.
4918         (static): New static code block.
4919         * java/io/natObjectOutputStream.cc: Removed.
4920         * java/io/ObjectInputStream.java (getField): No longer native.
4921         (getMethod): Likewise.
4922         (readObject): Remember and reset old BlockDataMode. Track whether
4923         object is consumed. Handle TC_ENDBLOCKDATA, TC_PROXYCLASSDESC and
4924         TC_LONGSTRING.
4925         (defaultReadObject): Set BlockDataMode to false during readFields.
4926         (resolveClass): Create new SecurityManager if necessary.
4927         Use Class.forName() if null ClassLoader found.
4928         (read(byte[],int,int): Copy remaining bytes to data before calling
4929         readNextBlock().
4930         (readFields): Set and reset BlockDataMode on call_read_method.
4931         Catch NoSuchFieldErrors.
4932         (setBlockDataMode): Return old mode.
4933         (static): New static code block.
4934         * java/io/natObjectInputStream.cc (getField): Removed.
4935         (getMethod): Likewise.
4937 2003-02-27  Michael Koch  <konqueror@gmx.de>
4939         * java/beans/Beans.java,
4940         java/beans/FeatureDescriptor.java
4941         java/beans/PropertyEditorManager.java:
4942         Reformated to GNU style.
4944 2003-02-25  Michael Koch  <konqueror@gmx.de>
4946         * gnu/java/nio/MappedByteFileBuffer.java,
4947         gnu/java/nio/natMappedByteFileBuffer.cc:
4948         New files, both are not compiled yet to get not noncompiling CVS.
4950 2003-02-24  Tom Tromey  <tromey@redhat.com>
4952         * java/util/prefs/AbstractPreferences.java (isUserNode):
4953         Implemented.
4955 2003-02-24  Tom Tromey  <tromey@redhat.com>
4957         * java/lang/ClassLoader.java (defineClass(byte[],int,int)):
4958         Deprecate.
4959         * java/lang/Thread.java (resume): Deprecate.
4960         * java/io/ByteArrayOutputStream.java (toString(int)): Fixed typo
4961         in @deprecated.
4963 2003-02-23  Tom Tromey  <tromey@redhat.com>
4965         * Makefile.in: Rebuilt.
4966         * Makefile.am (JC1FLAGS): Added -Wno-deprecated.
4968 2003-02-23  Tom Tromey  <tromey@redhat.com>
4970         * java/lang/natRuntime.cc (libraries_size, libraries_count,
4971         libraries): Removed.
4972         (add_library): Removed.
4973         (_load): Don't call add_library.
4974         (loadLibraryInternal): Likewise.
4975         (init): Likewise.
4976         (lookup_data): New struct.
4977         (find_symbol): New function.
4978         (_Jv_FindSymbolInExecutable): Use it.
4980 2002-02-21  Anthony Green  <green@redhat.com>
4982         * java/lang/Thread.java (Thread): New constructor taking stack
4983         size parameter (ignored for now).
4984         * Many methods: Merged GNU Classpath documentation.
4986         * java/lang/Class.java (finalize): throws a Throwable.
4988 2003-02-21  Mark Wielaard  <mark@klomp.org>
4990         * java/util/zip/ZipEntry.java (setComment): Don't check length when
4991         argument is null.
4993 2003-02-21  Mark Wielaard  <mark@klomp.org>
4995         * java/util/zip/ZipEntry.java (ZipEntry(String)): When name is bigger
4996         then 65535 chars throw IllegalArgumentException.
4998 2003-02-21  Mark Wielaard  <mark@klomp.org>
5000         * java/util/zip/ZipFile.java (finalize): New method.
5002 2003-02-21  Michael Koch  <konqueror@gmx.de>
5004         * gnu/java/nio/natSocketChannelImpl.cc:
5005         Reverse logic for DISABLE_JAVA_NET. Thanks to Krister Walfridsson
5006         <cato@df.lth.se> for pointing to it.
5008 2003-02-20  Raif S. Naffah <raif@fl.net.au>
5010         * java/math/BigInteger.java (euclidInv): Take result array as an
5011         argument.  Updated all callers.
5012         (modInverse): Removed unused variables.
5014 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
5016         * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
5017         config.status.
5018         * configure: Rebuilt.
5020 2003-02-19  Michael Koch  <konqueror@gmx.de>
5022         * gnu/java/nio/natSocketChannelImpl.cc:
5023         Added support for platforms without network support.
5025 2003-02-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5027         * gnu/gcj/runtime/natStackTrace.cc: Include platform.h immediately
5028         after config.h.  Use <> for consistency.
5029         * java/lang/natObject.cc: Likewise.
5030         * java/lang/natRuntime.cc: Likewise.
5031         * java/lang/natSystem.cc: Likewise.
5032         * java/util/natTimeZone.cc: Likewise.
5033         * win32.cc: Likewise.
5034         * include/posix.h (fcntl, socket, connect, close, bind, accept,
5035         listen, write, read): Undef to avoid interference from OS macros.
5037 2003-02-19  Michael Koch  <konqueror@gmx.de>
5039         * gnu/java/nio/ByteBufferImpl.java
5040         (ByteBufferImpl): Renamed two variables.
5041         * gnu/java/nio/CharBufferImpl.java
5042         (CharBufferImpl): Renamed two variables.
5043         * gnu/java/nio/DoubleBufferImpl.java
5044         (DoubleBufferImpl): Renamed two variables.
5045         * gnu/java/nio/FloatBufferImpl.java
5046         (FloatBufferImpl): Renamed two variables.
5047         * gnu/java/nio/IntBufferImpl.java
5048         (IntBufferImpl): Renamed two variables.
5049         * gnu/java/nio/LongBufferImpl.java
5050         (LongBufferImpl): Renamed two variables.
5051         * gnu/java/nio/ShortBufferImpl.java
5052         (ShortBufferImpl): Renamed two variables.
5053         * java/nio/CharBuffer.java
5054         (wrap): Fixed arguments to CharBufferImpl constructor.
5055         (hasArray): Only not read-only buffers have backing arrays.
5056         (length): Documentation added.
5057         (subSequence): Documentation added.
5058         * java/nio/DoubleBuffer.java
5059         (hasArray): Only not read-only buffers have backing arrays.
5060         * java/nio/FloatBuffer.java
5061         (hasArray): Only not read-only buffers have backing arrays.
5062         * java/nio/IntBuffer.java
5063         (hasArray): Only not read-only buffers have backing arrays.
5064         * java/nio/LongBuffer.java
5065         (hasArray): Only not read-only buffers have backing arrays.
5066         * java/nio/ShortBuffer.java
5067         (hasArray): Only not read-only buffers have backing arrays.
5068         
5069 2003-02-19  Michael Koch  <konqueror@gmx.de>
5071         * javax/accessibility/AccessibleContext.java
5072         (ACCESSIBLE_DESCRIPTION_PROPERTY): Fixed typo.
5074 2003-02-19  Michael Koch  <konqueror@gmx.de>
5076         * java/awt/ScrollPaneAdjustable.java: Reformated.
5078 2003-02-19  Michael Koch <konqueror@gmx.de>
5080         * gnu/awt/j2d/Graphics2DImpl.java
5081         (getFontRenderContext): New method.
5082         (drawGlyphVector): New method.
5083         * java/awt/Graphics2D.java
5084         (getFontRenderContext): New abstract method.
5085         (drawGlyphVector): New abstract method.
5086         
5087 2003-02-18  Hans Boehm  <Hans.Boehm@hp.com>
5089         * gnu/awt/xlib/XToolkit.java (getFontMetrics): initialize
5090         if necessary.
5091         
5092         * gnu/java/awt/peer/gtk/GtkButtonPeer.java,
5093         gnu/java/awt/peer/gtk/GtkTextAreaPeer.java,
5094         gnu/java/awt/peer/gtk/GtkTextFieldPeer.java,
5095         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkButtonPeer.c,
5096         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextAreaPeer.c,
5097         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextFieldPeer.c
5098         (setFont, gtkSetFont): add.
5099         gnu/java/awt/peer/gtk/GtkComponentPeer.java (GtkComponentPeer):
5100         Propagate font to peer.  (setFont): add FIXME comment.
5102         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextAreaPeer.c
5103         (gtkTextGetSize): fix height, width computation.
5105         * gnu/java/awt/peer/gtk/GtkFontPeer.java (GtkFontPeer):
5106         Make X font name a bit less bogus.
5108         * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkScrollBarPeer.c
5109         (post_adjustment_event): Pass on GTK_SCROLL_NONE.
5111         * java/awt/Scrollbar.java (setValues): Fix visibleAmount range check.
5112         (processAdjustmentEvent): Adjust value.
5114         * java/awt/FlowLayout.java (layoutContainer) Fix 2 indexing and one
5115         logic errors.
5117         * java/awt/Component.java (setVisible, show, hide): Call show and
5118         hide methods in subclasses.
5119         (getPreferredSize): don't set prefSize before we have peer.
5121         * java/awt/TextArea.java, java/awt/TextField.java (getPreferredSize):
5122         Guess (0,0) if we don't have peer.
5125 2003-02-18  Michael Koch  <konqueror@gmx.de>
5127         * java/nio/channels/FileChannel.java
5128         (toString): New implementation, added documentation.
5129         (map): Added exception documentation.
5130         (size): Added exception documentation.
5131         (write): New methods, documentation work.
5132         (read): New methods, documentation work.
5133         (implCloseChannel): Rewrote exception documentation.
5134         (force): Throws IOException, added documentation.
5135         (lock): New methods.
5136         (tryLock): New methods.
5137         (position): New methods.
5138         (transferTo): New method.
5139         (transferFrom): New method.
5140         (truncate): New method.
5141         * java/nio/channels/spi/SelectorProvider.java
5142         (provider): Implemented.
5143         * Makefile.am
5144         (ordinary_java_source_files): Added the following files:
5145         gnu/java/nio/DatagramChannelImpl.java
5146         gnu/java/nio/FileChannelImpl.java
5147         gnu/java/nio/PipeImpl.java
5148         gnu/java/nio/SelectionKeyImpl.java
5149         gnu/java/nio/SelectorImpl.java
5150         gnu/java/nio/SelectorProviderImpl.java
5151         gnu/java/nio/ServerSocketChannelImpl.java
5152         gnu/java/nio/SocketChannelImpl.java
5153         java/nio/channels/FileLock.java
5154         (nat_java_source_files): Added the following files:
5155         gnu/java/nio/natFileChannelImpl.cc
5156         gnu/java/nio/natSelectorImpl.cc
5157         gnu/java/nio/natSocketChannelImpl.cc
5158         * Makefile.in: Regenerated.
5160 2003-02-17  Tom Tromey  <tromey@redhat.com>
5162         * java/awt/image/ColorModel.java: Re-merged with Classpath.
5163         * java/awt/image/ImageFilter.java: Likewise.
5165 2003-02-17  Raif S. Naffah <raif@fl.net.au>
5167         * java/math/BigInteger.java (euclidInv): Return array of
5168         `BigInteger's.  Changed all callers.
5170 2003-02-17  Ranjit Mathew  <rmathew@hotmail.com>
5172         * java/util/Properties.java (store): Move the code formerly in
5173         list(), into this method.
5174         (list (PrintStream)): Just call list (PrintWriter) with a 
5175         PrintWriter object constructed from the given PrintStream object.
5176         (list (PrintWriter)): Emulate the output of Properties.list()
5177         as found in JDK 1.3/1.4.
5179 2003-02-17  Michael Koch  <konqueror@gmx.de>
5181         * java/net/DatagramSocket.java
5182         (connect): Merged with classpath.
5183         (disconnect): Merged documentation with classpath.
5184         (receice): Merged documentation with classpath.
5185         (send): Merged documentation with classpath.
5186         
5187 2003-02-17  Michael Koch  <konqueror@gmx.de>
5189         * java/awt/dnd/DragSourceContext.java
5190         (addDragSourceListener): Added documentation.
5191         * java/awt/dnd/DragSourceDragEvent.java
5192         (serialVersionUID): New member variable.
5193         (getDropAction): Reformated.
5194         * java/awt/dnd/DragSourceDropEvent.java
5195         (serialVersionUID): New member variable.
5196         (dropSuccess): Renamed from success for serialization issues.
5197         * java/awt/dnd/DragSourceEvent.java
5198         (serialVersionUID): New member variable.
5199         * java/awt/dnd/DropTarget.java
5200         (serialVersionUID): New member variable.
5201         (DropTarget): Implemented, documentation reworked.
5202         (setComponent): Documentation added.
5203         (getComponent): Documentation added.
5204         (setDefaultActions): Documentation added.
5205         (getDefaultActions): Documentation added.
5206         (addDropTargetListener): Documentation added.
5207         * java/awt/dnd/DropTargetContext.java
5208         (DropTargetContext): Documentation added.
5209         (TransferableProxy.TransferableProxy): New method.
5210         (dropComplete): Fixed documentation.
5211         (getTransferable): Fixed documentation.
5212         (createTransferableProxy): Implemented.
5213         * java/awt/dnd/DropTargetDragEvent.java
5214         (DropTargetDragEvent): Documentation added.
5215         (serialVersionUID): New member variable.
5216         (DropTargetDragEvent): Throw exceptions, documentation added.
5217         (acceptDrag): Implemented.
5218         (getCurrentDataFlavors): Implemented.3yy
5219         (getCurrentDataFlavorsAsList): Implemented.
5220         (isDataFlavorSupported): Implemented.
5221         (rejectDrag): Implemented.
5222         * java/awt/dnd/DropTargetDropEvent.java
5223         (DropTargetDropEvent): Documentation added.
5224         (serialVersionUID): New member variable.
5225         (actions): Renamed from srcActions for serialization issues.
5226         (isLocalTx): Renamed from isLocalTx for serialization issues.
5227         (DropTargetDropEvent): New implementation, throw exceptions,
5228         documentation added.
5229         (getCurrentDataFlavors): Implemented.
5230         (getCurrentDataFlavorsAsList): Implemented.
5231         (isDataFlavorSupported): Implemented.
5232         (getSourceActions): Implemented.
5233         (getDropAction): Implemented.
5234         (getTransferable): Implemented.
5235         (acceptDrop): Implemented.
5236         (rejectDrop): Implemented.
5237         * java/awt/dnd/DropTargetListener.java
5238         (drop): Fixed documentation.
5239         * java/awt/dnd/MouseDragGestureRecognizer.java
5240         (MouseDragGestureRecognizer): Documentation added.
5242 2003-02-17  Michael Koch  <konqueror@gmx.de>
5244         * java/awt/font/FontRenderContext.java,
5245         java/awt/font/ShapeGraphicAttribute.java,
5246         java/awt/font/MultipleMaster.java,
5247         java/awt/font/TransformAttribute.java,
5248         java/awt/font/GlyphJustificationInfo.java,
5249         java/awt/font/LineBreakMeasurer.java,
5250         java/awt/font/TextMeasurer.java,
5251         java/awt/font/TextLayout.java,
5252         java/awt/font/LineMetrics.java,
5253         java/awt/font/TextAttribute.java,
5254         java/awt/font/GlyphMetrics.java,
5255         java/awt/font/OpenType.java,
5256         java/awt/font/GlyphVector.java,
5257         java/awt/font/GraphicAttribute.java,
5258         java/awt/font/ImageGraphicAttribute.java,
5259         java/awt/font/NumericShaper.java: New files.
5260         * Makefile.am
5261         (awt_java_source_files): Added the following files:
5262         java/awt/font/FontRenderContext.java
5263         java/awt/font/ShapeGraphicAttribute.java
5264         java/awt/font/MultipleMaster.java
5265         java/awt/font/TransformAttribute.java
5266         java/awt/font/GlyphJustificationInfo.java
5267         java/awt/font/LineBreakMeasurer.java
5268         java/awt/font/TextMeasurer.java
5269         java/awt/font/TextLayout.java
5270         java/awt/font/LineMetrics.java
5271         java/awt/font/TextAttribute.java
5272         java/awt/font/GlyphMetrics.java
5273         java/awt/font/OpenType.java
5274         java/awt/font/GlyphVector.java
5275         java/awt/font/GraphicAttribute.java
5276         java/awt/font/ImageGraphicAttribute.java
5277         java/awt/font/NumericShaper.java
5278         * Makefile.in: Regenerated.
5280 2003-02-17  Michael Koch  <konqueror@gmx.de>
5282         * java/awt/print/Paper.java
5283         (Paper): Implements Cloneable.
5284         * java/awt/print/PrinterJob.java
5285         (setJobName): Return value must be void.
5286         (print): Throws PrinterException.
5287         
5288 2003-02-16  Tom Tromey  <tromey@redhat.com>
5290         * verify.cc (_Jv_BytecodeVerifier::pop_jump): Removed unused
5291         variable.
5293 2003-02-15  Michael Koch  <konqueror@gmx.de>
5295         * java/awt/datatransfer/DataFlavor.java
5296         (isRepresentationClassByteBuffer): Removed try-catch block.
5297         (isRepresentationClassCharBuffer): Removed try-catch block.
5298         (isRepresentationClassReader): Removed try-catch block.
5300 2003-02-15  Jesse Rosenstock  <jmr@ugcs.caltech.edu>
5302         * java/nio/charset/Charset.java
5303         (isRegistered): Fixed method args and implementation.
5304         * java/nio/charset/CharsetEncoder.java
5305         (unmappableCharacterAction): New method.
5307 2003-02-15  Michael Koch  <konqueror@gmx.de>
5309         * java/awt/CheckboxMenuItem.java
5310         (CheckBoxMenuItem): Dont implement Serializable.
5311         (getListeners): New method,
5312         (getItemListeners): New method.
5313         * java/awt/Choice.java
5314         (getListeners): New method,
5315         (getItemListeners): New method.
5316         * java/awt/Container.java
5317         (getListeners): Added exception documentation.
5318         (setFocusTraversalKeys): Throw exceptions, added documentattion.
5319         (getFocusTraversalKeys): Added documentation.
5320         (areFocusTraversalKeysSet): Added documentation.
5321         (applyComponentOrientation): Added documentation.
5322         * java/awt/ContainerOrderFocusTraversalPolicy.java
5323         (implicitDownCycleTraversal): Renamed from downCycle for
5324         serialization.
5325         (ContainerOrderFocusTraversalPolicy): Added documentation.
5326         (accept): Reformated.
5327         * java/awt/Dialog.java
5328         (Dialog): Dont implement Serializable.
5329         (Dialog): Added documentation.
5330         * java/awt/Font.java
5331         (Font): Dont use absolute class name.
5332         * java/awt/Frame.java
5333         (Frame): Font implement Serializable.
5334         * java/awt/List.java
5335         (getListeners): New method,
5336         (getActionListeners): New method.       
5337         (getItemListeners): New method.
5338         * java/awt/Menu.java
5339         (countItems): New deprecated method.
5340         * java/awt/Scrollbar.java
5341         (getListeners): New method,
5342         (getAdjustmentListeners): New method,
5343         * java/awt/TextComponent.java
5344         (getListeners): New method,
5345         (getTextListeners): New method,
5346         * java/awt/TextField.java
5347         (getListeners): New method,
5348         (getActionListeners): New method.       
5349         * java/awt/Window.java
5350         (windowFocusListener): New member variable.
5351         (windowStateListener): New member variable.
5352         (getWindowFocusListeners): New method.
5353         (getWindowStateListeners): New method.
5354         (addWindowFocusListener): New method.
5355         (addWindowStateListener): New method.
5356         (removeWindowFocusListener): New method.
5357         (removeWindowStateListener): New method.
5358         * java/awt/datatransfer/DataFlavor.java
5359         (isRepresentationClassByteBuffer): New method.
5360         (isRepresentationClassCharBuffer): New method.
5361         (isRepresentationClassReader): New method.
5363 2003-02-14  Mark Wielaard  <mark@klomp.org>
5365         * java/math/BigDecimal.java (BigDecimal(String)): Always set scale to
5366         zero when there is an exponent and the significant is zero.
5367         (divide): Always set scale to newScale even in special ZERO case.
5369 2003-02-14  Tom Tromey  <tromey@redhat.com>
5371         * java/lang/System.java (properties): Use Properties.clone.
5372         (setProperties): Likewise.
5374 2003-02-14  Michael Koch  <konqueror@gmx.de>
5376         * gnu/java/nio/natServerSocketChannelImpl.cc: Removed.
5377         * gnu/java/nio/ServerSocketChannelImpl.java
5378         (SocketAccept): Removed.
5379         (accept): Commented out use of SocketAccept.
5381 2003-02-13  Tom Tromey  <tromey@redhat.com>
5383         * verify.cc (state::seen_subrs): New field.
5384         (state::state): Initialize it.
5385         (state::clean_subrs): New method.
5386         (state::~state): Call it.
5387         (state::copy): Copy subroutine list.
5388         (state::add_subr): New method.
5389         (state::merge): Only register a change if the current subroutine
5390         hasn't yet been noted.
5392 2003-02-13  Mark Wielaard  <mark@klomp.org>
5394         * java/io/InputStreamReader.java (getEncoding): Return null when
5395         closed.
5396         * java/io/OutputStreamWriter.java (getEncoding): Likewise.
5398 2003-02-13  Mark Wielaard  <mark@klomp.org>
5400         * java/util/zip/InflaterInputStream.java (read): Return zero when len
5401         is zero.
5403 2003-02-13  Mark Wielaard  <mark@klomp.org>
5405         * java/io/BufferedOutputStream.java (write(int)): Only flush when
5406         next byte cannot be buffered.
5408 2003-02-13  Michael Koch  <konqueror@gmx.de>
5410         * java/awt/Label.java
5411         (Label): Don't implement Serializable directly.
5412         (addNotify): Fixed typo in documentation.
5413         * java/awt/List.java
5414         (List): Don't implement Serializable directly.
5415         * java/awt/PopupMenu.java
5416         (PopupMenu): Don't implement Serializable directly.
5417         * java/awt/ScrollPane.java
5418         (ScrollPane): Don't implement Serializable directly.
5419         * java/awt/Scrollbar.java
5420         (Scrollbar): Don't implement Serializable directly.
5421         * java/awt/TextArea.java
5422         (preferredSize): Fixed method arguments.
5423         * java/awt/TextField.java
5424         (TextField): Don't implement Serializable directly.
5425         * java/awt/color/ICC_ColorSpace.java
5426         (fromCIOXYZ): Documentation added.
5427         (getMinValue): Documentation added.
5428         (getMaxValue): Documentation added.
5429         * java/awt/datatransfer/DataFlavor.java
5430         (isMimeTypeEqual): May not be final.
5431         (clone): Throws CloneNotSupportedException.
5432         (getReaderForText): Don't throws UnsupportedEncodingException.
5434 2003-02-13  Michael Koch  <konqueror@gmx.de>
5436         * gnu/java/awt/peer/gtk/GdkGraphics.java
5437         (drawString): New stubbed method.
5438         * java/awt/Graphics.java
5439         (drawString): New method.
5441 2003-02-13  Casey Marshall  <rsdio@metastatic.org>
5443         PR libgcj/9271:
5444         * java/security/SecureRandom.java (next): Avoid bias in results.
5446 2003-02-13  Michael  <konqueror@gmx.de>
5448         * gnu/java/nio/FileChannelImpl.java
5449         (lengthInternal): Must be native.
5450         (size): Check if channel is already closed.
5451         (implCloseChannel): Reformated.
5452         (read): w was unused, removed it.
5453         (read): Removed.
5454         (read): New method.
5455         (write): New method.
5456         (map): Check arguments.
5457         (force): Throws IOException, check if channel is closed.
5458         (transferTo): New method.
5459         (transferFrom): New method.
5460         (lock): New method.
5461         (tryLock): New method.
5462         (position): New method.
5463         (truncate): New method.
5464         (nio_mmap_file): Uncommented.
5465         (nio_munmap_file): Uncommented.
5466         (nio_msync): Uncommented.
5467         * gnu/java/nio/natFileChannelImpl.cc: New file.
5468         
5469 2003-02-13  Michael Koch  <konqueror@gmx.de>
5471         * java/nio/ByteBuffer.java
5472         (endian): New member variable.
5473         (get): New methods.
5474         (equals): New method.
5475         (compareTo): New method.
5476         (order): New methods.
5477         (compact): New method.
5478         (isDirect): New method.
5479         (slice): New method.
5480         (duplicate): New method.
5481         (asReadOnlyBuffer): New method.
5482         (asCharBuffer): New method.
5483         (asDoubleBuffer): New method.
5484         (asFloatBuffer): New method.
5485         (asIntBuffer): New method.
5486         (asLongBuffer): New method.
5487         (asShortBuffer): New method.
5488         (get*): New methods.
5489         (put*): New methods.
5490         (toString): New method.
5491         * java/nio/CharBuffer.java
5492         (CharBuffer): Implement Comparable instead of Cloneable.
5493         (get): May not be final.
5494         (put): May not be final.
5495         
5496 2002-02-13  Ranjit Mathew  <rmathew@hotmail.com>
5498         * gnu/gcj/runtime/NameFinder.java (createStackTraceElement): Use
5499         lastIndexOf( ) instead of indexOf( ) to find the colon before
5500         the line number, because Win32 file names might contain a 
5501         drive letter and a colon at the start of an absolute path.
5503 2003-02-13  Michael Koch  <konqueror@gmx.de>
5505         * gnu/java/nio/natSocketChannelImpl.cc
5506         (SocketConnect): This is not implemented yet.
5507         (SocketBind): This is not implemented yet.
5509 2003-02-13  Michael Koch  <konqueror@gmx.de>
5511         * gnu/java/nio/natByteBufferImpl.cc,
5512         gnu/java/nio/natCharBufferImpl.cc,
5513         gnu/java/nio/natDoubleBufferImpl.cc,
5514         gnu/java/nio/natFloatBufferImpl.cc,
5515         gnu/java/nio/natIntBufferImpl.cc,
5516         gnu/java/nio/natLongBufferImpl.cc,
5517         gnu/java/nio/natShortBufferImpl.cc:
5518         Added copyright and license.
5519         * java/nio/DoubleBuffer.java,
5520         java/nio/FloatBuffer.java,
5521         java/nio/IntBuffer.java,
5522         java/nio/LongBuffer.java,
5523         java/nio/ShortBuffer.java
5524         (array): Throw exceptions.
5525         (arrayOffset): Throw exceptions.
5527 2003-02-13  Michael Koch  <konqueror@gmx.de>
5529         * gnu/java/util/prefs/FileBasedFactory.java,
5530         gnu/java/util/prefs/MemmoryBasedFactory.java,
5531         gnu/java/util/prefs/MemoryBasedPreferences.java,
5532         gnu/java/util/prefs/NodeReader.java,
5533         gnu/java/util/prefs/NodeWriter.java,
5534         java/util/prefs/AbstractPreferences.java,
5535         java/util/prefs/BackingStoreException.java,
5536         java/util/prefs/InvalidPreferencesFormatException.java,
5537         java/util/prefs/NodeChangeEvent.java,
5538         java/util/prefs/NodeChangeListener.java,
5539         java/util/prefs/PreferenceChangeEvent.java,
5540         java/util/prefs/PreferenceChangeListener.java,
5541         java/util/prefs/Preferences.java,
5542         java/util/prefs/PreferencesFactory.java:
5543         New files, all merged from classpath.
5544         * Makefile.am
5545         (ordinary_java_source_files): Added the following files:
5546         gnu/java/util/prefs/FileBasedFactory.java,
5547         gnu/java/util/prefs/MemmoryBasedFactory.java,
5548         gnu/java/util/prefs/MemoryBasedPreferences.java,
5549         gnu/java/util/prefs/NodeReader.java,
5550         gnu/java/util/prefs/NodeWriter.java,
5551         (core_java_source_files): Added the following files:
5552         java/util/prefs/AbstractPreferences.java,
5553         java/util/prefs/BackingStoreException.java,
5554         java/util/prefs/InvalidPreferencesFormatException.java,
5555         java/util/prefs/NodeChangeEvent.java,
5556         java/util/prefs/NodeChangeListener.java,
5557         java/util/prefs/PreferenceChangeEvent.java,
5558         java/util/prefs/PreferenceChangeListener.java,
5559         java/util/prefs/Preferences.java,
5560         java/util/prefs/PreferencesFactory.java
5561         * Makefile.in: Regenerated.
5563 2003-02-13  Michael Koch  <konqueror@gmx.de>
5565         * java/net/NetPermission.java
5566         (NetPermission): Make doucmentation match the method declaration.
5567         * java/net/NetworkInterface.java
5568         (equals): Reformated for GNU coding style.
5569         * java/net/ServerSocket.java: Merged with classpath.
5570         * java/net/Socket.java: Partly merged with classpath (Added some @since).
5571         * java/net/SocketImpl.java
5572         (localPort): Merged with classpath (initialize with -1).
5573         * java/net/SocketPermission.java: Merged with classpath (reindented).
5574         * java/net/URLDecoder.java: Merged with classpath (reindented).
5576 2003-02-13  Michael Koch  <konqueror@gmx.de>
5578         * java/awt/GridBagConstraints.java
5579         (FIRST_LINE_ENT, FIRST_LINE_START, LAST_LINE_END, LAST_LINE_START,
5580         LINE_END, LINE_START, PAGE_END, PAGE_START): New constants.
5581         * java/awt/KeyboardFocusManager.java
5582         (setGlobalCurrentFocusCycleRoot): Must be public.
5583         * java/awt/MenuComponent.java
5584         (MenuComponent): Must be public.
5585         * java/awt/Toolkit.java:
5586         Added some empty lines to make documentation more readable.
5587         (getFontPeer): Added @deprecated.
5588         (getColorModel): Added exception documentation.
5589         (getProperty): Fixed documentation.
5591 2003-02-12  Jeff Sturm  <jsturm@one-point.com>
5593         * configure.host (alpha*-*): Default to -mieee.
5594         * configure.in (IEEESPEC): New.
5595         * libgcj.spec.in (jc1): Add IEEESPEC.
5596         * configure: Rebuild.
5598 2003-02-12  Ranjit Mathew  <rmathew@hotmail.com>
5600         * include/win32.h: Include ws2tcpip.h instead of
5601         winsock.h to obtain definition of the socklen_t type.
5602         Remove IP_TOS definition - not needed with ws2tcpip.h
5603         (_Jv_connect): Correct slight formatting error.
5605 2003-02-12  Ranjit Mathew  <rmathew@hotmail.com>
5607         * jni.cc (_Jv_LookupJNIMethod): Modify to accept the
5608         size of the arguments for a JNI function. For Win32,
5609         modify to search for all forms of possible exported
5610         names of an stdcall JNI function.
5611         (_Jv_JNIMethod::call): Modify to calculate the size
5612         of the arguments passed to a JNI function and pass
5613         it to _Jv_LookupJNIMethod.
5615 2003-02-12  Michael Koch  <konqueror@gmx.de>
5617         * java/nio/channels/Channels.java: New file.
5618         * Makefile.am
5619         (ordinary_java_source_files): Added java/nio/channels/Channels.java.
5620         * Makefile.in: Regenerated.
5622 2003-02-12  Michael Koch  <konqueror@gmx.de>
5624         * java/nio/ByteBuffer.java
5625         (allocate): Implemented.
5626         (wrap): Implemented.
5627         * java/nio/CharBuffer.java:
5628         Some documentation added and reworked.
5629         (endian): Removed.
5630         (allocate): Implemented.
5631         (wrap): Implemented.
5632         (array): Throw exceptions.
5633         (arrayOffset): Throw exceptions.
5634         (toString): Implemented.
5635         (length): Implemented.
5636         (put): Implemented.
5637         (charAt): Implemented.
5639 2003-02-11  John Leuner  <jewel@debian.org>
5641         * java/util/zip/ZipInputStream.java: Fix problem with 0-length 
5642         reads from end of file.
5644 2003-02-11  Ranjit Mathew  <rmathew@hotmail.com>
5646         * java/io/natFileDescriptorWin32.cc 
5647         (java::io::FileDescriptor::read): Return -1 (EOF) if ReadFile( )
5648         returns with Win32 error code ERROR_BROKEN_PIPE.
5650 2003-02-11  Michael Koch  <konqueror@gmx.de>
5652         * Makefile.in
5653         (libgcj_la_OBJECTS): Removed natSelctorImpl.la.
5655 2003-02-11  Michael Koch  <konqueror@gmx.de>
5657         * gnu/java/nio/ByteBufferImpl.java:
5658         Reformated and removed some code.
5659         (backing_buffer): Removed.      
5660         (array_offset): Removed.
5661         (ro): Renamed to readOnly.
5662         (ByteBufferImpl): Use parent constructor, initialize readOnly.
5663         * gnu/java/nio/CharBufferImpl.java:
5664         Reformated and removed some code.
5665         (array_offset): Removed.
5666         (ro): Renamed to readOnly.
5667         (CharBufferImpl): Use parent constructor, initialize readOnly.
5668         (inc_pos): Removed.
5669         (order): New method.
5670         * gnu/java/nio/DoubleBufferImpl.java:
5671         Reformated and removed some code.
5672         (array_offset): Removed.
5673         (ro): Renamed to readOnly.
5674         (DoubleBufferImpl): Use parent constructor, initialize readOnly.
5675         (inc_pos): Removed.
5676         (order): New method.
5677         * gnu/java/nio/FloatBufferImpl.java:
5678         Reformated and removed some code.
5679         (array_offset): Removed.
5680         (ro): Renamed to readOnly.
5681         (FloatBufferImpl): Use parent constructor, initialize readOnly.
5682         (inc_pos): Removed.
5683         (order): New method.
5684         * gnu/java/nio/IntBufferImpl.java:
5685         Reformated and removed some code.
5686         (array_offset): Removed.
5687         (ro): Renamed to readOnly.
5688         (IntBufferImpl): Use parent constructor, initialize readOnly.
5689         (inc_pos): Removed.
5690         (order): New method.
5691         * gnu/java/nio/LongBufferImpl.java:
5692         Reformated and removed some code.
5693         (array_offset): Removed.
5694         (ro): Renamed to readOnly.
5695         (LongBufferImpl): Use parent constructor, initialize readOnly.
5696         (inc_pos): Removed.
5697         (order): New method.
5698         * gnu/java/nio/ShortBufferImpl.java:
5699         Reformated and removed some code.
5700         (array_offset): Removed.
5701         (ro): Renamed to readOnly.
5702         (ShortBufferImpl): Use parent constructor, initialize readOnly.
5703         (inc_pos): Removed.
5704         (order): New method.
5705         * Makefile.am
5706         (ordinary_java_source_files): Added the following files:
5707         gnu/java/nio/ByteBufferImpl.java
5708         gnu/java/nio/CharBufferImpl.java
5709         gnu/java/nio/DoubleBufferImpl.java
5710         gnu/java/nio/FloatBufferImpl.java
5711         gnu/java/nio/IntBufferImpl.java
5712         gnu/java/nio/LongBufferImpl.java
5713         gnu/java/nio/ShortBufferImpl.java
5714         java/nio/DoubleBuffer.java
5715         java/nio/FloatBuffer.java
5716         java/nio/IntBuffer.java
5717         java/nio/LongBuffer.java
5718         java/nio/ShortBuffer.java
5719         (nat_source_files): Added the following files:
5720         gnu/java/nio/natByteBufferImpl.cc
5721         gnu/java/nio/natCharBufferImpl.cc
5722         gnu/java/nio/natDoubleBufferImpl.cc
5723         gnu/java/nio/natFloatBufferImpl.cc
5724         gnu/java/nio/natIntBufferImpl.cc
5725         gnu/java/nio/natLongBufferImpl.cc
5726         gnu/java/nio/natShortBufferImpl.cc
5727         * Makefile.in: Regenerated.
5729 2003-02-11  Michael Koch  <konqueror@gmx.de>
5731         * gnu/java/nio/natCharBufferImpl.cc
5732         (nio_cast): Removed.
5733         (nio_put_*): Removed.
5734         (nio_get_*): Removed.
5735         * gnu/java/nio/natDoubleBufferImpl.cc
5736         (nio_cast): Removed.
5737         (nio_put_*): Removed.
5738         (nio_get_*): Removed.
5739         * gnu/java/nio/natFloatBufferImpl.cc
5740         (nio_cast): Removed.
5741         (nio_put_*): Removed.
5742         (nio_get_*): Removed.
5743         * gnu/java/nio/natIntBufferImpl.cc
5744         (nio_cast): Removed.
5745         (nio_put_*): Removed.
5746         (nio_get_*): Removed.
5747         * gnu/java/nio/natLongBufferImpl.cc
5748         (nio_cast): Removed.
5749         (nio_put_*): Removed.
5750         (nio_get_*): Removed.
5751         * gnu/java/nio/natShortBufferImpl.cc
5752         (nio_cast): Removed.
5753         (nio_put_*): Removed.
5754         (nio_get_*): Removed.
5755         * gnu/java/nio/SelectorProviderImpl.java
5756         (openDatagramChannel): Throws IOException.
5757         (openPipe): Throws IOException.
5758         (openSelector): Throws IOException.
5759         (openServerSocketChannel): Throws IOException.
5760         (openSocketChannel): Throws IOException.
5761         * gnu/java/nio/ServerSocketChannelImpl.java
5762         (ServerSocketChannelImpl): Throws IOException.
5763         (implCloseSelectableChannel): Throws IOException.
5764         (implConfigureBlocking): Throws IOException.
5765         * java/nio/ByteBuffer.java
5766         (readOnly): Removed.
5767         (hasArray): Use isReadOnly() instead of readOnly.
5768         (array): Use isReadOnly() instead of readOnly.
5769         (arrayOffset): Use isReadOnly() instead of readOnly.
5770         * java/nio/CharBuffer.java
5771         (CharBuffer): Implements Cloneable and CharSequence.
5773 2003-02-11  Michael Koch  <konqueror@gmx.de>
5775         * java/nio/DoubleBuffer.java
5776         (DoubleBuffer): Implements Comparable.
5777         (endian): Removed.
5778         (array_offset): New member variable.
5779         (DoubleBuffer): New constuctor.
5780         (get): May not be final.
5781         (put): May not be final.
5782         (arrayOffset): Implemented.
5783         (order): Made abstract.
5784         (order): Removed.
5785         (as*Buffer): Removed.
5786         (get*): Removed.
5787         (put*): Removed.
5788         * java/nio/FloatBuffer.java
5789         (FloatBuffer): Implements Comparable.
5790         (endian): Removed.
5791         (array_offset): New member variable.
5792         (FloatBuffer): New constuctor.
5793         (get): May not be final.
5794         (put): May not be final.
5795         (arrayOffset): Implemented.
5796         (order): Made abstract.
5797         (order): Removed.
5798         (as*Buffer): Removed.
5799         (get*): Removed.
5800         (put*): Removed.
5801         * java/nio/IntBuffer.java
5802         (IntBuffer): Implements Comparable.
5803         (endian): Removed.
5804         (array_offset): New member variable.
5805         (IntBuffer): New constuctor.
5806         (get): May not be final.
5807         (put): May not be final.
5808         (arrayOffset): Implemented.
5809         (order): Made abstract.
5810         (order): Removed.
5811         (as*Buffer): Removed.
5812         (get*): Removed.
5813         (put*): Removed.
5814         * java/nio/LongBuffer.java
5815         (LongBuffer): Implements Comparable.
5816         (endian): Removed.
5817         (array_offset): New member variable.
5818         (LongBuffer): New constuctor.
5819         (get): May not be final.
5820         (put): May not be final.
5821         (arrayOffset): Implemented.
5822         (order): Made abstract.
5823         (order): Removed.
5824         (as*Buffer): Removed.
5825         (get*): Removed.
5826         (put*): Removed.
5827         * java/nio/ShortBuffer.java
5828         (ShortBuffer): Implements Comparable.
5829         (endian): Removed.
5830         (array_offset): New member variable.
5831         (ShortBuffer): New constuctor.
5832         (get): May not be final.
5833         (put): May not be final.
5834         (arrayOffset): Implemented.
5835         (order): Made abstract.
5836         (order): Removed.
5837         (as*Buffer): Removed.
5838         (get*): Removed.
5839         (put*): Removed.
5841 2003-02-11   Michael Koch  <konqueror@gmx.de>
5843         * java/nio/channels/SelectionKey.java
5844         (OP_ACCEPT, OP_CONNECT, OP_READ, OP_WRITE): Initialize with correct
5845         values.
5847 2003-02-11  Michael Koch  <konqueror@gmx.de>
5849         * java/nio/channels/DatagramChannel.java
5850         (write): Throws IOException.
5851         (connect): Throws IOException.
5852         (disconnect): Throws IOException.
5853         (read): Throws IOException.
5854         (receive): Throws IOException.
5855         (send): Throws IOException.
5856         * java/nio/channels/Pipe.java
5857         (open): Throws IOException.
5858         * java/nio/channels/SelectableChannel.java
5859         (configureBlocking): Throws IOException.
5860         * java/nio/channels/ServerSocketChannel.java
5861         (accept): Throws IOException.
5862         * java/nio/channels/SocketChannel.java
5863         (SocketChannel): Implements ByteChannel, ScatteringByteChannel,
5864         GatheringByteChannel.
5865         (read): Throws IOException.
5866         (write): Throws IOException.
5867         (finishConnect): Throws IOException.
5868         * java/nio/channels/spi/AbstractInterruptibleChannel.java
5869         (end): Throws AsynchronousCloseException.
5870         * java/nio/channels/spi/AbstractSelectableChannel.java
5871         (configureBlocking): Throws IOException.
5872         (implCloseChannel): Throws IOException.
5873         (implCloseSelectableChannel): Throws IOException.
5874         (implConfigureBlocking): Throws IOException.
5875         * java/nio/channels/spi/SelectorProvider.java
5876         (openDatagramChannel): Throws IOException.
5877         (openPipe): Throws IOException.
5878         (openSelector): Throws IOException.
5879         (openServerSocketChannel): Throws IOException.
5880         (openSocketChannel): Throws IOException.
5882 2003-02-11  Michael Koch  <konqueror@gmx.de>
5884         * gnu/java/nio/FileLockImpl.java,
5885         java/nio/channels/FileLock.java: New files.
5887 2003-02-11  Michael Koch  <konqueror@gmx.de>
5889         * java/nio/charset/IllegalCharsetNameException.java
5890         (serialVersionUID): New member variable.
5891         (charsetName): New member variable.
5892         (IllegalCharsetException): New implementation.
5893         (getCharsetName): New implementation.
5894         * java/nio/charset/UnsupportedCharsetException.java
5895         (serialVersionUID): New member variable.
5896         (charsetName): New member variable.
5897         (UnsupportedCharsetException): New implementation.
5898         (getCharsetName): New implementation.
5900 2003-02-10  Tom Tromey  <tromey@redhat.com>
5902         * javax/sql/ConnectionEvent.java (serialVersionUID): New field.
5903         (ex): Renamed from sqlException.
5905 2003-02-10  Raif S. Naffah  <raif@fl.net.au>
5907         * gnu/java/security/provider/SHA1PRNG.java (ensureIsSeeded): new 
5908         method used to ensure seeding has occurred and that a specific 
5909         seed can be set and used.
5911 2003-02-10  Ranjit Mathew  <rmathew@hotmail.com>
5913         * java/lang/Win32Process.java (destroy): Declare as native.
5914         (hasExited): New native method.
5915         (exitValue): Define.
5916         (getErrorStream): Likewise.
5917         (getInputStream): Likewise.
5918         (getOutputStream): Likewise.
5919         (waitFor): Declare as native.
5920         (startProcess): New native method.
5921         (cleanup): Likewise.
5922         (ConcreteProcess): Define.
5923         (outputStream, inputStream, errorStream): New members.
5924         (procHandle, exitCode): Likewise.
5926         * java/lang/natWin32Process.cc
5927         (java::lang::ConcreteProcess::cleanup): Define.
5928         (java::lang::ConcreteProcess::destroy): Likewise.
5929         (java::lang::ConcreteProcess::hasExited): Likewise.
5930         (java::lang::ConcreteProcess::waitFor): Likewise.
5931         (new_string): Likewise.
5932         (java::lang::ConcreteProcess::startProcess): Likewise.
5934 2003-02-10  Raif S. Naffah <raif@fl.net.au>
5936         * java/math/BigInteger.java:
5937         Updated notice to include years 2002 and 3.
5938         Added 2 private (int) arrays with values from the HAC (Handbook of
5939         Applied Cryptography -A. Menezes & al): k[] that contains bit lengths
5940         and t[] that contains nbr. of tests --used in isProbablePrime().
5942         * java/math/BigInteger.java (make(long)): Merged into valueOf(long).
5944         * java/math/BigInteger.java (make(int[],int), add(int,int),
5945         add(BI,BI,int), times(BI,int), divide(long,long,BI,BI,int), gcd(BI),
5946         isProbablePrime(int), shift(BI,int), valueOf(String,int), neg(BI),
5947         bitOp(int,BI,BI), and(BI,int)): Use valueOf(long) instead of
5948         make(long).
5950         * java/math/BigInteger.java (euclidInv): Reduce number of work vars
5951         (euclidInv(int,int,int)): Now returns an array of 2 ints instead of 3.
5952         (euclidInv(BI,BI,BI)): Used to return an array of 2 BIs; now accepts 6
5953         BIs and returns void.
5954         (modInverse(BI)): Use new signatures of euclidInv().
5956         * java/math/BigInteger.java (isProbablePrime(int)): Use divide() with
5957         static small primes instead of remainder().
5958         Use pre-computed max nbr of trials based on bitlength of BI to test.
5959         Use pre-computed small primes for the trial tests instead of random
5960         numbers.
5962         * java/math/BigInteger.java (isOdd, isMinusOne, pow): Removed.
5963         not used.
5965         * java/math/BigInteger.java (format(int,StringBuffer)): Removed
5966         invoacation of MPN.chars_per_word().  not used.
5968         * java/math/BigInteger.java (gcd(int,int)): Declared 'tmp' once as
5969         local var and used where needed.
5971         * java/math/BigInteger.java (modPow(BI,BI)): Fixed spelling.
5972         Combined declaration with initialisation of locals.
5973         Removed unused var.
5975         * java/math/BigInteger.java: Style changes
5976         (pow(int)): Removed 'else' keyword.
5977         (toString(int)): idem.
5978         (doubleValue()): idem.
5979         (bitLength()): idem.
5980         (equals(Object)): Use static methods name in same class w/o prepending
5981         class name.
5982         (doubleValue()): idem.
5983         (setNegative(BI)): idem.
5984         (negate()): idem.
5985         (and(BI,int)): idem.
5986         (and(BI)): idem.
5987         (gcd(BI)): idem.
5988         (byteArrayToIntArray()): Removed casting to (int). this is
5989         std. behaviour.
5990         (canonicalize()): idem.
5991         (alloc(int)): Always instantiate a new BI.
5993 2003-02-10  Tom Tromey  <tromey@redhat.com>
5995         * java/sql/Timestamp.java (compareTo(Object)): New method.
5996         (compareTo(Timestamp)): Likewise.
5997         (serialVersionUID): Updated.
5999 2003-02-07  Mark Wielaard  <mark@klomp.org>
6001         * java/util/jar/JarFile.java (JarFile(String, boolean)): Read manifest
6002         when verify is true.
6003         (JarFile(File, boolean)): Likewise.
6004         (manifestRead): Set manifestRead field correctly.
6006 2003-02-07  Stephen Crawley  <crawley@dstc.edu.au>
6008         * java/math/BigDecimal(valueOf): fix DiagBigDecimal val008, val013
6009         tests; see patch #1016 on Savannah.
6011 2003-02-07  Stephen Crawley  <crawley@dstc.edu.au>
6013         * java/math/BigDecimal.java (BigDecimal): enhance parsing of exponents
6014         (toString): do not return Strings starting with . and - erroneously.
6015         Improves Mauve results to 12 of 600 instead of 16 of 338 on
6016         DiagBigDecimal.
6018 2003-02-07  Stephen Crawley  <crawley@dstc.edu.au>
6020         * java/beans/PropertyDescriptor.java
6021         (PropertyDescriptor(String, Class)): Sanity check getter and setter
6022         methods.
6023         (PropertyDescriptor(String, Class, String, String)): Likewise.
6024         (PropertyDescriptor(String, Method, Method): Factor out getter and
6025         setter method sanity checks into new method.
6026         (findMethods): Don't do parameter sanity checking of get method here.
6027         (checkMethods): New method.
6029 2003-02-07  Stephen Crawley  <crawley@dstc.edu.au>
6031         * java/beans/PropertyDescriptor.java: Reformat.
6033 2003-02-04  Tom Tromey  <tromey@redhat.com>
6035         * java/io/PipedOutputStream.java (flush): Declare as throwing
6036         IOException.
6037         (close): Likewise.
6038         * java/io/PipedWriter.java (close): Declare as throwing
6039         IOException.
6040         * java/io/StringWriter.java (close): Declare as throwing
6041         IOException.
6043 2003-02-03  Ranjit Mathew <rmathew@hotmail.com>
6045         * java/lang/natRuntime.cc (java::lang::Runtime::_load)): Take care
6046         of the fact that on Win32, JNI_OnLoad is an "stdcall" function and
6047         could also have been exported as "JNI_OnLoad@8" (MinGW) or
6048         "_JNI_OnLoad@8" (MSVC).
6050 2003-02-03  Ranjit Mathew <rmathew@hotmail.com>
6052         * resolve.cc (_Jv_JNIMethod::ncode): Use stdcall calling
6053         convention on Win32 to invoke native JNI methods.
6055 2003-02-03  Andrew Haley  <aph@redhat.com>
6057         * configure.host (x86_64): Enable interpreter.
6059 2003-02-03  Andrew Haley  <aph@redhat.com>
6061         * libgcj.spec.in (jc1): Add BACKTRACESPEC.
6062         * configure.host (x86_64): Default to -fno-omit-frame-pointer.
6063         * configure.in (BACKTRACESPEC): New.
6064         * configure: Regenerate.
6066 2003-02-02  Tom Tromey  <tromey@redhat.com>
6068         * configure: Rebuilt.
6069         * configure.in (TOOLKIT) [xlib]: Set correctly.
6071         * Makefile.in: Rebuilt.
6072         * Makefile.am (lib_gnu_awt_xlib_la_LDFLAGS): Link against
6073         libstdc++.
6075 2003-01-31  Mark WIelaard  <mark@klomp.org>
6077         * Makefile.in: Rebuilt.
6078         * Makefile.am (gtk_c_headers): Strip trailing / from jniinclude.
6080 2003-01-31  Tom Tromey  <tromey@redhat.com>
6082         * jni.cc (_Jv_JNI_NewObjectArray): Check that initializer can be
6083         cast to element type.
6084         (_Jv_JNI_SetObjectArrayElement): Check array bounds.
6085         (_Jv_JNI_GetObjectArrayElement): Likewise.
6087         * Makefile.in: Rebuilt.
6088         * Makefile.am (cond_x_ltlibrary): Renamed library to
6089         lib-gnu-awt-xlib.la.
6090         (lib_gnu_awt_xlib_la_SOURCES): Renamed.
6091         (EXTRA_lib_gnu_awt_xlib_la_SOURCES): Likewise.
6092         (lib_gnu_awt_xlib_la_DEPENDENCIES): Likewise.
6093         (lib_gnu_awt_xlib_la_LIBADD): Likewise.
6094         (lib_gnu_awt_xlib_la_LDFLAGS): Likewise.
6095         (lib_gnu_awt_xlib_la_LINK): Likewise.
6096         (install-exec-hook): Removed.
6097         (lib-gnu-awt-xlib.la): Renamed.
6099 2003-01-31  Tom Tromey  <tromey@redhat.com>
6101         * aclocal.m4, configure, include/config.h.in: Rebuilt.
6102         * acinclude.m4 (CHECK_FOR_BROKEN_MINGW_LD): Resurrected; was in
6103         aclocal.m4 and lost in some merge.
6105         * java/awt/Window.java (Window(Window,GraphicsConfiguration)):
6106         Don't try to find graphics configuration.
6107         * java/awt/Toolkit.java (default_toolkit_name): Use new
6108         Configuration entry.
6109         * gnu/classpath/Configuration.java.in (default_awt_peer_toolkit):
6110         New global.
6111         * configure: Rebuilt.
6112         * configure.in (TOOLKIT): New subst.
6113         (--enable-java-awt) [xlib, gtk]: Set TOOLKIT if required.
6114         Do AWT tests much earlier.  Run Gtk tests.  Make jniinclude
6115         directory.  Make output directories for .c files.
6116         * Makefile.in: Rebuilt.
6117         * Makefile.am (lib_gnu_java_awt_peer_gtk_la_SOURCES): New macro.
6118         (toolexeclib_LTLIBRARIES): Added cond_gtk_ltlibrary.
6119         (all_java_source_files): Added new sources.
6120         ($(lib_gnu_java_awt_peer_gtk_la_OBJECTS)): New target.
6121         (gtk_c_files): New macro.
6122         (gtk_c_source_files): New macro.
6123         (cond_gtk_ltlibrary): New macro.
6124         ($(gtk_c_files)): New target.
6125         (lib_gnu_java_awt_peer_gtk_la_LIBADD): New macro.
6126         (gtk_awt_peer_sources): New macro.
6127         (gtk_c_headers): New macro.
6128         ($(gtk_c_headers)): New target.
6129         (ACLOCAL_AMFLAGS): New macro.
6130         * gtk.m4, glib.m4, libart.m4: New files.
6131         * gnu/java/awt/peer/gtk/GdkFontMetrics.java,
6132         gnu/java/awt/peer/gtk/GdkGraphics.java,
6133         gnu/java/awt/peer/gtk/GtkArg.java,
6134         gnu/java/awt/peer/gtk/GtkArgList.java,
6135         gnu/java/awt/peer/gtk/GtkButtonPeer.java,
6136         gnu/java/awt/peer/gtk/GtkCanvasPeer.java,
6137         gnu/java/awt/peer/gtk/GtkCheckboxGroupPeer.java,
6138         gnu/java/awt/peer/gtk/GtkCheckboxMenuItemPeer.java,
6139         gnu/java/awt/peer/gtk/GtkCheckboxPeer.java,
6140         gnu/java/awt/peer/gtk/GtkChoicePeer.java,
6141         gnu/java/awt/peer/gtk/GtkClipboard.java,
6142         gnu/java/awt/peer/gtk/GtkComponentPeer.java,
6143         gnu/java/awt/peer/gtk/GtkContainerPeer.java,
6144         gnu/java/awt/peer/gtk/GtkDialogPeer.java,
6145         gnu/java/awt/peer/gtk/GtkFileDialogPeer.java,
6146         gnu/java/awt/peer/gtk/GtkFontPeer.java,
6147         gnu/java/awt/peer/gtk/GtkFramePeer.java,
6148         gnu/java/awt/peer/gtk/GtkGenericPeer.java,
6149         gnu/java/awt/peer/gtk/GtkImage.java,
6150         gnu/java/awt/peer/gtk/GtkImagePainter.java,
6151         gnu/java/awt/peer/gtk/GtkLabelPeer.java,
6152         gnu/java/awt/peer/gtk/GtkListPeer.java,
6153         gnu/java/awt/peer/gtk/GtkMainThread.java,
6154         gnu/java/awt/peer/gtk/GtkMenuBarPeer.java,
6155         gnu/java/awt/peer/gtk/GtkMenuComponentPeer.java,
6156         gnu/java/awt/peer/gtk/GtkMenuItemPeer.java,
6157         gnu/java/awt/peer/gtk/GtkMenuPeer.java,
6158         gnu/java/awt/peer/gtk/GtkOffScreenImage.java,
6159         gnu/java/awt/peer/gtk/GtkPanelPeer.java,
6160         gnu/java/awt/peer/gtk/GtkPopupMenuPeer.java,
6161         gnu/java/awt/peer/gtk/GtkScrollbarPeer.java,
6162         gnu/java/awt/peer/gtk/GtkScrollPanePeer.java,
6163         gnu/java/awt/peer/gtk/GtkTextAreaPeer.java,
6164         gnu/java/awt/peer/gtk/GtkTextComponentPeer.java,
6165         gnu/java/awt/peer/gtk/GtkTextFieldPeer.java,
6166         gnu/java/awt/peer/gtk/GtkToolkit.java,
6167         gnu/java/awt/peer/gtk/GtkWindowPeer.java,
6168         gnu/java/awt/peer/gtk/TestAWT.java,
6169         gnu/java/awt/peer/gtk/Test.java: New files from Classpath.
6170         * jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontMetrics.c,
6171         jni/gtk-peer/gnu_java_awt_peer_gtk_GdkGraphics.c,
6172         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkButtonPeer.c,
6173         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkCanvasPeer.c,
6174         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkCheckboxMenuItemPeer.c,
6175         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkCheckboxPeer.c,
6176         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkChoicePeer.c,
6177         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkClipboard.c,
6178         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c,
6179         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c,
6180         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkFileDialogPeer.c,
6181         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkImagePainter.c,
6182         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkLabelPeer.c,
6183         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkListPeer.c,
6184         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMainThread.c,
6185         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMenuBarPeer.c,
6186         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMenuItemPeer.c,
6187         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMenuPeer.c,
6188         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkPanelPeer.c,
6189         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkPopupMenuPeer.c,
6190         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkScrollBarPeer.c,
6191         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkScrollPanePeer.c,
6192         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextAreaPeer.c,
6193         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextComponentPeer.c,
6194         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextFieldPeer.c,
6195         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkToolkit.c,
6196         jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c,
6197         jni/gtk-peer/gthread-jni.c, jni/gtk-peer/gthread-jni.h,
6198         jni/gtk-peer/gtkpeer.h, jni/classpath/jcl.c, jni/classpath/jcl.h,
6199         jni/classpath/jnilink.c, jni/classpath/jnilink.h,
6200         jni/classpath/native_state.c, jni/classpath/native_state.h,
6201         jni/classpath/primlib.c, jni/classpath/primlib.h: Likewise.
6203 2003-01-31  Julian Dolby  <dolby@us.ibm.com>
6205         * java/util/Properties.java (load): Ignore backslash before EOF.
6207 2003-01-30  Jeff Sturm  <jsturm@one-point.com>
6209         * java/lang/natClass.cc (initializeClass): Check tables when
6210         (state == JV_STATE_IN_PROGRESS).
6211         (_Jv_GetInterfaces): Use _Jv_WaitForState to link interface.
6212         * java/lang/natClassLoader.cc (_Jv_WaitForState): Handle
6213         interpreted classes.
6214         (linkClass0): Use _Jv_WaitForState.
6216 2003-01-28  Oscar Pearce  <oscar@pearceenterprises.com>
6218         * java/awt/Component.java (processPaintEvent): Dispose of Graphics
6219         object when finished.
6221 2003-01-28  Andreas Tobler  <a.tobler@schweiz.ch>
6223         * libjava/configure.host: Disable can_unwind_signal on darwin.
6225 2003-01-28  Ranjit Mathew  <rmathew@hotmail.com>
6227         Fixes PR java/9254:
6228         * include/win32-threads.h (_Jv_Mutex_t): Convert to a struct
6229         additionally containing id of the owner thread as well as
6230         the number of nested times the thread has acquired the mutex.
6231         (_Jv_MutexInit): Initialise owner thread id and refcount to 0.
6232         (_Jv_MutexDestroy): Reset owner thread id and refcount to 0.
6233         (_Jv_MutexUnlock): Check if really the owner thread, reset
6234         owner thread id to 0 before leaving, if leaving for the last
6235         time.
6236         (_Jv_MutexLock): Set owner thread id in the mutex and increment
6237         refcount.
6238         (_Jv_ThreadYield): Yield using a call to Sleep(0).
6239         * win32-threads.cc (_Jv_CondWait): Check if really owner of
6240         the passed mutex.
6241         Pass handle of the broadcast event, instead of a pointer to it
6242         in Win32 ResetEvent( ) call.
6243         Remove incorrect return values.
6244         (_Jv_CondDestroy): Close both event handles and delete
6245         critical section.
6246         (_Jv_CondNotify): Check if really the owner thread.
6247         (_Jv_CondNotifyAll): Check if really the owner thread.
6248         (_Jv_InitThreads): Change daemon_cond to a manual-reset event.
6249         (really_start): Use SetEvent( ) to signal daemon_cond.
6250         (_Jv_ThreadWait): Remove SignalObjectAndWait( ) and use
6251         WaitForSingleObject( ) instead to wait for daemon_cond to be
6252         signalled.
6254 2003-01-27  Ranjit Mathew  <rmathew@hotmail.com>
6256         * configure.in: Specifically define HAVE_BACKTRACE if building
6257         for MinGW.
6258         * include/win32.h: Remove HAVE_BACKTRACE definition.
6259         * gnu/gcj/runtime/natStackTrace.cc: Include platform.h.
6260         * configure: Rebuilt.
6262 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
6264         * configure.in (toolexecdir, toolexecmainlibdir, toolexeclibdir):
6265         Set and AC_SUBST.  Remove USE_LIBDIR conditional.
6266         * Makefile.am (toolexecdir, toolexeclibdir): Don't override.
6267         (toolexecmainlib_DATA): Renamed from toolexeclib_DATA.
6268         * Makefile.in, configure: Rebuilt.
6270 2003-01-24  Ranjit Mathew  <rmathew@hotmail.com>
6272         Fixes PR java/9253:
6273         * java/io/natFileWin32.cc (performList): Append only "*.*"
6274         if the canonical file path already has a "\" at the end.
6276 2003-01-24  Tom Tromey  <tromey@redhat.com>
6278         * defineclass.cc (handleMethodsEnd): Precompute code for static
6279         method.
6280         (handleCodeAttribute): Likewise.
6281         * resolve.cc (ncode): Use run_class for unsynchronized static
6282         methods.
6283         * include/java-interp.h (class _Jv_InterpMethod): Declare
6284         run_class.
6285         * interpret.cc (run_synch_class): Initialize class.
6286         (run) [insn_invokestatic]: Don't initialize class.
6287         [insn_anewarray]: Likewise.
6288         [insn_multianewarray]: Likewise.
6289         (run_class): New function.
6291 2003-01-24  Tom Tromey  <tromey@redhat.com>
6293         * java/lang/ClassLoader.java (findLoadedClass): Removed erroneous
6294         comment.
6296 2003-01-22  Andrew Haley  <aph@redhat.com>
6298         * x86_64-signal.h: Add simple handler for x86_64 32-bit mode.
6299         * configure.host (CHECKREFSPEC): Define for x86_64.
6301 2003-01-21  Tom Tromey  <tromey@redhat.com>
6303         * java/util/natResourceBundle.cc (getCallingClassLoader): Start
6304         search at 2, not 3.
6306 2003-01-21  Vladimir Puskas  <vpuskas@eunet.yu>
6308         * java/io/natFileWin32.cc (isAbsolute): Check path length before
6309         looking at any characters.
6310         * java/io/natFilePosix.cc (_stat): Only compute `buf' if it will
6311         be used.
6312         (isAbsolute): Check path's length as well.
6314 2003-01-17  Mark Wielaard  <mark@klomp.org>
6316         * Makefile.am (core_java_source_files): Add VMObjectStreamClass.java.
6317         (nat_source_files): Add natVMObjectStreamClass.cc.
6318         * Makefile.in: Regenerated.
6319         * gcj/javaprims.h (namespace java): Regenerated.
6320         * java/io/ObjectStreamClass.java (getClassUID): Call
6321         VMObjectStreamClass.hasClassInitializer().
6322         (hasClassInitializer): Removed.
6323         * java/io/VMObjectStreamClass.java: New class.
6324         * java/io/natVMObjectStreamClass.cc: New file.
6325         * java/lang/Class.h: Make java::io::VMObjectStreamClass friend class.
6327 2003-01-16  Mark Wielaard  <mark@klomp.org>
6329         * java/net/SocketImpl.java (toString): Don't explicitly call
6330         toString() on possible null address.
6332 2003-01-16  Michael Koch  <konqueror@gmx.de>
6334         * java/net/MulticastSocket.java
6335         (setInterface): Reindented.
6337 2003-01-15  Scott Gilbertson  <scottg@mantatest.com>
6339         * gnu/gcj/xlib/natGC.cc (fillPolygon): New method.
6340         * gnu/gcj/xlib/GC.java (fillPolygon): Declare.
6341         * gnu/awt/xlib/XGraphics.java (fillPolygon): Added translateX and
6342         translateY arguments.  Implement.
6343         * gnu/awt/j2d/IntegerGraphicsState.java (fillPolygon): Pass
6344         down translation arguments.
6345         (drawPolyline, drawPolygon): Fix incorrect tests.
6346         * gnu/awt/j2d/DirectRasterGraphics.java (fillPolygon): Added
6347         translateX and translateY arguments.
6349 2003-01-15  Scott Gilbertson  <scottg@mantatest.com>
6351         * Makefile.in: Rebuilt.
6352         * Makefile.am (xlib_includes): New macro.
6353         (INCLUDES): Use it.
6355 2003-01-15  Scott Gilbertson  <scottg@mantatest.com>
6357         * gnu/awt/xlib/XToolkit.java (getColorModel): Implemented.
6358         * gnu/awt/xlib/XGraphicsConfiguration.java (getPixel): Work with
6359         16-bit display mode.
6361 2003-01-15  Scott Gilbertson  <scottg@mantatest.com>
6363         * java/awt/CardLayout.java (show): Rewrote.
6364         (gotoComponent): Removed `target' argument.  Simplified code.
6365         Don't pre-compute `choice' unless `what' is FIRST or LAST.
6366         Changed all callers.
6367         (NONE): Removed.
6368         
6369 2003-01-14  Michael Koch  <konqueror@gmx.de>
6371         * java/net/InetSocketAddress.java
6372         (serialVersionUID): New member variable.
6373         * java/net/NetPermission.java
6374         (NetPermission): Dont implement java.io.Serialization directly.
6375         * java/net/SocketAddress.java:
6376         (serialVersionUID): Documentation added.
6377         
6378 2003-01-14  Michael Koch  <konqueror@gmx.de>
6380         * java/awt/Label.java
6381         (Label): Implements javax.accessibility.Accessible;
6382         * java/awt/List.java
6383         (List): Implements javax.accessibility.Accessible;
6384         * java/awt/ScrollPane.java
6385         (ScrollPane): Implements javax.accessibility.Accessible;
6386         * java/awt/Scrollbar.java
6387         (Scrollbar): Implements javax.accessibility.Accessible;
6388         * java/awt/TextComponent.java
6389         (setCaretPosition): Throw exception, documentation added.
6390         * java/awt/Toolkit.java:
6391         Added some newlines in method documentations.
6392         (createButton): Exception documentation added.
6393         (createTextField): Exception documentation added.
6394         (createLabel): Exception documentation added.
6395         (createList): Exception documentation added.
6396         (createCheckbox): Exception documentation added.
6397         (createScrollbar): Exception documentation added.
6398         (createScrollPane): Exception documentation added.
6399         (createTextArea): Exception documentation added.
6400         (createChoice): Exception documentation added.
6401         (createFrame): Exception documentation added.
6402         (createWindow): Exception documentation added.
6403         (createDialog): Exception documentation added.
6404         (createMenuBar): Exception documentation added.
6405         (createMenu): Exception documentation added.
6406         (createMenuItem): Exception documentation added.
6407         (createFileDialog): Exception documentation added.
6408         (createCheckboxMenuItem): Exception documentation added.
6409         (loadSystemColors): Exception documentation added.
6410         (setDynamicLayout): Exception documentation added.
6411         (isDynamicLayoutSet): Exception documentation added.
6412         (isDynamicLayoutActive): Exception documentation added.
6413         (getScreenSize): Exception documentation added.
6414         (getScreenResolution): Exception documentation added.
6415         (getScreenInsets): Exception documentation added.
6416         (getColorModel): Exception documentation added.
6417         (getSystemClipboard): Exception documentation added.
6418         (getSystemSelection): Exception documentation added.
6419         (getMenuShortcutKeyMask): Exception documentation added.
6420         (getSystemEventQueue): Exception documentation added.
6421         * java/awt/Window.java:
6422         Reindented some code.
6423         (Window): Centralized implementation, documentation added.
6424         (finalize): Documentation added.
6425         (hide): Fixed typo in comment.
6426         (getWindowListeners): Documentation added.
6427         * java/awt/color/ColorSpace.java
6428         (toRGB): Documentation added.
6429         * java/awt/color/ICC_ColorSpace.java
6430         (ICC_ColorSpace): Documentation added.
6431         (toRGB): Throw exception, documentation added.
6432         (fromRGB): Throw exception, documentation added.
6433         (toCIEXYZ): Documentation added.
6434         (fromCIEXYZ): Documentation added.
6435         (getMinValue): Documentation added.
6436         (getMaxValue): Documentation added.
6437         * java/awt/geom/Dimension2D.java
6438         (clone): Documentation added.
6439         * java/awt/geom/GeneralPath.java
6440         (clone): Documentation added.
6441         * java/awt/geom/Line2D.java
6442         (clone): Documentation added.
6443         * java/awt/geom/QuadCurve2D.java
6444         (clone): Documentation added.
6445         * java/awt/image/ColorModel.java
6446         (ColorModel): Throw exception, documentation added.
6447         * java/awt/image/ImageFilter.java
6448         (clone): Doesnt throw CloneNotSupportedException.
6450 2003-01-14  Andrew Haley  <aph@redhat.com>
6452         * java/lang/natRuntime.cc (_load): StackTrace access needs to be
6453         in a try block.
6455 2003-01-10  Andrew Haley  <aph@redhat.com>
6457         * include/dwarf2-signal.h: Remove x86_64.
6458         * configure.host (x86_64 DIVIDESPEC): Remove.
6459         * include/x86_64-signal.h: New file.
6460         * configure.in: Regenerate.
6462 2003-01-10  Michael Koch  <konqueror@gmx.de>
6464         * java/net/DatagramSocket.java
6465         (ch): Description added.
6466         (remotePort): Initialize with -1.
6467         (connect): Doesnt throws SocketException.
6468         * java/net/MulticastSocket.java
6469         (setInterface): Merge with Classpath.
6470         * java/net/ServerSocket.java
6471         (closed): New member variable.
6472         (bind): Check if socket is closed.
6473         (close): Close an associated channel too, set new value to closed.
6474         (isBound): Reindented.
6475         (isClosed): Implemented.
6476         * java/net/Socket.java
6477         (closed): New member variable.
6478         (bind): Check if socket is closed.
6479         (connect): Check if socket is closed.
6480         (close): Close an associated channel too, set new value to closed.
6481         (isClosed): Implemented.
6483 2003-01-10  Michael Koch  <konqueror@gmx.de>
6485         * java/awt/DisplayMode.java
6486         (equals): Fixed argument type and implementation.
6488 2003-01-07  Tom Tromey  <tromey@redhat.com>
6490         * include/posix.h (_Jv_platform_usleep): Wrap in ifdef
6491         JV_HASH_SYNCHRONIZATION.
6492         * include/win32.h (_Jv_platform_usleep): Wrap in ifdef
6493         JV_HASH_SYNCHRONIZATION.
6495 2003-01-07  Michael Koch  <konqueror@gmx.de>
6497         * java/net/DatagramSocket.java:
6498         Added classpath license info.
6499         (DatagramSocket): Merged description with classpath.
6500         (close): Merged description with classpath.
6501         (getChannel): Merged description with classpath.
6502         (getInetAddress): Merged description with classpath.
6503         (getPort): Merged description with classpath.
6504         (getLocalAddress): Merged description with classpath.
6505         (getLocalPort): Merged description with classpath.
6506         (getSoTimeout): Merged description with classpath.
6507         (setSoTimeout): Merged description with classpath.
6508         (getSendBufferSize): Merged description with classpath.
6509         (setSendBufferSize): Merged description with classpath.
6510         (getReceiveBufferSize): Merged description with classpath.
6511         (setReceiveBufferSize): Merged description with classpath.
6512         
6513 2003-01-04  Tom Tromey  <tromey@redhat.com>
6515         * java/awt/List.java: Merged with Classpath.
6517 2003-01-03  Mark Wielaard  <mark@klomp.org>
6519         * java/io/FileDescriptor.java (position): New private field.
6520         * java/io/natFileDescriptorPosix.cc (write): Up position.
6521         (setLength): Use and set position.
6522         (seek): Set position.
6523         (getFilePointer): Return position.
6524         (read): Up position.
6526 2003-01-03  Mark Wielaard  <mark@klomp.org>
6528         Merge with Classpath:
6529         * java/io/ObjectStreamClass.java (lookup): Split method and call
6530         lookupForClassObject().
6531         (lookupForClassObject): New method.
6532         (isProxyClass): New field.
6533         (setClass): Set isProxyClass, add object to classLookupTable, set
6534         superClass and calculateOffsets.
6535         (ObjectStreamClass): Set isProxyClass. Only set uid when Serializable
6536         and not a proxy class.
6537         (setFields): Set accessible true for serialPersistentFields.
6538         (getClassUID): Same for suid. And check if suid is of type long.
6539         (hasClassInitializer): Don't throw NoSuchMethodError.
6541 2003-01-03  Mark Wielaard  <mark@klomp.org>
6543         * java/io/FileInputStream.java (finalize): Don't explicitly
6544         finalize FileDescriptor.
6546 2003-01-03  Jeff Sturm  <jsturm@one-point.com>
6548         * configure.host (sparc*-*): Enable bytecode interpreter.
6550 2003-01-03  Dhek Bhun Kho  <bhun@chello.nl>
6552         * gnu/java/rmi/server/UnicastServerRef.java (unexportObject):
6553         Don't throw RemoteException.
6554         * java/rmi/server/UnicastRemoteObject.java (unexportObject): Don't
6555         throw RemoteException.
6557 2003-01-03  Joerg Brunsmann  <joerg_brunsmann@yahoo.de>
6559         * gnu/gcj/protocol/http/Connection.java (proxyPort, proxyInUse,
6560         proxyHost): New static fields.
6561         (<clinit>): Initialize new fields.
6562         (connect): Use proxy if necessary.
6563         (usingProxy): Implement.
6565 2003-01-03  Eric Blake  <ebb9@email.byu.edu>
6567         * java/util/TreeMap.java (fabricateTree): Fix off-by-one error.
6568         (TreeIterator.remove): Prefer IllegalStateException over
6569         ConcurrentModificationException, to match Sun.
6571 2002-12-22  Anthony Green  <green@redhat.com>
6573         * boehm.cc (_Jv_MarkObj): Mark the protectionDomain of a class.
6575 2003-01-02  Mark Wielaard  <mark@klomp.org>
6577         * java/net/HttpURLConnection.java (HTTP_NOT_IMPLEMENTED): Must be
6578         public.
6579         (HTTP_USE_PROXY): Add field.
6580         (getResponseVals): Only set responseCode when not yet explicitly
6581         set by subclass.
6583 2003-01-02  Artur Biesiadowski  <abies@pg.gda.pl>
6584             Mark Wielaard  <mark@klomp.org>
6586         * java/util/zip/ZipFile.java (entries): Now HashMap.
6587         (readLeShort(DataInput, byte[])): Read from given byte array.
6588         (readLeInt(DataInput, byte[]): Likewise.
6589         (readLeShort(byte[] b, int off)): New method.
6590         (readLeInt(byte[] b, int off)): Likewise.
6591         (readEntries): Use byte arrays to read info in bigger chunks.
6592         (getEntries): Return HashMap.
6593         (getEntry): Use HashMap.
6594         (locBuf): New private field.
6595         (checkLocalHeader): Use locBuf to read info in one chunk.
6596         (getInputStream): Use entries HashMap, wrap PartialInputStream
6597         in BufferedInputStream.
6598         (ZipEntryEnumeration): Use HashMap and Interator.
6600 2003-01-02  Mark Wielaard  <mark@klomp.org>
6601             Jeroen Frijters  <jeroen@sumatra.nl>
6603         * java/net/URLClassLoader.java (Resource.getCodeSource):
6604         Fix check certs == null.
6605         (getCanonicalFileURL): Removed method.
6606         (JarURLLoader): Don't call removed method.
6607         (FileURLLoader): Likewise.
6608         (FileURLLoader.getResource): Don't canonicalize file name.
6610 2003-01-01  Tom Tromey  <tromey@redhat.com>
6612         * Makefile.in: Rebuilt.
6613         * Makefile.am (rmi_java_source_files): Added RMIClassLoaderSpi.
6614         * java/awt/AlphaComposite.java, java/awt/BasicStroke.java,
6615         java/awt/BufferCapabilities.java, java/awt/Button.java,
6616         java/awt/CheckboxMenuItem.java, java/awt/Choice.java,
6617         java/awt/Container.java, java/awt/Cursor.java,
6618         java/awt/EventQueue.java, java/awt/FileDialog.java,
6619         java/awt/Graphics2D.java, java/awt/Label.java, java/awt/Menu.java,
6620         java/awt/MenuBar.java, java/awt/MenuComponent.java,
6621         java/awt/PopupMenu.java, java/awt/ScrollPane.java,
6622         java/awt/Scrollbar.java, java/awt/TextArea.java,
6623         java/awt/TextField.java, java/awt/color/CMMException.java,
6624         java/awt/color/ColorSpace.java, java/awt/color/ICC_Profile.java,
6625         java/awt/color/ProfileDataException.java,
6626         java/awt/datatransfer/Clipboard.java,
6627         java/awt/datatransfer/DataFlavor.java,
6628         java/awt/datatransfer/FlavorMap.java,
6629         java/awt/datatransfer/SystemFlavorMap.java,
6630         java/awt/dnd/DragGestureEvent.java,
6631         java/awt/dnd/DragGestureRecognizer.java,
6632         java/awt/dnd/DragSource.java, java/awt/dnd/DropTarget.java,
6633         java/awt/event/WindowEvent.java, java/awt/geom/PathIterator.java,
6634         java/awt/im/InputMethodHighlight.java,
6635         java/io/PipedOutputStream.java, java/io/PipedWriter.java,
6636         java/rmi/server/RMIClassLoader.java: Merged from Classpath.
6638         * gnu/awt/j2d/Graphics2DImpl.java (drawImage): Changed type of
6639         `op' to BufferedImageOp.
6641 2002-12-31  Tom Tromey  <tromey@redhat.com>
6643         Fix for PR libgcj/7416:
6644         * javax/naming/InitialContext.java (init): Use
6645         gnu.classpath.home.url.
6646         * java/security/Security.java: Use new properties.
6647         (loadProviders): Accept base url; use it.
6648         * java/lang/System.java: Document gnu.classpath.vm.shortname, and
6649         gnu.classpath.home.url.
6650         (gnu.classpath.home.url): Define.
6651         (gnu.classpath.vm.shortname): Likewise.
6653 2002-12-31  Tom Tromey  <tromey@redhat.com>
6654             Ranjit Mathew  <rmathew@hotmail.com>
6656         Fix for PR libgcj/8997:
6657         * java/lang/natObject.cc (spin): Use _Jv_platform_usleep.
6658         Include platform.h.
6659         * include/posix.h (_Jv_platform_usleep): New function.
6660         * include/win32.h (_Jv_platform_usleep): New function.
6662 2002-12-29  Tom Tromey  <tromey@redhat.com>
6664         * gcj/javaprims.h: Updated.
6665         * scripts/classes.pl (scan): Removed stray semicolon.
6667 2002-12-30  Mark Wielaard  <mark@klomp.org>
6669         * java/net/URLStreamHandler.java (toExternalForm): Ignore port
6670         if zero or smaller.
6672 2002-12-30  Mark Wielaard  <mark@klomp.org>
6674         * java/util/Properties (formatForOutput): Don't fall through to
6675         default case after escaping character.
6677 2002-12-30  Mark Wielaard  <mark@klomp.org>
6679         * java/lang/StringBuffer.java (getChars): Remove wrong dstOffset check
6680         against count.
6682 2002-12-27  Mark Mitchell  <mark@codesourcery.com>
6684         * boehm.cc: Remove stray semicolon.
6685         * interpret.cc: Likewise.
6686         * prims.cc: Likewise.
6687         * verify.cc (_Jv_BytecodeVerifier::verify_fail): Move definition
6688         earlier to ensure default arguments are processed.
6689         * gcj/array.h (JArray): Add forward declaration.
6690         (elements): Likewise.
6691         * gcj/javaprim.h: Remove stray semicolons.
6692         * include/bohm-gc.h: Likewise.
6693         * include/jni.h: Likewise.
6694         * include/jvm.h: Likewise.
6695         * java/lang/Class.h (_Jv_GetArrayClass): Declare _Jv_NewArrayClass.
6696         
6697 2002-12-23  Jeff Sturm  <jsturm@one-point.com>
6699         * exception.cc (PERSONALITY_FUNCTION): Clear least-significant-bit
6700         of catch_type.
6701         * java/lang/natClass.cc (initializeClass): Link vtable, otable,
6702         idt tables after initializing superclass.
6703         * java/lang/natClassLoader.cc (uaddr): New typedef.
6704         (_Jv_PrepareCompiledClass): Resolve superclass, interfaces
6705         if they are constant pool indicies.  Don't link vtable, otable yet.
6707 2002-12-21  Anthony Green  <green@redhat.com>
6709         * Makefile.am: Move org.xml.sax and org.w3c.dom into their own
6710         libraries.
6711         * Makefile.in: Rebuilt.
6713 2002-12-19  Anthony Green  <green@redhat.com>
6715         * Makefile.am (ordinary_java_source_files): Add
6716         org/xml/sax/helpers/NewInstance.java.
6717         * Makefile.in: Rebuilt.
6718         * org/xml/sax/package.html, org/xml/sax/ext/package.html,
6719         org/xml/sax/helpers/package.html: New files.
6720         * org/xml/sax/*: Upgrade to SAX 2.0.1 release from
6721         http://www.saxproject.org.
6723 2002-12-19  Andrew Haley  <aph@redhat.com>
6725         * java/util/natResourceBundle.cc: Include
6726         ArrayIndexOutOfBoundsException.h.
6727         (getCallingClassLoader): Don't put upper bound on stack search.
6728         Catch ArrayIndexOutOfBoundsException.
6730 2002-12-19  Tom Tromey  <tromey@redhat.com>
6732         * libtool-version: Increased `current'.
6734 2002-12-19  Tom Tromey  <tromey@redhat.com>
6736         * java/lang/natClassLoader.cc (defineClass0): Removed erroneous
6737         comment.
6738         * java/lang/ClassLoader.java (defineClass): Use chained
6739         exception when rethrowing.
6740         * defineclass.cc (handleClassBegin): Mark class as interpreted.
6741         * java/lang/reflect/Modifier.java (INVISIBLE, INTERPRETED): New
6742         constants.
6743         * resolve.cc (_Jv_PrepareMissingMethods): New function.
6744         (_Jv_PrepareClass): Use it.
6745         * include/java-interp.h (_Jv_IsInterpretedClass): Rewrote.
6746         (_Jv_InterpClass): _Jv_PrepareMissingMethods now friend.
6747         * java/lang/Class.h (Class::getModifiers): Mask with ALL_FLAGS.
6748         (Class): _Jv_PrepareMissingMethods now friend.
6749         * java/lang/natClassLoader.cc (defineClass0): Use JvSynchronize.
6750         Record `NULL' for system class loader.
6751         (_Jv_RegisterInitiatingLoader): Use JvSynchronize.  Special case
6752         system class loader.
6753         (_Jv_FindClassInCache): Likewise.
6754         (_Jv_UnregisterClass): Use JvSynchronize.  Free old loader info.
6755         (_Jv_FindClass): Special case system class loader.
6756         * java/lang/natClass.cc (_Jv_abstractMethodError): New function.
6757         (_Jv_SetVTableEntries): Put _Jv_abstractMethodError into empty
6758         vtable slots.
6759         (_Jv_LayoutVTableMethods): Don't generate vtable slot for a method
6760         in a final class.
6761         (_getDeclaredMethod): Don't return synthetic methods.
6762         (getDeclaredMethods): Likewise.
6763         (_getMethod): Likewise.
6764         (_getMethods): Likewise.
6766 2002-12-18  Raif Naffah  <raif@fl.net.au>
6768         * java/math/BigInteger.java (euclidInv): Make sure quot and rem are in
6769         canonical form after divide().
6770         (modInverse): Likewise.
6772 2002-12-13  Casey Marshall  <rsdio@metastatic.org>
6773             Mark Wielaard  <mark@klomp.org>
6775         * java/security/SecurityRandom (digest): Removed field.
6776         (SecureRandom): Check all providers for case-insensitive SecureRandom
6777         implementation. Don't ignore classname == null. Fallback to SHA1PRNG
6778         if necessary.
6779         (getInstance(String,Provider,boolean): New method.
6780         (getInstance(String)): Use new method.
6781         (getInstance(String,String)): Likewise.
6782         (getInstance(String,Provider)): Likewise.
6784 2002-12-13  Casey Marshall  <rsdio@metastatic.org>
6786         * java/security/Security.java (loadProviders): Increment i only once.
6788 2002-12-12  Mark Wielaard  <mark@klomp.org>
6790         * java/lang/ClassLoader.java (resolveClass0): Transform
6791         ClassNotFoundException to NoClassDefFoundError. Transform all other
6792         throwables to LinkageError.
6794 2002-12-11  Tom Tromey  <tromey@redhat.com>
6796         * java/lang/ClassLoader.java (findLoadedClass): Now synchronized.
6798         * java/lang/ClassLoader.java (loadedClasses): New field.
6799         (defineClass): Fixed indentation.  Put new class in
6800         loadedClasses.
6801         (findLoadedClass): Implement here.
6802         * java/lang/natClassLoader.cc (findLoadedClass): Removed.
6804 2002-12-10  Tom Tromey  <tromey@redhat.com>
6806         * Makefile.in: Rebuilt.
6807         * Makefile.am (nat_source_files): Added natVMClassLoader.cc.
6808         * gnu/gcj/runtime/natVMClassLoader.cc: New file.
6809         (gnu::gcj::runtime::VMClassLoader::findClass): Moved here.
6810         * java/lang/natClassLoader.cc
6811         (gnu::gcj::runtime::VMClassLoader::findClass): Removed.
6813 2002-12-10  Mark Wielaard  <mark@klomp.org>
6814             Tom Tromey  <tromey@redhat.com>
6816         * java/net/URLClassLoader.java (getCanonicalFileURL): New method.
6817         (JarURLLoader): Use it.
6818         (FileURLLoader): Likewise.
6819         (JarURLResource.getURL): Use chained exception.
6820         (FileResource.getURL): Likewise.
6821         (FileURLLoader.getResource): Use canonical file name.
6822         (addURL): Indentation fix.
6824 2002-12-10  Tom Tromey  <tromey@redhat.com>
6826         * include/win32.h: Fixed typo in "DISABLE_JAVA_NET".
6827         From Laurent Bardet <l.bardet@magic.fr>.
6829 2002-12-09  Tom Tromey  <tromey@redhat.com>
6831         * include/win32.h (_Jv_platform_solib_prefix): New define.
6832         (_Jv_platform_solib_suffix): Likewise.
6833         * include/posix.h (_Jv_platform_solib_prefix): New define.
6834         (_Jv_platform_solib_suffix): Likewise.
6835         * java/lang/natRuntime.cc: Include StackTrace.h.
6836         (_load): Use findLibrary and new platform defines.
6837         (nativeGetLibname): Use new platform defines.
6839         * java/util/natResourceBundle.cc (getCallingClassLoader): Assume
6840         `t' won't be null.
6842 2002-12-08  Mark Wielaard  <mark@klomp.org>
6844         * gnu/gcj/protocol/jar/Connection.java (getJarFile): download and
6845         cache remote jar files.
6846         * gnu/gcj/runtime/VMClassLoader.java: Don't construct jar URL, only
6847         add File.separator to URL when it is a directory.
6848         * java/lang/ClassLoader.java: Add Classpath javadoc.
6849         (parent): final.
6850         (getParent): Add (disabled) security check.
6851         (findLibrary): New default method.
6852         * java/net/JarURLConnection.java (getManifest): Implement.
6853         (getInputStream): Only create InputStream when entry exists.
6854         (getHeaders): Only use jarFileURLConnection or JarEntry to set length
6855         when they exist.
6856         * java/net/URLClassLoader.java: New/Rewritten version from Classpath.
6858 2002-12-08  Mark Wielaard  <mark@klomp.org>
6860         * java/util/ResourceBundle.java (resourceBundleCache): Not final.
6861         (lastDefaultLocale): New field.
6862         (getBundle): When Locale.getDefault != lastDefaultLocale reset
6863         resourceBundleCache.
6865 2002-12-06  Mark Wielaard  <mark@klomp.org>
6867         * java/net/InetAddress.java (toString): Use hostname when not null,
6868         don't do an explicit reverse getHostName() lookup.
6869         * java/net/Socket.java (setSocketImplFactory): When fac == null throw
6870         NullPointerException.
6872 2002-12-06  Tom Tromey  <tromey@redhat.com>
6874         * include/java-interp.h (class _Jv_InterpMethod): Added
6875         JV_MARKOBJ_DECL.
6876         * boehm.cc (_Jv_MarkObj): Consolidated interpreter code.  Also
6877         mark `prepared' field of interpreted method.
6878         * interpret.cc (compile): Use _Jv_AllocBytes.
6880 2002-12-05  Andrew Haley  <aph@redhat.com>
6882         * gnu/gcj/runtime/natStackTrace.cc (fillInStackTrace): Throw
6883         #ifdef (HAVE_BACKTRACE) around the whole function body.
6885 2002-12-05  Tom Tromey  <tromey@redhat.com>
6887         * java/lang/Class.h (_Jv_SetVTableEntries): Updated declaration.
6888         * resolve.cc: Don't include AbstractMethodError.h.
6889         (_Jv_abstractMethodError): Removed.
6890         * defineclass.cc (handleMethodsBegin): Initialize method index to
6891         -1.
6892         * java/lang/natClass.cc (_Jv_LayoutVTableMethods): Don't set
6893         method index for "new" final method.
6894         (_Jv_SetVTableEntries): Compare index against -1 instead of using
6895         isVirtualMethod.  Added `flags' argument.
6896         (_Jv_MakeVTable): Throw exception for abstract method in concrete
6897         class.
6899 2002-12-04  Tom Tromey  <tromey@redhat.com>
6901         * java/net/SocketPermission.java (hashCode): Rewrote.
6903 2002-12-04  Tom Tromey  <tromey@redhat.com>
6905         * Makefile.in: Rebuilt.
6906         * Makefile.am (nat_source_files): Added natVMSecurityManager,
6907         natResourceBundle.
6908         * java/util/ResourceBundle.java (Security): Removed.
6909         (getCallingClassLoader): Now native.
6910         * java/util/natResourceBundle.cc: New file.
6911         * java/lang/natVMSecurityManager.cc: New file.
6912         * java/lang/VMSecurityManager.java (getClassContext): Now native.
6914 2002-12-03  Mark Wielaard  <mark@klomp.org>
6916         * java/util/jar/JarFile.java (manifest): Not final.
6917         (manifestRead): New field.
6918         (JarFile): Don't read Manifest in constructor.
6919         (getManifest): New method.
6920         (JarEnumeration.nextElement): Use new method.
6921         (getEntry): Likewise.
6922         * java/util/zip/ZipFile.java (name): Final.
6923         (raf): Likewsie.
6924         (entries): Change type to Hashtable.
6925         (closed): New field.
6926         (ZipFile): Don't read enties in constructor.
6927         (readEntries): Use Hashtable.
6928         (close): Set new close flag and set entries to null inside
6929         synchronized block.
6930         (entries): Contruct enumeration using new getEntries() method and
6931         entries Hashtable.
6932         (getEntryIndex): Removed.
6933         (getEntries): New method.
6934         (getEntry): Use new getEntries() method and entries Hastable.
6935         (getInputStream): Likewise.
6936         (size): Return getEntries().size().
6937         (ZipEntryEnumeration): Wrap entries Hashtable elements.
6938         * java/util/zip/ZipEntry.java (cal): Don't initialize.
6939         (time): Removed
6940         (dostime): New field.
6941         (zipFileIndex): Removed.
6942         (ZipEntry(ZipEntry)): Copy dostime.
6943         (setDOSTime): Now final and doesn't convert dos time.
6944         (getDOSTime): Likewise.
6945         (setTime): Convert dos time.
6946         (getTime): Likewise.
6947         (getCalendar): New method.
6948         (setExtra): Use setTime().
6949         * java/util/zip/ZipInputStream.java (getNextEntry): Format error msg.
6951 2002-12-03  Tom Tromey  <tromey@redhat.com>
6953         * java/lang/Character.java (forDigit): Formatting fix.
6955 2002-12-03  Raif Naffah  <raif@fl.net.au>
6957         * java/security/spec/DSAParameterSpec.java (getP): Return p, not q.
6958         * java/security/spec/DSAPrivateKeySpec.java (getP): Likewise.
6959         * java/security/spec/DSAPublicKeySpec.java (getP): Likewise.
6961 2002-12-03  Andrew Haley  <aph@redhat.com>
6963         * java/lang/natClassLoader.cc (_Jv_PrepareCompiledClass): Call
6964         _Jv_PushClass.
6965         (_Jv_InitNewClassFields): Set protectionDomain and chain = NULL.
6966         (_Jv_PopClass): New.
6967         (_Jv_PushClass): New.
6968         * java/lang/natClass.cc (forName (jstring)): Use a StackTrace to
6969         discover the ClassLoader of our caller.
6970         (_Jv_CheckArrayStore): Don't check that a class is assignment
6971         compatible with Object.
6972         * java/lang/natVMTHrowable.cc: Delete.
6973         * gnu/gcj/runtime/StackTrace.java: New, partly copied from
6974         java.lang.VMThrowable.
6975         (StackTrace(), StackTrace(int)): New constructors.
6976         (classAt, methodAt, update, methodAtAddress): New methods.
6977         (map): New field.
6978         * java/lang/VMThrowable.java: Use StackTrace instead of
6979         natVMTHrowable.
6980         * java/lang/Class.h (getClassLoaderInternal): New.
6981         (class Class): Be friendly with _Jv_PopClass and _Jv_PushClass.
6982         Be friendly with gnu::gcj::runtime::StackTrace.
6983         (Object.chain): New field.
6984         * include/java-interp.h (class _Jv_InterpMethod): Be friendly with
6985         gnu::gcj::runtime::StackTrace.
6986         * gnu/gcj/runtime/natStackTrace.cc: New file.
6987         * gnu/gcj/runtime/MethodRef.java: New file.
6988         * prims.cc (_Jv_NewObjectArray): Use getClassLoaderInternal()
6989         instead of getClassLoader().
6990         * verify.cc (class _Jv_BytecodeVerifier): Likewise.
6991         java::lang::VMThrowable.
6992         * Makefile.am (core_java_source_files): Add MethodRef.java,
6993         StackTrace.java.
6994         (nat_source_files): Remove natVMThrowable.cc; add natStackTrace.cc.
6995         * Makefile.in: Rebuild.
6997 2002-12-02  Kaz Kojima  <kkojima@gcc.gnu.org>
6999         * configure.host [sh-linux* | sh[34]*-linux*]: Don't set
7000         CHECKREFSPEC and EXCEPTIONSPEC. Set can_unwind_signal to
7001         yes also for sh-linux* and sh[34]*-linux*.
7002         * configure.in: Add sh-linux* and sh[34]*-linux* cases and
7003         set SIGNAL_HANDLER to use DWARF2 exception for them.
7004         * configure: Regenerate.
7006 2002-12-02  Tom Tromey  <tromey@redhat.com>
7008         * jni.cc: Added `name' argument.
7009         * include/jni.h (struct JNINativeInterface) [DefineClass]: Added
7010         `const char *' argument.
7011         (class _Jv_JNIEnv) [DefineClass]: Likewise.
7013 2002-12-01  Tom Tromey  <tromey@redhat.com>
7015         Bug compatibility, for PR libgcj/8738:
7016         * java/io/CharArrayWriter.java (close): Do nothing.
7017         (flush): Likewise.
7018         (reset): Don't touch `closed'.
7019         (write(int)): Don't throw IOException.
7020         (write(char[],int,int)): Likewise.
7021         (write(String,int,int)): Likewise.
7022         (closed): Removed.
7024 2002-12-01  Mark Wielaard  <mark@klomp.org>
7026         * java/lang/SecurityManager.java: Remerge comments, indenting and
7027         checkXXX methods with Classpath.
7029 2002-11-29  Scott Gilbertson  <scottg@mantatest.com>
7031         * java/awt/image/ColorModel.java (getUnnormalizedComponents,
7032         getNormalizedComponents): Fix calculation which was using one too
7033         many bits in the unnormalized format.
7035 2002-11-29  Gary Benson  <gbenson@redhat.com>
7037         For PR libgcj/8759:
7038         * java/beans/Introspector.java (flushCaches): New method.
7039         (flushFromCaches): Likewise.
7041 2002-11-29  Michael Koch <konqueror@gmx.de>
7043         * java/nio/channels/DatagramChannel.java
7044         (open): Added exception documentation.
7045         (write): Added exception documentation.
7046         (connect): Added exception documentation.
7047         (disconnect): Added exception documentation.
7048         (isConnected): Added exception documentation.
7049         (read): Added exception documentation.
7050         (receive): Added exception documentation.
7051         (send): Added exception documentation.
7052         (validOps): Added exception documentation.
7053         * java/nio/channels/SocketChannel.java
7054         (open): Added exception documentation.
7055         (read): Added exception documentation.
7056         (write): Added exception documentation.
7057         (connect): Added exception documentation.
7058         (finishConnect): Added exception documentation.
7060 2002-11-29  Michael Koch <konqueror@gmx.de>
7062         * gnu/java/nio/DatagramChannelImpl:
7063         (fd): New member variable to store file descriptor of socket.
7064         * gnu/java/nio/SelectionKeyImpl.java:
7065         (ops): Removed.
7066         (readyOps): New member variable.
7067         (interestOps): New member variable.
7068         (readyOps): Implemented.
7069         (readyOps): New method to set member variable readyOps.
7070         (interestOps): Replaced ops by interestOps.
7071         * gnu/java/nio/SelectorImpl.java:
7072         (SelectorImpl): Initialize key sets.
7073         (select): Call select with -1 instead of Long.MAX_VALUE).
7074         (java_do_select): Make it a native method.
7075         (getFDsAsArray): New helper method.
7076         (select): Remove canceled keys, give only interested file discriptors
7077         to java_do_select, set ready ops.
7078         (add): No need to initialize keys set here.
7079         (add_selected): No need to initialize selected set here.
7080         (deregisterCanceledKeys): New helper method.
7081         (register): Set interest ops, set attachments, added handling of datagram
7082         channels.
7083         * gnu/java/nio/ServerSocketChannelImpl:
7084         (SocketAccept): Renamed from NioSocketAccept.
7085         (implConfigureBlocking): Implemented.
7086         (accept): Use SocketAccept instead of NioSocketAccept.
7087         * gnu/java/nio/SocketChannelImpl:
7088         Reactivate native methods.
7090 2002-11-29  Michael Koch <konqueror@gmx.de>
7092         * gnu/java/nio/natByteBufferImpl.cc,
7093         gnu/java/nio/natCharBufferImpl.cc,
7094         gnu/java/nio/natDoubleBufferImpl.cc,
7095         gnu/java/nio/natFloatBufferImpl.cc,
7096         gnu/java/nio/natIntBufferImpl.cc,
7097         gnu/java/nio/natLongBufferImpl.cc,
7098         gnu/java/nio/natSelectorImpl.cc,
7099         gnu/java/nio/natServerSocketChannelImpl.cc,
7100         gnu/java/nio/natShortBufferImpl.cc,
7101         gnu/java/nio/natSocketChannelImpl.cc:
7102         New files that implement native functionalities.
7104 2002-11-29  Michael Koch <konqueror@gmx.de>
7106         * gnu/java/nio/ByteBufferImpl.java
7107         (ByteBufferImpl): Moved position() after limit.
7108         (nio_*): Use native implementation.
7109         * gnu/java/nio/CharBufferImpl.java:
7110         Reformated.
7111         (endian): New member variable string endianess of buffer.
7112         (CharBufferImpl): Moved position() after limit.
7113         (nio_*): Use native implementation.
7114         (subSequence): Implemented.
7115         * gnu/java/nio/DoubleBufferImpl.java
7116         (DoubleBufferImpl): Moved position() after limit.
7117         (nio_*): Use native implementation.
7118         * gnu/java/nio/FloatBufferImpl.java
7119         Reformated.
7120         (FloatBufferImpl): Moved position() after limit.
7121         (nio_*): Use native implementation.
7122         * gnu/java/nio/IntBufferImpl.java
7123         Added needed imports, Reformated.
7124         (IntBufferImpl): Moved position() after limit.
7125         (nio_*): Use native implementation.
7126         * gnu/java/nio/LongBufferImpl.java
7127         Reformated.
7128         (LongBufferImpl): Moved position() after limit.
7129         (nio_*): Use native implementation.
7130         * gnu/java/nio/ShortBufferImpl.java
7131         Reformated.
7132         (ShortBufferImpl): Moved position() after limit.
7133         (nio_*): Use native implementation.
7135 2002-11-27  Julian Dolby  <dolby@us.ibm.com>
7137         * java/util/Locale.java (toString): Improve efficiency if country
7138         and variant are both empty.
7140 2002-11-26  Tom Tromey  <tromey@redhat.com>
7142         * verify.cc (pop_init_ref): New method.
7143         (verify_instructions_0) [op_iaload, op_laload, op_faload,
7144         op_daload, op_aaload, op_baload, op_caload, op_saload, op_iastore,
7145         op_lastore, op_fastore, op_dastore, op_aastore, op_bastore,
7146         op_castore, op_sastore, op_areturn, op_arraylength, op_checkcast,
7147         op_instanceof, op_monitorenter, op_monitorexit]: Use it.
7148         (verify_instructions_0) [op_invokevirtual, op_invokespecial,
7149         op_invokestatic, op_invokeinterface]:  Use pop_init_ref.  Don't
7150         let `this' argument be uninitialized.  Don't let `null' be passed
7151         as `this' to construtor.
7153 2002-11-26  Mark Wielaard  <mark@klomp.org>
7155         * javax/transaction/HeuristicCommitException.java: Classpath merge.
7156         * javax/transaction/HeuristicMixedException.java: Likewise.
7157         * javax/transaction/HeuristicRollbackException.java: Likewise.
7158         * javax/transaction/InvalidTransactionException.java: Likewise.
7159         * javax/transaction/NotSupportedException.java: Likewise.
7160         * javax/transaction/RollbackException.java: Likewise.
7161         * javax/transaction/Status.java: Likewise.
7162         * javax/transaction/Synchronization.java: Likewise.
7163         * javax/transaction/SystemException.java: Likewise.
7164         * javax/transaction/Transaction.java: Likewise.
7165         * javax/transaction/TransactionManager.java: Likewise.
7166         * javax/transaction/TransactionRequiredException.java: Likewise.
7167         * javax/transaction/TransactionRolledbackException.java: Likewise.
7168         * javax/transaction/UserTransaction.java: Likewise.
7169         * javax/transaction/xa/XAException.java: Likewise.
7170         * javax/transaction/xa/XAResource.java: Likewise.
7171         * javax/transaction/xa/Xid.java: Likewise.
7173 2002-11-26  Andreas Tobler  <a.tobler@schweiz.ch>
7175         * java/net/natPlainDatagramSocketImpl.cc (socklen_t): Don't
7176         define.
7177         * java/net/natPlainSocketImpl.cc (socklen_t): Don't define.
7178         * include/posix.h (socklen_t): Define if not already defined.
7180 2002-11-25  Tom Tromey  <tromey@redhat.com>
7182         * verify.cc (type::compatible): Backed out broken change.
7184         * verify.cc (type::compatible): Check initialization status
7185         first.
7186         * interpret.cc (run) [insn_invokespecial, invokespecial_resolved]:
7187         Don't use NULLCHECK.
7189 2002-11-23  H.J. Lu <hjl@gnu.org>
7191         * acinclude.m4 (AC_COMPILE_CHECK_SIZEOF): Removed.
7192         Include ../config/accross.m4.
7193         * aclocal.m4; Rebuild.
7194         * configure: Likewise.
7196 2002-11-23  Mark Wielaard  <mark@klomp.org>
7198         * javax/naming/AuthenticationException.java: Update copyright header.
7199         * javax/naming/AuthenticationNotSupportedException.java: Likewise.
7200         * javax/naming/Binding.java: Likewise.
7201         * javax/naming/CannotProceedException.java: Likewise.
7202         * javax/naming/CommunicationException.java: Likewise.
7203         * javax/naming/CompositeName.java: Likewise.
7204         * javax/naming/CompoundName.java: Likewise.
7205         * javax/naming/ConfigurationException.java: Likewise.
7206         * javax/naming/Context.java: Likewise.
7207         * javax/naming/ContextNotEmptyException.java: Likewise.
7208         * javax/naming/InitialContext.java: Likewise.
7209         * javax/naming/InsufficientResourcesException.java: Likewise.
7210         * javax/naming/InterruptedNamingException.java: Likewise.
7211         * javax/naming/LimitExceededException.java: Likewise.
7212         * javax/naming/LinkException.java: Likewise.
7213         * javax/naming/LinkLoopException.java: Likewise.
7214         * javax/naming/LinkRef.java: Likewise.
7215         * javax/naming/MalformedLinkException.java: Likewise.
7216         * javax/naming/NameAlreadyBoundException.java: Likewise.
7217         * javax/naming/NameClassPair.java: Likewise.
7218         * javax/naming/NameNotFoundException.java: Likewise.
7219         * javax/naming/NameParser.java: Likewise.
7220         * javax/naming/NamingEnumeration.java: Likewise.
7221         * javax/naming/NamingSecurityException.java: Likewise.
7222         * javax/naming/NoInitialContextException.java: Likewise.
7223         * javax/naming/NoPermissionException.java: Likewise.
7224         * javax/naming/NotContextException.java: Likewise.
7225         * javax/naming/OperationNotSupportedException.java: Likewise.
7226         * javax/naming/PartialResultException.java: Likewise.
7227         * javax/naming/Reference.java: Likewise.
7228         * javax/naming/Referenceable.java: Likewise.
7229         * javax/naming/ReferralException.java: Likewise.
7230         * javax/naming/ServiceUnavailableException.java: Likewise.
7231         * javax/naming/SizeLimitExceededException.java: Likewise.
7232         * javax/naming/TimeLimitExceededException.java: Likewise.
7233         * javax/naming/directory/Attribute.java: Likewise.
7234         * javax/naming/directory/AttributeInUseException.java: Likewise.
7235         * javax/naming/directory/AttributeModificationException.java: Likewise.
7236         * javax/naming/directory/Attributes.java: Likewise.
7237         * javax/naming/directory/BasicAttribute.java: Likewise.
7238         * javax/naming/directory/BasicAttributes.java: Likewise.
7239         * javax/naming/directory/DirContext.java: Likewise.
7240         * javax/naming/directory/InitialDirContext.java: Likewise.
7241         * javax/naming/directory/InvalidAttributeIdentifierException.java:
7242         Likewise.
7243         * javax/naming/directory/InvalidAttributeValueException.java: Likewise.
7244         * javax/naming/directory/InvalidAttributesException.java: Likewise.
7245         * javax/naming/directory/InvalidSearchControlsException.java: Likewise.
7246         * javax/naming/directory/InvalidSearchFilterException.java: Likewise.
7247         * javax/naming/directory/ModificationItem.java: Likewise.
7248         * javax/naming/directory/NoSuchAttributeException.java: Likewise.
7249         * javax/naming/directory/SchemaViolationException.java: Likewise.
7250         * javax/naming/directory/SearchControls.java: Likewise.
7251         * javax/naming/directory/SearchResult.java: Likewise.
7252         * javax/naming/event/EventContext.java: Likewise.
7253         * javax/naming/event/EventDirContext.java: Likewise.
7254         * javax/naming/event/NamespaceChangeListener.java: Likewise.
7255         * javax/naming/event/NamingEvent.java: Likewise.
7256         * javax/naming/event/NamingExceptionEvent.java: Likewise.
7257         * javax/naming/event/NamingListener.java: Likewise.
7258         * javax/naming/event/ObjectChangeListener.java: Likewise.
7259         * javax/naming/ldap/Control.java: Likewise.
7260         * javax/naming/ldap/ControlFactory.java: Likewise.
7261         * javax/naming/ldap/ExtendedRequest.java: Likewise.
7262         * javax/naming/ldap/ExtendedResponse.java: Likewise.
7263         * javax/naming/ldap/HasControls.java: Likewise.
7264         * javax/naming/ldap/InitialLdapContext.java: Likewise.
7265         * javax/naming/ldap/LdapContext.java: Likewise.
7266         * javax/naming/ldap/LdapReferralException.java: Likewise.
7267         * javax/naming/ldap/UnsolicitedNotification.java: Likewise.
7268         * javax/naming/ldap/UnsolicitedNotificationEvent.java: Likewise.
7269         * javax/naming/ldap/UnsolicitedNotificationListener.java: Likewise.
7270         * javax/naming/spi/DirObjectFactory.java: Likewise.
7271         * javax/naming/spi/DirStateFactory.java: Likewise.
7272         * javax/naming/spi/DirectoryManager.java: Likewise.
7273         * javax/naming/spi/InitialContextFactory.java: Likewise.
7274         * javax/naming/spi/InitialContextFactoryBuilder.java: Likewise.
7275         * javax/naming/spi/NamingManager.java: Likewise.
7276         * javax/naming/spi/ObjectFactory.java: Likewise.
7277         * javax/naming/spi/ObjectFactoryBuilder.java: Likewise.
7278         * javax/naming/spi/ResolveResult.java: Likewise.
7279         * javax/naming/spi/Resolver.java: Likewise.
7280         * javax/naming/spi/StateFactory.java: Likewise.
7282         * javax/naming/spi/NamingManager.java (ofb): Package private.
7284 2002-11-21  Mark Wielaard  <mark@klomp.org>
7286         * java/net/URL.java: Merge with Classpath (partly).
7287         * java/net/URLStreamHandler: Merge with Classpath.
7289 2002-11-22  Michael Koch <konqueror@gmx.de>
7291         * include/posix.h:
7292         (_Jv_platform_on_close): Moved out of #ifndef DISBALE_JAVA_NET.
7293         * include/win32.h:
7294         (_Jv_platform_on_close): Moved out of #ifndef DISBALE_JAVA_NET.
7295         (backtrace): Moved out of #ifndef DISBALE_JAVA_NET.
7297 2002-11-21  Michael Koch <konqueror@gmx.de>
7299         * include/posix.h: I put too much into the #ifndef DISABLE_JAVA_NET.
7300         Only the new network functions should be in it.
7302 2002-11-21  Michael Koch <konqueror@gmx.de>
7304         * include/posix.h: Moved new functions into a #ifndef DISABLE_JAVA_NET
7305         * include/win32.h: Moved new functions into a #ifndef DISABLE_JAVA_NET
7307 2002-11-21  Michael Koch <konqueror@gmx.de>
7309         * java/nio/channels/AsynchronousCloseException.java,
7310         java/nio/channels/CancelledKeyException.java,
7311         java/nio/channels/ClosedByInterruptException.java,
7312         java/nio/channels/ConnectionPendingException.java,
7313         java/nio/channels/FileLockInterruptionException.java,
7314         java/nio/channels/IllegalSelectorException.java,
7315         java/nio/channels/NoConnectionPendingException.java,
7316         java/nio/channels/NonReadableChannelException.java,
7317         java/nio/channels/NonWritableChannelException.java,
7318         java/nio/channels/NotYetBoundException.java,
7319         java/nio/channels/NotYetConnectedException.java,
7320         java/nio/channels/OverlappingFileLockException.java,
7321         java/nio/channels/UnresolvedAddressException.java,
7322         java/nio/channels/UnsupportedAddressTypeException.java:
7323         New files.
7324         * Makefile.am (ordinary_java_source_files): Added new files.
7325         * Makefile.in: Regenerated.
7327 2002-11-21  Michael Koch <konqueror@gmx.de>
7329         * include/posix.h
7330         (_Jv_socket): New method.
7331         (_Jv_connect): New method.
7332         (_Jv_close): New method.
7333         (_Jv_platform_close_on_exec): Prefixed system function with "::".
7334         (_Jv_bind): New method.
7335         (_Jv_listen): New method.
7336         (_Jv_write): New method.
7337         (_Jv_read): New method.
7338         * include/win32.h
7339         (_Jv_socket): New method.
7340         (_Jv_connect): New method.
7341         (_Jv_close): New method.
7342         (_Jv_bind): New method.
7343         (_Jv_listen): New method.
7344         (_Jv_write): New method.
7345         (_Jv_read): New method.
7346         * java/net/natNetworkInterface.cc:
7347         Include platform.h, removed inclusion of socket.h
7348         (getRealNetworkInterfaces): Replaced ::socket() by _Jv_socket() and
7349         ::close() by _Jv_close().
7350         * java/net/natPlainDatagramSocketImpl.cc:
7351         Removed include of socket.h, definition of NATIVE_CLOSE and _Jv_bind,
7352         added some new lines to make code more readable.
7353         (create): Replaced ::socket() by _Jv_socket().
7354         (close): Replaced NATIVE_CLOSE() by _Jv_close().
7355         * java/net/natPlainSocketImpl.cc:
7356         Removed definition of NATIVE_CLOSE, _Jv_bind, Jv_connect and _Jv_accept,
7357         removed include of socket.h, removed some windows defines
7358         (now in include/win32.h).
7359         (create): Replaced ::socket() by _Jv_socket().
7360         (close): Replaced NATIVE_CLOSE() by _Jv_close().
7361         (write): Replaced ::read by _Jv_write().
7362         (read): Replaced ::read by _Jv_read().
7364 2002-11-20  Michael Koch <konqueror@gmx.de>
7366         * Makefile.am (ordinary_java_source_files):
7367         Added java/nio/channels/FileChannel.java.
7368         * Makefile.in: Regenerated.
7370 2002-11-20  Michael Koch <konqueror@gmx.de>
7372         * java/io/FileInputStream.java
7373         (getChannel): New method.
7374         * java/io/FileOutputStream.java
7375         (getChannel): New method.
7376         * java/net/ServerSocket.java
7377         (bind): Removed duplicate code and called another bind method instead.
7378         * java/nio/channels/SelectionKey.java
7379         (isValid): Removed wrong exception documentation.
7380         * java/nio/channels/ServerSocketChannel.java
7381         (accept): Added exception documentation.
7382         (open): Fixed typo, added exception documentation.
7383         * java/nio/channels/spi/AbstractSelectableChannel.java
7384         (implCloseChannel): Added exception documentation.
7385         (add): Reformated.
7386         (register): Added exception documentation.
7388 2002-11-20  Andreas Jaeger  <aj@suse.de>
7390         * configure: Regenerated with new libtool.m4.
7392 2002-11-19  Tom Tromey  <tromey@redhat.com>
7394         * java/lang/ref/natReference.cc (add_to_hash): Look at `copy', not
7395         `referent'.
7396         (finalize_referred_to_object): Don't modify `referent' or `copy'
7397         fields.
7398         (add_to_hash): Correctly set `n->next' when updating list.
7399         * java/lang/ref/Reference.java (enqueue): Return false if already
7400         enqueued.
7402 2002-11-19  Ranjit Mathew <rmathew@hotmail.com>
7404         * include/jni.h: Add missing JNICALL and JNIEXPORT attributes
7405         to function and function pointer declarations in accordance with
7406         Sun's JDKs. Define JNIIMPEXP to either JNIEXPORT or JNIIMPORT
7407         based on whether __GCJ_JNI_IMPL__ has been defined or not.
7408         * jni.cc: Add missing JNICALL and JNIEXPORT attributes to
7409         JNI function definitions.
7411 2002-11-18  Jesse Rosenstock <jmr@ugcs.caltech.edu>
7413         * java/nio/charset/CoderResult.java (Cache.get): Fix a bug
7414         that was causing CoderResults to be cached, not WeakReferences
7415         to CoderResults.
7417 2002-11-18  Joerg Brunsmann  <joerg_brunsmann@yahoo.de>
7419         * java/security/KeyStore.java (getInstance): Fix
7420         comment and throw IllegalArgumentException if
7421         given provider is null.
7422         (getInstance): New method for jdk1.4 compatibility.
7424 2002-11-18  Michael Koch <konqueror@gmx.de>
7426         * java/net/PlainSocketImpl.java: Fix imports.
7428 2002-11-18  Michael Koch <konqueror@gmx.de>
7430         * java/nio/channels/SelectionKey.java
7431         (isValid): Added exception documentation.
7432         * java/nio/channels/Selector.java
7433         (open): Declare "throws IOException".
7435 2002-11-18  Jesse Rosenstock <jmr@ugcs.caltech.edu>
7437         * java/nio/charset/Charset.java
7438         (<clinit>): New method.
7439         (encode): Synchronize use of cached encoder object.
7440         (decode): Synchronize use of cached encoder object.
7442 2002-11-18  Michael Koch <konqueror@gmx.de>
7444         * gnu/java/nio/ByteBufferImpl.java,
7445         gnu/java/nio/CharBufferImpl.java,
7446         gnu/java/nio/DatagramChannelImpl.java,
7447         gnu/java/nio/DoubleBufferImpl.java,
7448         gnu/java/nio/FileChannelImpl.java,
7449         gnu/java/nio/FloatBufferImpl.java,
7450         gnu/java/nio/IntBufferImpl.java,
7451         gnu/java/nio/LongBufferImpl.java,
7452         gnu/java/nio/PipeImpl.java,
7453         gnu/java/nio/SelectionKeyImpl.java,
7454         gnu/java/nio/SelectorImpl.java,
7455         gnu/java/nio/SelectorProviderImpl.java,
7456         gnu/java/nio/ServerSocketChannelImpl.java,
7457         gnu/java/nio/ShortBufferImpl.java,
7458         gnu/java/nio/SocketChannelImpl.java,
7459         java/nio/DoubleBuffer.java,
7460         java/nio/FloatBuffer.java,
7461         java/nio/IntBuffer.java,
7462         java/nio/LongBuffer.java,
7463         java/nio/ShortBuffer.java,
7464         java/nio/channels/FileChannel.java: New files.
7466 2002-11-18  Michael Koch <konqueror@gmx.de>
7468         * Makefile.am (ordinary_java_source_files):
7469         Added java/nio/ReadOnlyBufferException.java and
7470         java/nio/channels/ClosedSelectorException.java.
7471         * Makefile.in: Regenerated.
7473 2002-11-18  Michael Koch <konqueror@gmx.de>
7475         * java/net/PlainSocketImpl.java: Reworked imports.
7476         * java/net/ServerSocket.java
7477         (ServerSocket): Create socket.
7478         * java/net/SocketAddress.java: Documentation added.
7479         * java/net/natPlainSocketImpl.cc: Reindented.
7480         * java/nio/ReadOnlyBufferException.java: New file
7481         * java/nio/channels/ClosedChannelException.java: Documentation added.
7482         * java/nio/channels/ClosedSelectorException.java: New file.
7484 2002-11-17  Mark Wielaard  <mark@klomp.org>
7486         * java/net/HttpURLConnection.java ((getPermission): Take port
7487         into consideration.
7488         (getErrorStream): Implement.
7490 2002-11-17  Mark Wielaard  <mark@klomp.org>
7492         * java/net/HttpURLConnection.java: Merge with GNU Classpath.
7494 2002-11-16  Mark Wielaard  <mark@klomp.org>
7496         Integrate work by Raif S. Naffah (raif@fl.net.au)
7497         * java/security/DummyKeyPairGenerator.java (clone): New method.
7498         * java/security/DummyMessageDigest.java (clone): New method.
7499         (engineUpdate): Now public.
7500         (engineReset): Likewise.
7501         (engineDigest): Likewise.
7502         (engineGetDigestLength): New method.
7503         * java/security/DummySignature.java (clone): New method.
7504         * java/security/KeyPairGenerator.java (provider): Now package private.
7505         (getInstance(String)): Use getInstance(String,Provider).
7506         (getInstance(String,String): Use getInstance(String,Provider)
7507         (getInstance(String,Provider): New method.
7508         (getInstance(String,String,Provider): Don't cast DummyKeyPairGenerator.
7509         * java/security/KeyPairGeneratorSpi.java (clone): New method.
7510         * java/security/MessageDigest.java (provider): Now package private.
7511         (getInstance(String): Use getInstance(String,Provider).
7512         (getInstance(String,String): Use getInstance(String,Provider)
7513         (getInstance(String,Provider): New method.
7514         * java/security/Provider.java (toCanonicalKey): New method.
7515         (get): New method that uses toCanonicalKey().
7516         (put): Use toCanonicalKey().
7517         (remove): Likewise.
7518         * java/security/Security.java (insertProviderAt): Provider index is one
7519         based, not zero based.
7520         (addProvider): Likewise.
7521         (removeProvider): Likewise.
7522         * java/security/Signature.java (provider): Now package private.
7523         (getInstance(String)): Use getInstance(String,Provider).
7524         (getInstance(String,String): Use getInstance(String,Provider)
7525         (getInstance(String,Provider): New method.
7526         (getInstance(String,String,Provider): Don't cast DummySignature.
7528 2002-11-15  Tom Tromey  <tromey@redhat.com>
7530         For PR libgcj/8593:
7531         * java/util/zip/GZIPInputStream.java (read): Check file size.
7532         Look in inflater for remaining input bytes.
7533         (read4): Added buf and offset arguments.
7535 2002-11-12  Eric Blake  <ebb9@email.byu.edu>
7537         * java/applet/AppletContext.java: Fix typo and remove redundant
7538         modifiers.
7540 2002-11-14  Tom Tromey  <tromey@redhat.com>
7542         * java/lang/natRuntime.cc (insertSystemProperties): Set
7543         gnu.classpath.home.
7545 2002-11-13  Michael Koch <konqueror@gmx.de>
7547         * java/nio/ByteBuffer.java
7548         (allocate): New method.
7549         (wrap): New method.
7550         (put): New method.
7551         (get): New method.
7553 2002-11-13  Michael Koch <konqueror@gmx.de>
7555         * java/nio/channels/AlreadyConnectedException.java:
7556         Removed unneeded import.
7557         (AlreadyConnectedException): Documentation added.
7558         * java/nio/channels/Pipe.java
7559         (SinkChannel.SinkChannel): Documentation added.
7560         (SinkChannel.validOps): New method.
7561         (SourceChannel.SourceChannel): Documentation added.
7562         (SourceChannel.validOps): New method.
7563         (Pipe): Documentation added.
7564         (open): Documentation added.
7565         (SinkChannel.channel): Documentation added.
7566         (SourceChannel.channel): Documentation added.
7567         * java/nio/channel/SelectableChannel.java
7568         (SelectableChannel): Documentation added.
7569         (blockingLock): Documentation added.
7570         (configureBlocking):Documentation added.
7571         (isBlocking):Documentation added.
7572         (isRegistered):Documentation added.
7573         (keyFor):Documentation added.
7574         (provider):Documentation added.
7575         (register): Documentation added.
7576         (validOps): Documentation added.
7577         * jaba/nio/channels/SelectionKey.java
7578         (SelectionKey): Documentation added.
7579         (attach): Documentation added.
7580         (attachment): Documentation added.
7581         (isAcceptable): Documentation added.
7582         (isConnetable): Documentation added.
7583         (isReadable): Documentation added.
7584         (isWritable): Documentation added.
7585         (cancel): Documentation added.
7586         (channel): Documentation added.
7587         (interestOps): Documentation added.
7588         (isValid): Documentation added.
7589         (readyOps): Documentation added.
7590         (selector): Documentation added.
7591         * jaba/nio/channels/Selector.java
7592         (Selector): Documentation added.
7593         (open): Documentation added.
7594         (close): Documentation added.
7595         (isOpen): Documentation added.
7596         (keys): Documentation added.
7597         (provider): Documentation added.
7598         (select): Documentation added.
7599         (selectedKeys): Documentation added.
7600         (selectNow): Documentation added.
7601         (wakeup): Documentation added.
7602         * java/nio/channels/spi/AbstractInterruptibleChannel.java
7603         (AbstractInterruptibleChannel): Documentation added.
7604         (opened): Default to true;
7605         (begin): Documentation added.
7606         (close): Set opened to false, documentation added.
7607         (isOpen): Documentation added.
7608         * java/nio/channels/spi/AbstractSelectionKey.java
7609         (AbstractSelectionKey): Documentation added.
7610         (cancel): Documentation added.
7611         (isValid): Documentation added.
7612         * java/nio/channels/spi/AbstractSelector.java
7613         (AbstractSelector): Documentation added.
7614         (begin): Documentation added.
7615         (close): Documentation added.
7616         (isOpen): Documentation added.
7617         (deregister): Documentation added.
7618         (end): Documentation added.
7619         (provider): Documentation added.
7620         (implCloseSelector): Documentation added.
7621         (register): Documentation added.
7622         * java/nio/channels/spi/SelectorProvider.java
7623         (SelectorProvider): Documentation added.
7624         (openDatagramChannel): Documentation added.
7625         (openPipe): Documentation added.
7626         (openSelector): Documentation added.
7627         (openServerSocketChannel): Documentation added.
7628         (openSocketChannel): Documentation added.
7629         (provider): Documentation added.
7631 2002-11-12  Michael Koch <konqueror@gmx.de>
7633         * java/nio/Buffer.java: Implemented.
7634         * java/nio/CharBuffer.java: New file.
7635         * java/nio/InvalidMarkException.java: New file.
7636         * java/nio/channels/DatagramChannel.java: Implemented.
7637         * java/nio/channels/ServerSocketChannel.java: Implemented.
7638         * java/nio/channels/SocketChannel.java: Implemented.
7639         * java/nio/channels/spi/AbstractChannel.java: Removed.
7640         * java/nio/channels/spi/AbstractSelectableChannel.java:
7641         Implemented.
7642         * java/nio/charset/Charset.java:
7643         Merge from Classpath.
7644         * java/nio/charset/CharsetDecoder.java: New file.
7645         * java/nio/charset/CharsetEncoder.java: New file.
7646         * java/nio/charset/CoderResult.java: New file.
7647         * Makefile.am (ordinary_java_source_files): Added new files.
7648         * Makefile.in: Regenerated.
7650 2002-11-11  Jesse Rosenstock  <jmr@ugcs.caltech.edu>
7652         * gnu/java/nio/charset/ISO_8859_1.java,
7653         gnu/java/nio/charset/Provider.java,
7654         gnu/java/nio/charset/US_ASCII.java,
7655         gnu/java/nio/charset/UTF_16.java,
7656         gnu/java/nio/charset/UTF_16BE.java,
7657         gnu/java/nio/charset/UTF_16Decoder.java,
7658         gnu/java/nio/charset/UTF_16Encoder.java,
7659         gnu/java/nio/charset/UTF_16LE.java,
7660         gnu/java/nio/charset/UTF_8.java: New files.
7662 2002-11-11  Michael Koch <konqueror@gmx.de>
7664         * java/nio/charset/CharacterCodingException.java:
7665         This class must be public.
7666         * java/nio/charset/CoderMalfunctionError.java:
7667         This class must be public.
7668         * java/nio/charset/CodingErrorAction.java:
7669         This class must be public.
7670         * java/nio/charset/IllegalCharsetNameException.java:
7671         This class must be public, better implementation.
7672         * java/nio/charset/MalformedInputException.java:
7673         This class must be public, better implementation.
7674         * java/nio/charset/UnmappableCharacterException.java:
7675         This class must be public, better implementation.
7676         * java/nio/charset/UnsupportedCharsetException.java:
7677         This class must be public, better implementation.
7679 2002-11-11  Michael Koch <konqueror@gmx.de>
7681         * java/nio/BufferOverflowException.java,
7682         java/nio/BufferUnderflowException.java: New file.
7683         * Makefile.am (ordinary_java_source_files):
7684         Added new files.
7685         * Makefile.in: Regenerated.
7687 2002-11-10  Tom Tromey  <tromey@redhat.com>
7689         * java/awt/Container.java (validate): Use tree lock.
7690         (getComponent): Likewise.
7691         (getComponents): Likewise.
7692         (addImpl): Likewise.
7693         (remove): Likewise.
7694         (removeAll): Likewise.
7695         (processEvent): Fixed indentation.
7696         (getComponentAt): Use tree lock.
7697         (findComponentAt): Likewise.
7698         (removeNotify): Likewise.
7699         (isAncestorOf): Likewise.
7700         (list): Likewise.
7701         (visitChildren): Likewise.
7702         (findNextFocusComponent): Likewise.
7703         (addNotifyContainerChildren): Likewise.
7704         (getAccessibleChildrenCount): Likewise.
7705         (getAccessibleChild): Likewise.
7707         * java/awt/GridLayout.java (layoutContainer): Use tree lock.
7708         (getSize): Likewise.
7709         * java/awt/FlowLayout.java (layoutContainer): Use tree lock.
7710         (getSize): Likewise.
7711         * java/awt/BorderLayout.java (layoutContainer): Use tree lock.
7712         (calcSize): Likewise.
7713         * java/awt/CardLayout.java (getSize): Use tree lock.
7714         (gotoComponent): Likewise.
7715         (layoutContainer): Likewise.
7717         * java/io/natFileDescriptorWin32.cc (read): Handle case where
7718         count is 0.
7719         * java/io/natFileDescriptorPosix.cc (read): Handle case where
7720         count is 0.
7722         * java/io/Externalizable.java, java/io/FilePermission.java,
7723         java/io/ObjectStreamConstants.java, java/io/Serializable.java,
7724         java/io/SerializablePermission.java, java/text/Format.java,
7725         java/util/AbstractMap.java, java/util/HashMap.java,
7726         java/util/LinkedHashMap.java, javax/naming/BinaryRefAddr.java: New
7727         versions from Classpath.
7729 2002-11-10  Anthony Green  <green@redhat.com>
7731         * java/util/jar/Attributes.java (Name): Fix name check.
7733 2002-11-10  Mark Wielaard  <mark@klomp.org>
7735         * java/lang/natClass.cc (initializeClass): Throw NoClassDefFoundError
7736         with getName() as message.
7737         (_Jv_CheckArrayStore): Throw ArrayStoreException with object and array
7738         type as message.
7740         * java/lang/natVMThrowable.cc: Don't declare parameter t, it is
7741         unused.
7743 2002-11-08  Ranjit Mathew <rmathew@hotmail.com>
7745         * include/jni.h (JNIIMPORT, JNIEXPORT, JNICALL): Linker defines
7746         for Win32. JNICALL has been defined to __stdcall to be compatible
7747         with Sun's JDKs.
7749 2002-11-10  Tom Tromey  <tromey@redhat.com>
7751         * java/awt/GridLayout.java (setColumns): Check newCols, not cols.
7752         (setRows): Check newRows, not rows.
7754         * jni.cc (_Jv_GetJNIEnvNewFrame): Set env->ex in all cases.
7756 2002-11-09  Tom Tromey  <tromey@redhat.com>
7758         * java/applet/Applet.java, java/applet/AppletContext.java,
7759         java/applet/AppletStub.java, java/applet/AudioClip.java,
7760         java/awt/CardLayout.java,
7761         java/awt/ContainerOrderFocusTraversalPolicy.java,
7762         java/awt/Cursor.java, java/awt/Event.java, java/awt/Frame.java,
7763         java/awt/GridBagConstraints.java, java/awt/GridBagLayout.java,
7764         java/awt/GridLayout.java, java/awt/color/ColorSpace.java,
7765         java/awt/color/ICC_ColorSpace.java,
7766         java/awt/color/ICC_Profile.java,
7767         java/awt/color/ICC_ProfileGray.java,
7768         java/awt/color/ICC_ProfileRGB.java,
7769         java/awt/datatransfer/DataFlavor.java,
7770         java/awt/dnd/DragSourceContext.java, java/awt/dnd/DropTarget.java,
7771         java/awt/dnd/DropTargetContext.java, java/awt/event/KeyEvent.java:
7772         New versions from Classpath.
7773         * Makefile.in: Rebuilt.
7774         * Makefile.am (awt_java_source_files): Added ICC_ProfileGray and
7775         ICC_ProfileRGB.
7777         * java/awt/ScrollPane.java (ScrollPane): Fixed test for valid
7778         display policy.
7780         * java/awt/List.java (processEvent): Added missing `else's.
7782         * java/awt/Window.java (show): validate() before showing.  Make
7783         parent displayable.
7784         (isDisplayable): New method.
7786 2002-11-07  Mark Wielaard  <mark@klomp.org>
7788         Merge Orp RMI patches from Wu Gansha <gansha.wu@intel.com>
7789         * java/rmi/MarshalledObject.java (equals): Check hashcode first.
7791         * java/rmi/server/RMIClassLoader.java (MyClassLoader): Create/Use
7792         annotation.
7793         (loadClass): Take String as codebases.
7794         (getClassAnnotation): Use MyClassLoader annotations.
7795         * java/rmi/server/UnicastRemoteObject.java (UnicastRemoteObject):
7796         call exportObject(this).
7798         * gnu/java/rmi/RMIMarshalledObjectOutputStream.java
7799         (RMIMarshalledObjectOutputStream): set locBytesStream and locStream.
7800         (setAnnotation): Don't set locBytesStream and locStream.
7801         (replaceObject): Removed.
7802         (flush): Don't test locStream.
7803         (getLocBytes): LikeWise.
7804         * gnu/java/rmi/dgc/DGCImpl.java: extends UnicastServerRef.
7805         (leaseCache): New field.
7806         (dirty): Use leaseCache.
7807         (LeaseRecord): New inner class.
7808         * gnu/java/rmi/registry/RegistryImpl.java (RegistryImpl): Don't
7809         explicitly call exportObject().
7810         * gnu/java/rmi/registry/RegistryImpl_Stub.java: set useNewInvoke to
7811         false to communicate with Sun JDK130.
7812         * gnu/java/rmi/server/ConnectionRunnerPool.java: Add CPU comment.
7813         * gnu/java/rmi/server/RMIObjectInputStream.java
7814         (UnicastConnectionManager): Removed field.
7815         * gnu/java/rmi/server/RMIObjectOutputStream.java (replaceObject):
7816         Use UnicastServer.getExportedRef().
7817         * gnu/java/rmi/server/UnicastConnection.java (reviveTime): New field.
7818         (expireTime): Likewise.
7819         (CONNECTION_TIMEOUT): Likewise.
7820         (disconnect): Call sock.close().
7821         (isExpired): New method.
7822         (resetTime): Likewise.
7823         (run): Use do while loop and catch Exception for discardConnection().
7824         * gnu/java/rmi/server/UnicastConnectionManager.java: Pool connections.
7825         * gnu/java/rmi/server/UnicastRef.java: Lots of changes.
7826         * gnu/java/rmi/server/UnicastRemoteCall.java: Lots of changes.
7827         * gnu/java/rmi/server/UnicastServer.java (refcache): New field.
7828         (exportObject): Use refcache.
7829         (unexportObject): Likewise.
7830         (getExportedRef): New method.
7831         * gnu/java/rmi/server/UnicastServerRef.java (UnicastServerRef): New
7832         constructor.
7833         (exportObject): Save manager.serverobj.
7834         (getStub): New method.
7836 2002-11-07  Mark Wielaard  <mark@klomp.org>
7838         * java/lang/reflect/natField.cc (getBoolean): Use getType().
7839         (getByte): Likewise.
7840         (getShort): Likewise.
7841         (getInt): Likewise.
7842         (getLong): Likewise.
7843         (getFloat): Likewise.
7844         (getDouble): Likewise.
7845         (get): Likewise.
7846         (setChar): Likewise.
7847         (setByte): Likewise.
7848         (setShort): Likewise.
7849         (setInt): Likewise.
7850         (setLong): Likewise.
7851         (setFloat): Likewise.
7852         (setDouble): Likewise.
7854 2002-11-07  Michael Koch <konqueror@gmx.de>
7856         * java/awt/Choice.java,
7857         java/awt/Container.java,
7858         java/awt/GridBagLayout.java:
7859         Fixed documentation.
7860         * java/awt/peer/ContainerPeer.java:
7861         Reindented.
7863 2002-11-07  Michael Koch <konqueror@gmx.de>
7865         * java/awt/color/ICC_Profile.java:
7866         Added missing constants.
7867         * java/awt/color/ICC_ColorSpace.java
7868         (getMinValue): Added dummy implementation.
7869         (getMaxValue): Added dummy implementation.
7870         * java/awt/datatransfer/DataFlavor.java
7871         (imageFlavor): Added.
7872         (isMimeTypeEqual): Must be final.
7873         (getDefaultRepresentationClass): Must be non-static.
7874         (getDefaultRepresentationClassAsString): Must be non-static.
7875         * java/awt/dnd/DragSourceContext.java
7876         (dragExit): Corrected argument.
7877         (dragDropEnd): Corrected argument.
7878         * java/awt/dnd/DragSourceListener.java.java
7879         (dragExit): Corrected argument.
7880         (dragDropEnd): Corrected argument.
7881         * java/awt/font/TextHitInfo.java
7882         (toString): Added stubbed implementation.
7883         * java/awt/geom/PathIterator.java:
7884         The constants must be static.
7885         * java/awt/image/VolatileImage.java
7886         (IMAGE_INCOMPATIBLE): Fixed typo.
7887         * java/awt/image/renderable/RenderableImage.java
7888         (HINTS_OBSERVED): Must be static.
7889         * java/beans/BeanInfo.java:
7890         Constants must be final.
7892 2002-11-06  Tom Tromey  <tromey@redhat.com>
7894         From svens@it.uu.se.  For PR libgcj/8481.
7895         * java/util/Random.java (nextInt(int)): Only use 31 bits.
7897 2002-11-06  Tom Tromey  <tromey@redhat.com>
7899         * jni.cc (array_from_valist): Assume that jlong won't be
7900         promoted.
7902 2002-11-04  R. A. Rivas Diaz  <rivasdiaz@yahoo.com>
7904         * gnu/java/security/provider/SHA.java (engineGetDigestLength):
7905         Return 20.
7906         * gnu/java/security/provider/MD5.java (engineGetDigestLength):
7907         Return 16.
7909 2002-11-03  Tom Tromey  <tromey@redhat.com>
7911         * java/lang/ClassLoader.java (loadClass): Call loadClass on
7912         VMClassLoader, not findClass.
7914 2002-11-03  Jeff Sturm  <jsturm@one-point.com>
7916         * resolve.cc (METHOD_NOT_THERE, METHOD_INACCESSIBLE): Remove.
7917         (_Jv_ResolvePoolEntry): Use _Jv_Method.index, not
7918         _Jv_DetermineVTableIndex, to determine vtable offset.
7919         (_Jv_DetermineVTableIndex): Remove.
7920         (_Jv_PrepareClass): Don't layout vtable.  Use _Jv_MakeVTable instead.
7922         * java/lang/Class.h (friend int _Jv_DetermineVTableIndex): Remove.
7924 2002-11-03  Tom Tromey  <tromey@redhat.com>
7926         * java/nio/channels/AlreadyConnectedException.java: Extend
7927         IllegalStateException, per spec.
7929 2002-10-31  Stephen Crawley  <crawley@dstc.edu.au>
7931         * java/lang/Double.java (valueOf): Return new Double(parseDouble(s)).
7933 2002-10-31  Wu Gansha <gansha.wu@intel.com>:
7935         * java/util/ArrayList.java (readObject, writeObject): Only read/write
7936         size items.
7938 2002-10-31  Wu Gansha <gansha.wu@intel.com>:
7940         * java/io/DataInputStream.java (convertFromUTF): Give StringBuffer an
7941         initial estimated size to avoid enlarge buffer frequently.
7943 2002-10-31  Wu Gansha <gansha.wu@intel.com>:
7945         * java/lang/reflect/Proxy.java (ProxyType): Set loader to System
7946         ClassLoader when null.
7947         (ProxyType.hashCode): Loader null check no longer needed.
7948         (ProxyType.sameTypes): New method.
7949         (ProxyType.equals): Use new method.
7951 2002-10-31  Mark Wielaard  <mark@klomp.org>
7953         * java/net/URLDecoder.java (decode): Initialize Stringbuffer size to
7954         length of String.
7955         * java/net/URLEncoder.java (encode): Likewise.
7957 2002-10-31  Mark Wielaard  <mark@klomp.org>
7959         * java/util/zip/ZipInputStream.java (getNextEntry): Throw IOException
7960         when stream is closed.
7961         (closeEntry): Likewise.
7962         (read): Likewise.
7963         * java/util/zip/ZipOutputStream.java (putNextEntry): Throw
7964         ZipException when no entry active.
7965         (closeEntry): Likewise.
7966         (write): Likewise.
7968 2002-11-02  Tom Tromey  <tromey@redhat.com>
7970         * java/lang/Class.h: Move JV_STATE_ERROR before JV_STATE_DONE.
7971         * java/lang/natClass.cc (initializeClass): Don't return just
7972         because self==thread.
7974         For PR java/8415:
7975         * java/lang/reflect/natMethod.cc (getType): Use _Jv_FindClass.
7976         * prims.cc (_Jv_FindClassFromSignature): Indentation fix.
7978 2002-11-02  Andreas Schwab  <schwab@suse.de>
7980         * Makefile.am (AM_MAKEFLAGS): Don't pass JC1FLAGS, CC and CXX, do
7981         pass GCJFLAGS.
7982         (FLAGS_TO_PASS): Define.
7983         * Makefile.in: Regenerated.
7985 2002-11-01  Michael Koch  <konqueror@gmx.de>
7987         * java/nio/ByteOrder.java: New file.
7988         * java/nio/channels/DatagramChannel.java:
7989         (DatagramChannel): New constructor.
7990         * java/nio/channels/Pipe.java: New file.
7991         * java/nio/channels/SelectableChannel.java: New file.
7992         * java/nio/channels/SelectionKey.java: New file.
7993         * java/nio/channels/Selector.java: New file.
7994         * java/nio/channels/ServerSocketChannel.java
7995         (ServerSocketChannel): New constructor.
7996         * java/nio/channels/SocketChannel.java
7997         (SocketChannel): New constructor.
7998         * java/nio/channels/Pipe.java: New file.
7999         * java/nio/channels/spi/AbstractChannel.java: New file.
8000         * java/nio/channels/spi/AbstractInterruptibleChannel.java: New file.
8001         * java/nio/channels/spi/AbstractSelectableChannel.java:
8002         License added
8003         (AbstractSelectableChannel): New stubbed method.
8004         * java/nio/channels/spi/AbstractSelectionKey.java: New file.
8005         * java/nio/channels/spi/AbstractSelector.java: New file.
8006         * java/nio/channels/spi/SelectorProvider.java: New file.
8007         * java/nio/charset/Charset.java: New file.
8008         * java/nio/charset/CoderMalfunctionError.java: New file.
8009         * java/nio/charset/CodingErrorAction.java: New file.
8010         * java/nio/charset/spi/CharsetProvider.java
8011         (charsetForName): Uncommented.
8012         * Makefile.am (java_native_source_files): Added new files.
8013         * Makefile.in: Regenerated.
8015 2002-11-01  Michael Koch  <konqueror@gmx.de>
8017         * java/net/InetAddress.java:
8018         (isAnyLocalAddress): Implemented.
8019         (isLoopbackAddress): Implemented, comment added.
8020         (isLinkLocalAddress): Implemented, documentation added.
8021         (isSiteLocalAddress): Implemented, documentation added.
8022         (isMCGlobal): Implemented, documentation added.
8023         (isMCNodeLocal): Implemented, documentation added.
8024         (isMCLinkLocal): Implemented, documentation added.
8025         (isMCSiteLocal): Implemented, documentation added.
8026         (isMCOrgLocal): Implemented, documentation added.
8027         (getHostName): Documentation added.
8028         (getCanonicalHostName): Implemented, documentation added.
8029         (getAddress): Documentation added.
8030         (hashCode): Documentation added.
8031         (equals): Documentation added.
8032         (toString): Fixed implementation.
8033         (getByAddress): Use Inet4Address and Inet6Address.
8034         (lookup): New linewrap.
8035         (getByName): SecurityManager check added, support Inet4Address and
8036         Inet6address, comments added.
8037         (getAllByName): SecurityManager check added, comments added.
8038         * java/net/Inet6Address.java:
8039         (Inet6Address): Initialize parent class with addr instead of null.
8040         * java/net/URL.java
8041         (equals): Documentation added.
8042         (getFile): Documentation added.
8043         (hashCode): Documentation added.
8044         * java/net/natInetAddress.cc:
8045         (aton): Fix IPv6 support.
8046         * java/net/natPlainDatagramSocketImpl.cc:
8047         (peek): Throw PortUnreachableException when suitable.
8048         (peekData): Throw PortUnreachableException when suitable.
8049         (send): Throw PortUnreachableException when suitable.
8050         (receive): Throw PortUnreachableException when suitable.
8052 2002-10-27  Mark Wielaard  <mark@klomp.org>
8054         * java/util/zip/ZipFile.java (readLeShort): Take and use DataInput as
8055         argument.
8056         (readLeShort): Likewise and use byte[].
8057         (readLeInt): Likewise.
8058         (readEntries): Use new versions of methods and use byte[] for reading
8059         a complete zip entry. Add ZipFile name to exceptions.
8060         (entries): Add ZipFile name to exceptions.
8061         (getEntry): Likewise.
8062         (checkLocalHeader): Use new versions of methods and add ZipFile name
8063         to exceptions.
8065 2002-10-31  Mark Anderson  <mark@panonet.net>
8067         * java/awt/GridBagLayout.java (setConstraints): New stubbed method
8068         added
8070 2002-10-25  Krister Walfridsson  <cato@df.lth.se>
8072         * configure.in: Disable hash sync when not using threads.
8073         * configure: Regenerated.
8075 2002-10-24  Tom Tromey  <tromey@redhat.com>
8077         * java/lang/natRuntime.cc (_Jv_SetDLLSearchPath): New function.
8078         (_Jv_FindSymbolInExecutable): Removed argument name.
8079         (insertSystemProperties): Call _Jv_SetDLLSearchPath if
8080         java.library.path is set.
8082         * gij.cc (help): Document --showversion.
8083         (version): Don't exit.
8084         (main): Handle --showversion.  Exit if --version given.
8086 2002-10-23  Tom Tromey  <tromey@redhat.com>
8088         * jni.cc (_Jv_JNI_AllocObject): Removed old FIXME comment.
8089         (array_from_valist): Correctly handle promotion for jint, jlong,
8090         jfloat, and jdouble.
8092 2002-10-23  Ranjit Mathew <rmathew@hotmail.com>
8094         * java/io/natFileWin32.cc (attr): Use FindFirstFile( ) instead of
8095         GetFileAttributesEx( ) to find file length and modification times,
8096         as the latter is not present on Windows 95.
8098 2002-10-21  Michael Koch  <konqueror@gmx.de>
8100         * java/net/URL.java
8101         (URL): Activate SecurityManager checks.
8102         (equals): Use URLStreamHandler implementation instead of doing it
8103         alone. This allows special protocol stream handlers to change default
8104         behaviour.
8105         (hashCode): Use URLStreamHandler implementation instead of doing it
8106         alone. This allows special protocol stream handlers to change default
8107         behaviour.
8108         * java/net/URLStreamHandler.java
8109         (equals): Implemented default URL equality check.
8110         (hostsEqual): Implemented default URL equality check.
8111         (hashCode): Implemented default URL hashCode algorithm.
8112         * java/net/natPlainDatagramSocketImpl.cc:
8113         No lines longer then 80 characters.
8115 2002-10-20  Adam Megacz <adam@xwt.org>
8117         * aclocal.m4 (CHECK_FOR_BROKEN_MINGW_LD): added
8118         * configure.in: enabled hash sync on Win32
8119         * include/win32-threads.h (_Jv_ThreadId_t): added.
8120         * java/lang/natObject.cc (_Jv_MonitorEnter, _Jv_MonitorExit,
8121         heavy_lock_obj_finalization_proc, wait, notify, notifyAll):
8122         removed some posix-isms, use Thread::sleep() instead of usleep,
8123         added code to clear bottom three bits if platform has a broken
8124         linker.
8125         * include/win32-threads.h (_Jv_ThreadId_t): added.
8127 2002-10-19  Ranjit Mathew <rmathew@hotmail.com>
8129         * java/lang/natRuntime.cc (insertSystemProperties): Added GCJ
8130         runtime property "gnu.gcj.progname" containing the name used to
8131         invoke the current Java program (similar to argv[0] for C
8132         programs).
8134 2002-10-15  Tom Tromey  <tromey@redhat.com>
8136         Fix for PR libgcj/8234:
8137         * java/util/zip/natInflater.cc (reset): Reset avail_in.
8138         * java/util/zip/natDeflater.cc (reset): Reset avail_in.
8140 2002-10-13  Mark Wielaard  <mark@klomp.org>
8142         * mauve-libgcj: Enable Mauve tests that compile now.
8144 2002-10-11  Mark Wielaard  <mark@klomp.org>
8146         Fix for PR libgcj/8142
8147         * java/lang/natClassLoader.cc (findClass): Skip inner classes when
8148         loading native modules.
8150 2002-10-10  Michael Koch  <konqueror@gmx.de>
8152         * javax/swing/AbstractListModel.java
8153         (getListDataListeners): New stubbed method.
8154         javax/swing/DefaultBoundedRangeModel.java
8155         (getChangeListeners): New stubbed method.
8156         javax/swing/DefaultSingleSelectionModel.java
8157         (getChangeListeners): New stubbed method.
8159 2002-10-10  Michael Koch  <konqueror@gmx.de>
8161         * gcj/.cvsignore: New file to ignore files generated during build.
8162         * include/.cvsignore: New file to ignore files generated during build.
8164 2002-10-10  Michael Koch  <konqueror@gmx.de>
8166         * java/net/HttpURLConnection.java
8167         (getPermission): New method.
8168         (getErrorStream): New stub method.
8169         (getHeaderFieldDate): New stub method.
8170         * java/net/Inet4Address.java:
8171         (isLinkLocalAddress): Typo fixed.
8172         * java/net/InetAddress.java:
8173         (readResolve): New stubbed method (for serialization).
8174         (isAnyLocalAddress): New stubbed method.
8175         (isLoopbackAddress): New stubbed method.
8176         (isLinkLocalAddress): New stubbed method.
8177         (isSiteLocalAddress): New stubbed method.
8178         (isMCGlobal): New stubbed method.
8179         (isMCNodeGlobal): New stubbed method.
8180         (isMCLinkLocal): New stubbed method.
8181         (isMCSiteLocal): New stubbed method.
8182         (isMCOrgLocal): New stubbed method.
8183         (getCanonicalHostName): New stubbed method.
8184         (getByAddress): Create instances of Inet4Address/Inet6Address,
8185         instead of InetAddress, documentation added.
8186         * java/net/MulticastSocket.java
8187         (getInterface): Removed FIXME.
8188         (getNetworkInterface): New method.
8189         (setNetworkInterface): New method.
8190         * java/net/NetworkInterface.java:
8191         (toString): Use property "line.separator" instead of "\n".
8192         * java/net/URLConnection.java
8193         (getContent): New stubbed method.
8194         * java/net/URLStreamHandler.java:
8195         (equals): New stubbed method.
8196         (hostsEqual): New stubbed method.
8197         (hashCode): New stubbed method.
8198         * java/net/natNetworkInterface.cc:
8199         (getRealNetworkInterfaces): Create Inet4Address object
8200         instead of InetAddress.
8202 2002-10-08  Ulrich Weigand  <uweigand@de.ibm.com>
8204         * interpret.cc (_Jv_InterpMethod::run): Use UINT32 instead of
8205         unsigned long temporary to implement insn_iushr shifts.
8207 2002-10-08  Ulrich Weigand  <uweigand@de.ibm.com>
8209         * configure.host [s390*-*]: Enable Java interpreter.
8210         Enable hash synchronization.  Add sysdeps dir.
8211         * sysdep/s390/locks.h: New file.
8213 2002-10-06  Mark Wielaard  <mark@klomp.org>
8215         * java/lang/Thread.java (setDaemon): Check startable_flag,
8216         not isAlive().
8218 2002-10-07  Michael Koch  <konqueror@gmx.de>
8220         * java/nio/Buffer.java: New stub file.
8221         * java/nio/charset/spi/CharsetProvider.java: Commented out all usages
8222         of class Charset.
8223         * Makefile.am (java_native_source_files): Added java/nio/Buffer.java.
8224         * Makefile.in: Regenerated.
8226 2002-10-07  Michael Koch  <konqueror@gmx.de>
8228         * java/nio/ByteBuffer.java:
8229         removed import of not commited class.
8231 2002-10-07  Michael Koch  <konqueror@gmx.de>
8233         * java/nio/ByteBuffer.java,
8234         java/nio/MappedByteBuffer.java:
8235         New files, forgot to add these dummies.
8236         * Makefile.am (java_native_source_files): Added new files.
8237         * Makefile.in: Regenerated.
8239 2002-10-07  Michael Koch  <konqueror@gmx.de>
8241         * java/nio/channels/AlreadyConnectedException.java,
8242         java/nio/channels/ClosedChannelException.java,
8243         java/nio/channels/ReadableByteChannel.java,
8244         java/nio/channels/InterruptibleChannel.java,
8245         java/nio/channels/Channel.java,
8246         java/nio/channels/ByteChannel.java,
8247         java/nio/channels/GatheringByteChannel.java,
8248         java/nio/channels/ScatteringByteChannel.java,
8249         java/nio/channels/WritableByteChannel.java,
8250         java/nio/charset/CharacterCodingException.java,
8251         java/nio/charset/IllegalCharsetNameException.java,
8252         java/nio/charset/MalformedInputException.java,
8253         java/nio/charset/UnmappableCharacterException.java,
8254         java/nio/charset/UnsupportedCharsetException.java,
8255         java/nio/charset/spi/CharsetProvider.java: New file.
8256         These files are exceptions or interfaces,
8257         no real or abstract classes.
8258         * Makefile.am (java_native_source_files): Added new files.
8259         * Makefile.in: Regenerated.
8261 2002-10-05  Michael Koch  <konqueror@gmx.de>
8263         * java/net/InetAddress.java
8264         (getByAddress): Fixed documentation.
8265         (getByAddress): New method.
8266         * java/net/Inet4Address.java: New file.
8267         * java/net/URL.java
8268         (URL): Documentation added.
8269         (getContent): Documentation added.
8270         (getContent): New stubbed method.
8271         (getQuery): New method.
8272         (openConnection): Documentation added.
8273         (openStream): Documentation added.
8274         (setURLStreamHandlerFactory): Documentation added.
8275         * java/net/URI.java: New stub file.
8276         * Makefile.am
8277         (java_native_source_files): Added java/net/Inet4Address.java,
8278         java/net/Inet6Address.java and java/net/URI.java.
8279         * Makefile.in: Regenerated.
8281 2002-10-04  C. Scott Ananian <cananian@lesser-magoo.lcs.mit.edu>
8283         * java/lang/ProtectionDomain.java (linesep): Remove field.
8284         (toString): Use System.getProperty("line.separator").
8286 2002-10-04  Michael Koch  <konqueror@gmx.de>
8288         * java/security/Identity.java: Added serialVersionUID.
8289         * java/security/KeyPair.java: Added serialVersionUID.
8290         * java/security/Provider.java: Added serialVersionUID.
8291         * java/security/SecureRandom.java: Added serialVersionUID.
8292         * java/security/SecureRandomSpi.java: Added serialVersionUID.
8293         * java/security/SignedObject.java: Added serialVersionUID.
8294         * java/security/cert/Certificate.java: Added serialVersionUID.
8296 2002-10-04  Mark Wielaard <mark@klomp.org>
8298         * java/security/Security.java: Use java.home or gnu.classpath.home
8299         to load providers.
8300         (loadProviders): Extra dir argument.
8301         (getProvider): Return null when not found.
8303 2002-10-04  Mark Wielaard  <mark@klomp.org>
8305         * java/lang/Throwable.java: Remerge with Classpath.
8307 2002-10-04  Michael Koch  <konqueror@gmx.de>
8309         * java/net/InetAddress.java:
8310         (isMulticastAddress): Added documentation.
8311         (getHostAddress): Added documentation.
8312         (toString): Added documentation.
8313         (getByAddress): Fixed documentation.
8314         (getByName): Added documentation.
8315         (getAllByName): Added documentation.
8316         (getLocalHost): Added documentation.
8318 2002-10-04  Michael Koch  <konqueror@gmx.de>
8320         * java/beans/beancontext/BeanContextChildSupport.java:
8321         Added serialVersionUID.
8322         * java/text/Collator.java: (compare): Made documentation HTML-aware.
8323         * javax/naming/BinaryRefAddr.java: Added serialVersionUID.
8324         * javax/naming/Name.java: Added serialVersionUID.
8326 2002-10-03  Adam Megacz <adam@xwt.org>
8328         * natNetworkInterface.cc (getRealNetworkInterfaces): ifdef out
8329         some functionality that isn't supported yet on WIN32.
8331 2002-10-03  Tom Tromey  <tromey@redhat.com>
8333         * Makefile.in: Rebuilt.
8334         * Makefile.am (awt_java_source_files): Added new files.
8336 2002-10-03  Michael Koch  <konqueror@gmx.de>
8338         * java/net/InetAddress.java
8339         (class InetAddress): Removed final keyword.
8340         (equals): Fixed typo.
8341         (getByAddress): New method.
8343 2002-10-03  Michael Koch  <konqueror@gmx.de>
8345         * java/awt/dnd/Autoscroll.java:
8346         New file, merge from Classpath.
8347         * java/awt/dnd/DragSourceAdapter.java:
8348         (dragExit): Fixed typos in argument type.
8349         (dragDropEnd): Fixed typos in argument type.
8350         * java/awt/dnd/DragSourceDropEvent.java:
8351         New file, merge from Classpath.
8352         * java/awt/dnd/DropTarget.java:
8353         Added stubs, merge from Classpath.
8354         * java/awt/dnd/DropTargetAdapter.java:
8355         New file, merge from Classpath.
8356         * java/awt/dnd/DropTargetContext.java:
8357         New file, merge from Classpath.
8358         * java/awt/dnd/DropTargetDragEvent.java:
8359         New file, merge from Classpath.
8360         * java/awt/dnd/DropTargetDropEvent.java:
8361         New file, merge from Classpath.
8362         * java/awt/dnd/DropTargetEvent.java:
8363         New file, merge from Classpath.
8364         * java/awt/dnd/DropTargetListener.java:
8365         New file, merge from Classpath.
8366         * java/awt/dnd/MouseDragGestureRecognizer.java:
8367         New file, merge from Classpath.
8368         * java/awt/dnd/peer/DropTargetContextPeer.java:
8369         New file, merge from Classpath.
8371 2002-10-03  Michael Koch  <konqueror@gmx.de>
8373         * java/net/DatagramPacket.java
8374         (setLength): Fixed typo and be HTML-aware.
8375         * java/net/InetSocketAddress.java
8376         (InetSocketAddress): Correct initialization of hostname, fixed typo.
8377         (equals): Added comment about equality of InetSocketAddress objects.
8378         * java/net/ServerSocket.java
8379         (accept): Added checks.
8380         (isClosed): New stubbed method.
8381         * java/net/SocketOptions.java: Reindention.
8382         * java/net/SocketPermission
8383         (SocketPermission): Documentation fixed.
8385 2002-10-03  Michael Koch  <konqueror@gmx.de>
8387         * java/net/DatagramSocket.java
8388         (receive): Check with SecurityManager AFTER the packet is received,
8389         check if connected to multicast address, documentation added.
8390         (send): Only check SecurityManager if connected, check address of
8391         packet to send.
8392         (connect): Implemented, documentation added.
8393         * java/net/Inet6Address.java: New file (not added yet to Makefile.am).
8394         * java/net/InetSocketAddress.java
8395         (whole file): Reindented.
8396         (hostname): New attribute.
8397         (InetSocketAddress): Initialize new attribute.
8398         (getAddress): Documentation added.
8399         (getHostName): Documentation added.
8400         (getPort): Documentation added.
8401         (hashCode): Documentation added.
8402         (isUnresolved): Documentation added.
8403         (toString): Conform to output of JDK 1.4.1, documentation added.
8404         * java/net/MulticastSocket.java
8405         (joinGroup): Removed FIXME, documentation added.
8406         (leaveGroup): Removed FIXME, documentation added.
8407         (send): Documentation added.
8408         * java/net/Socket.java
8409         (inputShutdown): New variable.
8410         (outputShutdown): New variable.
8411         (Socket): Initialize new variables.
8412         (getRemoteSocketAddress): Check if connected.
8413         (shutdownInput): Set new variable.
8414         (shutdownOutput): Set new variable.
8415         (isConnected): New method.
8416         (isClosed): New method.
8417         (isInputShutdown): New method.
8418         (isOutputShutdown): New method.
8419         * java/net/URLStreamHandler.java
8420         (URLStreamHandler): New method.
8421         (openConnection): Added documentation.
8422         (parseURL): Added documentation.
8423         (getHostAddress): New method.
8424         (getDefaultPort): New method.
8426 2002-10-02  Tom Tromey  <tromey@redhat.com>
8428         * java/rmi/activation/ActivationDesc.java,
8429         java/rmi/activation/ActivationGroupDesc.java,
8430         java/rmi/activation/ActivationGroupID.java,
8431         java/rmi/activation/ActivationID.java: New versions from
8432         Classpath.
8434 2002-09-30  Bo Thorsen  <bo@suse.de>
8436         * sysdep/x86-64/locks.h (compare_and_swap): Fix multilib support.
8438 2002-09-30  Tom Tromey  <tromey@redhat.com>
8440         * java/io/ObjectInputStream.java (resolveProxyClass): New method
8441         from Classpath.
8442         * Makefile.in: Rebuilt.
8443         * Makefile.am (rmi_java_source_files): Added new files.
8444         * gnu/java/rmi/RMIMarshalledObjectInputStream.java,
8445         gnu/java/rmi/RMIMarshalledObjectOutputStream.java,
8446         gnu/java/rmi/server/ConnectionRunnerPool.java: New files from
8447         Classpath.
8448         * gnu/java/rmi/dgc/DGCImpl.java,
8449         gnu/java/rmi/dgc/DGCImpl_Skel.java,
8450         gnu/java/rmi/dgc/DGCImpl_Stub.java,
8451         gnu/java/rmi/registry/RegistryImpl_Skel.java,
8452         gnu/java/rmi/registry/RegistryImpl_Stub.java,
8453         gnu/java/rmi/server/RMIHashes.java,
8454         gnu/java/rmi/server/RMIObjectInputStream.java,
8455         gnu/java/rmi/server/RMIObjectOutputStream.java,
8456         gnu/java/rmi/server/UnicastConnection.java,
8457         gnu/java/rmi/server/UnicastConnectionManager.java,
8458         gnu/java/rmi/server/UnicastRef.java,
8459         gnu/java/rmi/server/UnicastServer.java,
8460         gnu/java/rmi/server/UnicastServerRef.java,
8461         java/rmi/MarshalledObject.java,
8462         java/rmi/server/RMIClassLoader.java,
8463         java/rmi/server/RemoteObject.java,
8464         java/rmi/server/UnicastRemoteObject.java,
8465         java/security/SecureClassLoader.java: Merged from Classpath.
8467 2002-09-29  Anthony Green  <green@redhat.com>
8469         * java/lang/reflect/UndeclaredThrowableException.java: New file.
8470         Imported from GNU Classpath.
8471         * java/lang/reflect/natProxy.cc: New file.
8472         * java/lang/reflect/InvocationHandler.java: New file.  Imported
8473         from GNU Classpath.
8474         * java/lang/reflect/Proxy.java: New file.  Imported from GNU
8475         Classpath.
8476         * gnu/java/lang/reflect/TypeSignature.java: Refresh from GNU
8477         Classpath.
8478         * gnu/classpath/Configuration.java.in (HAVE_NATIVE_GET_PROXY_DATA,
8479         HAVE_NATIVE_GET_PROXY_CLASS, HAVE_NATIVE_GENERATE_PROXY_CLASS):
8480         New statics.
8481         * gcj/javaprims.h ("Java"): Add new classes.
8482         * java/lang/reflect/Proxy.java: Fix check for duplicate interfaces.
8483         * Makefile.am (java/lang/reflect/Proxy$$ProxyData.h): Create this.
8484         java/lang/reflect/Proxy$$ProxyType.h): And this.
8485         (inner_nat_headers): Add these new headers.
8486         (ordinary_java_source_files): Add new files.
8487         (nat_source_files): Add new file.
8488         * Makefile.in: Rebuilt.
8490 2002-09-28  Richard Earnshaw  <rearnsha@arm.com>
8492         * configure.host: Handle arm*-elf, strongarm*-elf and xscale*-elf with
8493         a single configuration.
8495 2002-09-25  Jesse Rosenstock  <jmr@ugcs.caltech.edu>
8497         * java/util/TimeZone.java (getDSTSavings): New method.
8498         Fixes PR libgcj/7786.
8500 2002-09-25  Jesse Rosenstock  <jmr@ugcs.caltech.edu>
8502         * resolve.cc (_Jv_ResolvePoolEntry) [end_of_method_search]: Check
8503         to see if `the_method == 0' before looking up vtable index.
8504         Fixes PR libgcj/7709.
8506 2002-09-25  Tom Tromey  <tromey@redhat.com>
8508         * java/lang/natClassLoader.cc:
8509         (_Jv_PrepareCompiledClass): Throw NoClassDefFoundError, per spec.
8510         * resolve.cc: Include NoClassDefFoundError.h, not
8511         ClassNotFoundException.h.
8512         (_Jv_ResolvePoolEntry): Throw NoClassDefFoundError, per spec.
8514         * defineclass.cc: Don't include ClassNotFoundException.h.
8516         * resolve.cc: Include StringBuffer.
8517         (_Jv_ResolvePoolEntry): Use StringBuffer to create error string.
8519         * boehm.cc (_Jv_MarkObj): Don't fail if class object has been
8520         allocated but not initialized.
8522 2002-09-25  Jesse Rosenstock  <jmr@ugcs.caltech.edu>
8524         Fix for PR libgcj/7766:
8525         * java/util/zip/ZipInputStream.java (entryAtEOF): New field.
8526         (getNextEntry): Set it.
8527         (closeEntry): Likewise.
8528         (read): Likewise.
8529         (close): Likewise.
8530         (available): Use it.
8532 2002-09-25  Michael Koch  <konqueror@gmx.de>
8534         * java/net/DatagramSocket.java
8535         (DatagramSocket): Initialize new instance variables.
8536         (close): Reset new instance variables.
8537         (getLocalAddress): Remove unneeded SecurityManager usage.
8538         (getLocalPort): Check if socket is already bound.
8539         (isConnected): New method.
8540         (getInetAddress): Implemented.
8541         (getPort): Better Implementation, documentation fixed.
8542         (getRemoteSocketAddress): New method.
8543         * java/net/JarURLConnection.java
8544         (element): Typo fixed.
8545         (getMainAttributes): New method.
8546         (getAttributes): New method (stub only).
8547         (getManifest): New method (stub only).
8548         * java/net/NetPermission.java: Added serialVersionsUID.
8549         * java/net/Socket.java
8550         (connect): Check blocking mode of associated channel,
8551         documentation added.
8552         (getLocalSocketAddress): Better implementation.
8553         (getRemoteSocketAddress): Implemented.
8554         (isBound): New method.
8555         (setSendBufferSize): Documentation added.
8556         * java/net/SocketAddress.java: Added serialVersionsUID.
8557         * java/net/SocketPermission.java: Added serialVersionsUID.
8558         * java/net/URL.java
8559         (URL): Wrap for shorter lines, initialize new instance variables,
8560         documentation added.
8561         (equals): Check new instance variables too.
8562         (getContent): Documentation added.
8563         (getPath): Documentation added.
8564         (getAuthority): New method.
8565         (getHost): Documentation added.
8566         (getPort): Documentation added.
8567         (getDefaultPort): New method.
8568         (getProtocol): Documentation added.
8569         (getUserInfo): Documentation added.
8570         (set): Initialize new instance variables, documentation added.
8571         * java/net/URLStreamHandler.java
8572         (setURL): New method.
8573         * java/net/natPlainDatagramSocketImpl.cc
8574         (connect): Fix exception name.
8575         (disconnect): Fix exception name.
8577 2002-09-25  Michael Koch  <konqueror@gmx.de>
8579         * java/nio/channels/spi/AbstractSelectableChannel.java: New file.
8580         * java/nio/channels/DatagramChannel.java:
8581         extends AbstractSelectableChannel
8582         * java/nio/channels/ServerSocketChannel.java:
8583         extends AbstractSelectableChannel
8584         * java/nio/channels/SocketChannel.java:
8585         extends AbstractSelectableChannel
8586         * Makefile.am (ordinary_java_source_files):
8587         java/nio/channels/spi/AbstractSelectableChannel.java added.
8588         * Makefile.in: Regenerated.
8590 2002-09-25  Michael Koch  <konqueror@gmx.de>
8592         * java/net/DatagramSocket.java
8593         (DatagramSocket): Exception documentation added.
8594         (bind): Exception documentation added, addded SecurityManager check,
8595         added SocketAddress type check.
8596         (getSoTimeout): Check impl.
8597         (receive): Fix SecurityManager check, check impl, documentation added.
8598         (send): Check channel mode, documentation added.
8599         (connect): New method.
8600         (disconnect): Implemented.
8601         (getLocalSocketAddress): New method.
8602         (getReceiveBufferSize): Check impl.
8603         (setReuseAddress): Check impl.
8604         (getReuseAddress): Check impl.
8605         (setBroadcast): Check impl.
8606         (getBroadcast): Check impl.
8607         (setTrafficClass): Check impl, Documentation cleared.
8608         (getTrafficClass): Check impl.
8609         (getSendBufferSize): Check impl.
8610         (setReceiveBufferSize): Check impl, documentation added.
8611         (setSendBufferSize): Documentation added.
8612         (setDatagramSocketImplFactory): New method.
8613         * java/net/HttpURLConnection.java
8614         (HTTP_INTERNAL_ERROR): The correct code is 500.
8615         (HTTP_NOT_IMPLEMENTED): Added new constant.
8616         (setFollowRedirects): Documentation added.
8617         (getInstanceFollowRedirects): New method.
8618         (setInstanceFollowRedirects): New method.
8619         (setRequestMethod): Documentation added.
8620         (getResponseCode): Documentation added.
8621         (getResponseMessage): Documentation added.
8622         * java/net/JarURLConnection.java
8623         (JarURLConnection): protected since JDK 1.4.
8624         (getJarEntry): java.io.IOException to IOException, documentation added.
8625         (getJarFile): Documentation added.
8626         * java/net/ServerSocket.java
8627         (ServerSocket): Private to public, exception added.
8628         (ServerSocket): java.io.IOException to IOException, documentation added.
8629         (bind): Check socket address type, documentation added.
8630         (bind): java.io.IOException to IOException, documentation added.
8631         (accept): Documentation added.
8632         (implAccept): Check ch is not non-blocking, documentation added.
8633         (setSoTimeout): Documentation fixed.
8634         (setReceiveBufferSize): Documentation added.
8635         * java/net/Socket.java
8636         (Socket): Documentation added.
8637         (bind): Documentation added.
8638         (connect): Check socket address type, documentation added.
8639         (getRemoteSocketAddress): New method.
8640         (getLocalSocketAddress): New method.
8641         (setSoLinger): Documentation added.
8642         (getReuseAddress): New method.
8643         (setReuseAddress): New method.
8644         (getTrafficClass): New method.
8645         (setTrafficClass): New method.
8646         * java/net/URLStreamHandler.java
8647         (openConnection): java.io.IOException to IOException.
8648         (parseURL): Documentation added.
8649         (sameFile): public to protected, documentation added.
8650         (setURL): Documentation added.
8651         * java/nio/IllegalBlockingModeException.java: New file.
8652         * Makefile.am (ordinary_java_source_files):
8653         added java/nio/IllegalBlockingModeException.java
8654         * Makefile.in: Regenerated.
8656 2002-09-25  Michael Koch  <konqueror@gmx.de>
8658         * java/net/DatagramPacket
8659         (DatagramPacket): Exception documentation added.
8660         (setData): Likewise.
8661         (setSocketAddress): Likewise.
8662         * java/net/DatagramSocketImpl.java
8663         (peek): Documentation addded.
8664         (peekData): Documentation addded.
8665         (send): Documentation addded.
8666         (receive): Documentation addded.
8667         (connect): New method.
8668         (disconnect): New method.
8669         (joinGroup): New abstract method.
8670         (leaveGroup): New abstract method.
8671         * java/net/InetSocketAddress.java
8672         (InetSocketAddress): Documentation added.
8673         (equals): final keyword added.
8674         (getAddress): final keyword added.
8675         (getHostName): final keyword added.
8676         (getPort): final keyword added.
8677         (hashCode): final keyword added.
8678         (isUnresolved): final keyword added.
8679         * java/net/MulticastSocket.java
8680         (MulticastSocket): Documentation added.
8681         (MulticastSocket): New method.
8682         (joinGroup): Documentation added.
8683         (joinGroup): New method.
8684         (leaveGroup): Documentation added.
8685         (leaveGroup): New method.
8686         (send): Documentation added.
8687         * java/net/NetworkInterface.java
8688         (getByName): Documentation added.
8689         (getByInetAddress): Documentation added.
8690         (getNetworkInterfaces): Documentation added.
8691         * java/net/PlainDatagramSocketImpl.java
8692         (connect): New method.
8693         (disconnect): New method.
8694         * java/net/SocketImpl.java
8695         (create): Documentation added.
8696         (shutdownInput): Convert public to protected, as it always was.
8697         (shutdownOutput): Convert public to protected, as it always was.
8698         * java/net/SocketOptions.java
8699         (whole file): Reintented.
8700         * java/net/URLClassLoader.java
8701         (URLClassLoader): SecurityManager check added, documentation added.
8702         (findResources): Documentation added.
8703         (findClass): Documentation added.
8704         (newInstance): More correct method arguments.
8705         * java/net/URLConnection.java
8706         (connect): Documentation added.
8707         (getContent): Documentation added.
8708         (getPermission): Documentation added.
8709         (getInputStream): Documentation added.
8710         (getOutputStream): Documentation added.
8711         (setDoInput): Throw correct exception, documentation added.
8712         (setDoOutput): Throw correct exception, documentation added.
8713         (setAllowUserInteraction): Throw correct exception, documentation added.
8714         (setUseCaches): Throw correct exception, documentation added.
8715         (setIfModifiedSince): Throw correct exception, documentation added.
8716         (setRequestProperty): Throw exception, documentation added.
8717         (addRequestProperty): Throw exception, documentation added.
8718         (getRequestProperty): Throw exception, documentation added.
8719         (getRequestProperties): Documentation added.
8720         (setContentHandlerFactory): Documentation added.
8721         (guessContentTypeFromName): protected to public.
8722         (setFileNameMap): Documentation added.
8723         * java/net/URLDecoder.java
8724         (URLDecoder): New method.
8725         (decode): Documentation added.
8726         (whole file): Reindented.
8727         * java/net/URLEncoder.java
8728         (encode): Documentation added.
8729         * java/net/natPlainDatagramSocketImpl.cc
8730         (connect): New method.
8731         (disconnect): New method.
8732         * javax/naming/RefAddr:
8733         (addrType): addrType was never final.
8734         (equals): Fix typo in method name.
8735         * javax/naming/BinaryRefAddr:
8736         (equals): Fix typo in method name.
8738 2002-09-22  Tom Tromey  <tromey@redhat.com>
8740         Fix for PR libgcj/6576:
8741         * java/util/ResourceBundle.java (tryBundle): Cache `null' if we
8742         didn't find a given bundle.
8743         (getBundle): Don't require base bundle.
8744         (setParent): Removed old comment.
8745         (tryLocalBundle): Try components even if preceding components were
8746         empty.
8748 2002-09-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8750         * Makefile.am (all-multi): Fix multilib parallel build.
8752 2002-09-21  Michael Koch  <konqueror@gmx.de>
8754         * java/net/Socket.java
8755         (sendUrgentData): New method.
8756         (getChannel): New method.
8757         * java/net/ServerSocket.java
8758         (getChannel): New method.
8759         (isBound): New method.
8760         * java/net/DatagramSocket.java
8761         (DatagramSocket): Two new methods.
8762         (bind): New method.
8763         (getChannel): New method.
8764         (isBound): New method.
8765         (send): Added newline to to make shorter lines.
8766         * java/net/PlainDatagramSocketImpl.java
8767         (mcastGrp): Added argument.
8768         (join): Use new mcastGrp.
8769         (leave): Use new mcastGrp.
8770         (joinGroup): New method.
8771         (leaveGroup): New method.
8772         * java/net/natPlainDatagramSocketImpl.cc
8773         (mcastGrp): Added argument, no yet really implemented.
8774         (getOption): Added newline for shorter lines.
8775         * java/net/natPlainSocketImpl.cc
8776         (read, setOption, getOption): Added newline for shorter lines.
8778 2002-09-19  Tom Tromey  <tromey@redhat.com>
8780        * java/lang/ClassLoader.java (resolveClass0): Set cause for
8781        newly-created exception.
8783 2002-09-18  Michael Koch  <konqueror@gmx.de>
8785         * java/util/regex/Matcher.java, java/util/regex/Pattern.java,
8786         java/util/regex/PatternSyntaxException.java:
8787         Merge with classpath, new files.
8788         * Makefile.am (core_java_source_files):
8789         Added java/util/regex/Matcher.java,
8790         java/util/regex/Pattern.java,
8791         java/util/regex/PatternSyntaxException.java
8792         * Makefile.in: Regenerated.
8793         * include/config.h.in: Added HAVE_NET_IF_H.
8794         * java/net/natNetworkInterface.cc (getRealNetworkInterfaces):
8795         Removed #if 0 ... #endif.
8797 2002-09-17  Michael Koch  <konqueror@gmx.de>
8799         * java/net/natNetworkInterface.cc:
8800         Removed unneed and yet wrong includes.
8802 2002-09-17  Michael Koch  <konqueror@gmx.de>
8804         * java/net/NetworkInterface.java: New file.
8805         * java/net/natNetworkInterface.java: New file.
8806         * configure.in: Added check for net/if.h.
8807         * configure: Regenerated.
8808         * Makefile.am
8809         (ordinary_java_source_files): Added NetworkInterface.java.
8810         (nat_source_files): Added natNetworkInterface.cc.
8811         * Makefile.in: Regenerated.
8813 2002-09-16  Tom Tromey  <tromey@redhat.com>
8815         * java/net/URLClassLoader.java (findClass): Code source for a
8816         class from a jar is not necessarily a jar: URL.
8818 2002-09-16  Michael Koch  <konqueror@gmx.de>
8820         * java/lang/AssertionError.java:
8821         Merge with classpath, fixes HTML.
8822         * java/rmi/server/LogStream.java:
8823         Merge with classpath, fixes some constants.
8824         * java/net/server/RemoteServer.java:
8825         Merge with classpath, adds serialVersionUID.
8826         * javax/naming/BinaryRefAddr.java:
8827         Merge with classpath, s/equal/equals/.
8828         * javax/naming/NamingException.java:
8829         Merge with classpath, fixed typo.
8830         * javax/naming/RefAddr.java:
8831         Merge with classpath, s/equal/equals/.
8832         * java/awt/Toolkit.java:
8833         s/gnu.java.awt.peer.gtk.GtkToolkit/gnu.awt.gtk.GtkToolkit/
8834         and typo fixed.
8836 2002-09-15  Adam Megacz <adam@xwt.org>
8838         * java/net/natPlainSocketImpl.cc: fixed typo.
8840 2002-09-15  Adam Megacz <adam@xwt.org>
8842         * java/net/natPlainSocketImpl.cc: #ifdef-shielded socket timeouts,
8843         which don't work on Win32 (yet).
8845 2002-09-14  Adam Megacz <adam@xwt.org>
8847         * java/net/natPlainDatagramSocket.cc: removed #include
8848         <ws2tcpip.h>; the mingw header is broken (conflicts with itself).
8849         * include/win32.h: included definition for IP_TOS to satisfy
8850         natPlainDatagramSocket.cc
8852 2002-09-13  Michael Koch  <konqueror@gmx.de>
8854         * java/net/DatagramPacket.java (DatagramPacket):
8855         Added linebreak for 80 chars per line.
8856         * java/net/JarURLConection.java
8857         (getInputStreami, getJarEntry): Likewise.
8858         * java/net/SocketPErmission.java
8859         (SocketPermission class docu, implies): Likewise.
8860         * java/net/URLClassLoader.java (findResources): Likewise.
8861         * java/net/URLConnection.java: Reindendet remark for 80 chars per line
8863 2002-09-13  Michael Koch  <konqueror@gmx.de>
8865         * java/nio/channels/DatagramChannel.java,
8866         java/nio/channels/ServerSocketChannel.java
8867         java/nio/channels/SocketChannel.java:
8868         New dummy files to make java.net fully JDK 1.4 compatible
8869         * Makefile.am (ordinary_java_source_files): Added
8870         java/net/DatagramSocketImplFactory.java (long forgotten),
8871         java/nio/SocketChannel.java,
8872         java/nio/ServerSocketChannel.java,
8873         java/nio/DatagramChannel.java
8874         * Makefile.in: Regenrated.
8876 2002-09-12  Michael Koch  <konqueror@gmx.de>
8878         * java/net/DatagramSocketImpl.java
8879         (peekData): New method.
8880         * java/net/PlainDatagramSocketImpl.java
8881         (peekData): New method.
8882         * java/net/natPlainDatagramSocketImpl.cc
8883         (peekData): New method.
8884         * java/net/URLConnection
8885         (getPermission): New method.
8886         (addRequestProperty): New method.
8887         (getRequestProperties): New method.
8888         (guessContentTypeFromStream): New method, not really implemented.
8889         (URLConnection): Added/updated documentation.
8890         (connect): Added/updated documentation.
8891         (getURL): Added/updated documentation.
8892         (getContentLength): Added/updated documentation.
8893         (getContentType: Added/updated documentation.
8894         (getContentEncoding): Added/updated documentation.
8895         (getExpiration): Added/updated documentation.
8896         (getDate): Added/updated documentation.
8897         (getLastModified): Added/updated documentation.
8898         (getHeaderField): Added/updated documentation.
8899         (getHeaderFields): Added/updated documentation.
8900         (getHeaderFieldInt): Added/updated documentation.
8901         (getHeaderFieldDate): Added/updated documentation.
8902         (getHeaderFieldKey): Added/updated documentation.
8903         (getContent): Added/updated documentation.
8904         (getInputStream): Added/updated documentation.
8905         (getOutputStream): Added/updated documentation.
8906         (toString): Added/updated documentation.
8907         (setDoInput): Added/updated documentation.
8908         (getDoInput): Added/updated documentation.
8909         (setDoOutput): Added/updated documentation.
8910         (getDoOutput): Added/updated documentation.
8911         (setAllowUserInteraction): Added/updated documentation.
8912         (getAllowUserInteraction): Added/updated documentation.
8913         (setDefaultAllowUserInteraction): Added/updated documentation.
8914         (getDefaultAllowUserInteraction): Added/updated documentation.
8915         (setUseCaches): Added/updated documentation.
8916         (getUseCaches): Added/updated documentation.
8917         (setIfModifiedSince): Added/updated documentation.
8918         (getIfModifiedSince): Added/updated documentation.
8919         (getDefaultUseCaches): Added/updated documentation.
8920         (setDefaultUseCaches): Added/updated documentation.
8921         (setRequestProperty): Added/updated documentation.
8922         (getRequestProperty): Added/updated documentation.
8923         (setDefaultRequestProperty): Added/updated documentation.
8924         (getDefaultRequestProperty): Added/updated documentation.
8925         (setContentHandlerFactory): Added/updated documentation.
8926         (guessContentTypeFromName): Added/updated documentation.
8927         (getFileNameMap): Added/updated documentation.
8928         (setFileNameMap): Added/updated documentation.
8930 2002-09-11  Michael Koch  <konqueror@gmx.de>
8932         * java/net/Socket.java
8933         (Socket): protected to public (since JDK 1.4). Added @specnote.
8934         (bind): New method.
8935         (connect): Two new methods.
8936         (getKeepalive): Get correct socket option.
8937         (setKeepalive): Set correct socket option.
8938         (getOOBInline): New method.
8939         (setOOBInline): New method.
8940         * java/net/ServerSocket.java
8941         (bind): Two new methods.
8942         (getInetAddress): Reimplemented, catch exception.
8943         (getLocalSocketAddress): New method.
8944         (setReuseAddress): New method.
8945         (getReuseAdress): New method.
8946         (setReceiveBufferSize): New method.
8947         (getReceiveBufferSize): New method.
8948         (toString): Made string JDK 1.4 compliant.
8950 2002-09-10  Michael Koch  <konqueror@gmx.de>
8952         * java/net/SocketImpl.java
8953         (connect): New method.
8954         (supportsUrgentData): New method.
8955         (sendUrgentData): New method.
8956         * java/net/PlainSocketImpl.java
8957         (connect): One new method and two new implementation.
8958         (sendUrgentData): New method.
8959         * java/natPlainSocketImpl.cc
8960         (connect): Arguments changed, added support for timeouts.
8961         (getOption): Another __java_boolean to jboolean.
8963 2002-09-07  Adam Megacz <adam@xwt.org>
8965         * java/net/natPlainDatagramSocket.cc: include ws2tcpip.h for
8966         definition of IP_TOS.
8968 2002-09-04  Michael Koch  <konqueror@gmx.de>
8970         * java/net/DatagramSocket.java
8971         (DatagramSocket): Added documentation.
8972         (close): Likewise.
8973         (getLocalAddress): Likewise.
8974         (getLocalPort): Likewise.
8975         (receive): Likewise.
8976         (send): Likewise.
8977         (setSoTimeout): Likewise.
8978         (connect): New method.
8979         (disconnect): New method.
8980         (getInetAddress): New method (FIXME)
8981         (getPort): New method.
8982         (setReuseAddress): New method.
8983         (getReuseAddress): New method.
8984         (setBroadcast): New method.
8985         (getBroadcast): New method.
8986         (setTrafficClass): New method.
8987         (getTrafficClass): New method.
8988         * java/net/MulticastSocket.java):
8989         (getTTL): Added @see in documentation.
8990         (setTTL): Added @see in documentation.
8991         (setLoopbackMode): New method.
8992         (getLoopbackMode): New method.
8993         * java/net/PlainSocketImpl.java:
8994         Added new constants for the options SO_BROADCAST, SO_OOBINLINE,
8995         IP_MULTICAST_IF2, IP_MULTICAST_LOOP, IP_TOS
8996         * java/net/PlainDatagramSocketImpl.java
8997         Added new constants for the options SO_BROADCAST, SO_OOBINLINE,
8998         IP_MULTICAST_IF2, IP_MULTICAST_LOOP, IP_TOS
8999         * java/net/natPlainSocketImpl.cc
9000         (getOption): Implemented the options SO_BROADCAST, SO_OOBINLINE,
9001         IP_MULTICAST_IF2, IP_MULTICAST_LOOP, IP_TOS
9002         (setOption): Implemented the options SO_BROADCAST, SO_OOBINLINE,
9003         IP_MULTICAST_IF2, IP_MULTICAST_LOOP, IP_TOS
9004         This should also fix SO_KEEPALIVE
9005         * java/net/natPlainDatagramSocketImpl.cc
9006         (getOption): Implemented the options SO_BROADCAST, SO_OOBINLINE,
9007         IP_MULTICAST_IF2, IP_MULTICAST_LOOP, IP_TOS
9008         (setOption): Implemented the options SO_BROADCAST, SO_OOBINLINE,
9009         IP_MULTICAST_IF2, IP_MULTICAST_LOOP, IP_TOS
9011 2002-09-04  Michael Koch  <konqueror@gmx.de>
9013         * java/net/SocketOptions.java: added static variables to be JDK 1.4
9014         compatible (SO_BROADCAST, SO_OOBINLINE, IP_MULTICAST_IF2,
9015         IP_MULTICAST_LOOP, IP_TOS
9017 2002-09-03  Tom Tromey  <tromey@redhat.com>
9019         * java/lang/Class.h (_getDeclaredMethod): Declare.
9020         (_getMethod): Now private.
9021         * java/lang/natClass.cc (_getDeclaredMethod): Renamed from
9022         getDeclaredMethod.  Now returns NULL on failure.
9023         * java/lang/Class.java (_getDeclaredMethod): Declare.
9024         (getDeclaredMethod): No longer native; implements access checks.
9026 2002-09-01  Mark Wielaard  <mark@klomp.org>
9028         * gnu/gcj/runtime/NameFinder.java (remove_interpreter): New field.
9029         (sanitizeStack): Correctly reset unknown and interpreter counters,
9030         detect interpreter runtime frames.
9031         (demangleInterpreterMethod): New method.
9032         * gnu/gcj/runtime/natNameFinder.cc (lookupInterp): Use new method.
9033         * java/lang/natVMThrowable.cc (fillInStackTrace): Change order of
9034         filling in addrs[].
9036 2002-09-02  Michael Koch  <konqueror@gmx.de>
9038         * java/net/DatagramPacket.java, java/net/MulticsstSocket.java:
9039         re-indented documentation.
9041 2002-08-30  Jesse Rosenstock  <jmr@ugcs.caltech.edu>
9043         * java/util/Calendar.java (getTimeInMillis, getTimeInMillis): Now
9044         public, per 1.4 spec.  Fixes PR libgcj/7785.
9046 2002-08-30  Jeff Sturm  <jsturm@one-point.com>
9048         * Makefile.in: Rebuilt.
9049         * Makefile.am (ZIP, GCJH): Remove $(EXEEXT).
9051 2002-08-29  Tom Tromey  <tromey@redhat.com>
9053         * java/net/JarURLConnection.java (getCertificates): New method
9054         from Classpath.
9055         * java/net/URLClassLoader.java (URLClassLoader): Extends
9056         SecureClassLoader.
9057         (definePackage): New method from Classpath.
9058         (getPermissions): Likewise.
9059         (newInstance): Likewise.
9060         (findClass): Construct CodeSource for new class (from Classpath).
9061         * java/net/SocketImpl.java (shutdownInput, shutdownOutput): New
9062         methods.
9063         * java/net/URL.java (getUserInfo): New method.
9064         (set(String,String,int,String,String,String,String,String)): New
9065         method.
9066         * java/net/PlainSocketImpl.java (_Jv_SO_KEEPALIVE_): Define.
9067         (shutdownInput, shutdownOutput): Declare.
9068         * java/net/PlainDatagramSocketImpl.java (_Jv_SO_KEEPALIVE_):
9069         Define.
9070         * java/net/natPlainSocketImpl.cc (setOption): Handle keepalive.
9071         (getOption): Likewise.
9072         (shutdownInput): New method.
9073         (shutdownOutput): Likewise.
9074         * java/net/natPlainDatagramSocketImpl.cc (setOption): Handle
9075         keepalive.
9076         (getOption): Likewise.
9077         * java/net/SocketOptions.java (SO_KEEPALIVE): New constant.
9078         * java/net/Socket.java (setKeepAlive): New method.
9079         (getKeepAlive): Likewise.
9080         (shutdownInput, shutdownOutput): New methods.
9082 2002-08-29  Michael Koch  <konqueror@gmx.de>
9084         * java/net/DatagramPacket.java: updated to JDK 1.4 API
9085         new methods are:
9086         DatagramPacket(byte[] buf, int offset, int length, SocketAddress
9087           address),
9088         DatagramPacket(byte[] buf, int length, SocketAddress address),
9089         void setSocketAddress(SocketAddress address)
9090         public SocketAddress getSocketAddress()
9092 2002-08-29  Tom Tromey  <tromey@redhat.com>
9094         * java/io/natFileDescriptorPosix.cc (setLength): Handle case where
9095         ftruncate is missing.
9096         * configure, include/config.h.in: Rebuilt.
9097         * acconfig.h (HAVE_FTRUNCATE): Mention.
9098         * configure.in: Check for ftruncate.
9100 2002-08-29  Tom Tromey  <tromey@redhat.com>
9102         * include/jvm.h (struct _Jv_frame_info): New structure.
9103         * gnu/gcj/runtime/natNameFinder.cc: Include StringBuffer.h,
9104         java-interp.h.
9105         (lookupInterp): New method.
9106         (getAddrAsString): Use _Jv_frame_info.
9107         (dladdrLookup): Likewise.
9108         * gnu/gcj/runtime/NameFinder.java (lookup): Try to look up
9109         interpreted frame.
9110         (lookupInterp): Declare.
9111         * java/lang/natVMThrowable.cc: Include Thread.h, java-interp.h.
9112         (fillInStackTrace): Collect information on interpreted frames.
9113         Use _Jv_frame_info.
9114         * interpret.cc: Include Thread.h.
9115         (run): Create and push _Jv_MethodChain object.
9116         (_Jv_EndOfInterpreter): New global.
9117         * java/lang/Thread.java (interp_frame): New field.
9118         * include/java-interp.h (struct _Jv_MethodChain): New structure.
9119         Include NameFinder.h.
9121 2002-08-28  Tom Tromey  <tromey@redhat.com>
9123         * java/lang/Class.h: Include Package.h.
9124         (Class::getProtectionDomain): Declare.
9125         (Class::getPackage): Declare.
9127 2002-08-28  Michael Koch <konqueror@gmx.de>
9129         * java/net/InetSocketAddress.java: Added some documentation and argument
9130         checks for the port numbers.
9131         * java/net/DatagramSocketImplFactory.java: New file.
9133 2002-08-28  Michael Koch <konqueror@gmx.de>
9135         * java/net/Authenticator.java: added some documentation.
9137 2002-08-27  Tom Tromey  <tromey@redhat.com>
9139         * java/lang/reflect/natConstructor.cc (newInstance): Initialize
9140         class.
9141         * java/lang/reflect/natMethod.cc (invoke): Initialize class.
9143 2002-08-27  Michael Koch <konqueror@gmx.de>
9145         * java/net/BindException.java,
9146         java/net/JarURLConnection.java,
9147         java/net/FileNameMap.java,
9148         java/net/HttpURLConnection.java,
9149         java/net/InetSocketAddress.java,
9150         java/net/DatagramPacket.java,
9151         java/net/DatagramSocket.java,
9152         java/net/DatagramSocketImpl.java,
9153         java/net/MulticastSocket.java,
9154         java/net/PasswordAuthentication.java,
9155         java/net/ServerSocket.java,
9156         java/net/Socket.java,
9157         java/net/URLClassLoader.java,
9158         java/net/URLConnection.java: add/update of some @since/@deprecated
9160 2002-08-27  Tony Kimball <alk@pobox.com>
9161             Tom Tromey  <tromey@redhat.com>
9163         * java/net/natPlainDatagramSocketImpl.cc (NATIVE_CLOSE): New
9164         define.
9165         (::close): Removed.
9166         (PlainDatagramSocketImpl::close): Use NATIVE_CLOSE.
9167         * java/net/natPlainSocketImpl.cc (NATIVE_CLOSE): New define.
9168         (::close): Removed.
9169         (PlainSocketImpl::close): Use NATIVE_CLOSE.
9170         * include/win32.h (getcwd): Removed declaration.  Include io.h.
9172 2002-08-25  Adam Megacz <adam@xwt.org>
9174         * include/win32.h (getcwd): copied function declaration as
9175         temporary fix for header confusion.
9177 2002-08-24  Mark Wielaard <mark@klomp.org>
9179         * Makefile.am (libgcj_la_SOURCES): Remove name-finder.cc.
9180         (core_java_source_files): Add VMThrowable.java and NameFinder.java
9181         (nat_source_files): Remove natThrowable.cc, add natVMThrowable.cc
9182         and natNameFinder.cc.
9183         * Makefile.in: Regenerate.
9184         * prims.cc: Use trace_enabled from VMThrowable.
9185         * name-finder.cc: Removed.
9186         * gcj/javaprims.h: Add class VMThrowable.
9187         * gnu/gcj/runtime/NameFinder.java: New file.
9188         * gnu/gcj/runtime/natNameFinder.cc: Likewise.
9189         * include/name-finder.h: Removed.
9190         * java/lang/Throwable.java (printStackTrace (PrintStream)): Use new
9191         method stackTraceString().
9192         (printStackTrace (PrintWriter)): Likewise.
9193         (stackTraceString): Complete rewrite of old printStackTrace using
9194         StringBuffer.
9195         (stackTraceStringBuffer): New helper method for stackTraceString().
9196         (fillInStackTrace): Delegate to VMTrowable.
9197         (getStackTrace): Likewise.
9198         (getStackTrace0): Removed.
9199         (trace_enabled, stackTraceBytes): Moved to new VMThrowable.java.
9200         (setStackTrace): Copy given array.
9201         * java/lang/natThrowable.cc: Removed (replaced by natVMThrowable).
9202         * java/lang/VMThrowable.java: New class.
9203         * java/lang/natVMThrowable.cc: New file.
9205 2003-08-23  Michael Koch  <konqueror@gmx.de>
9207         * java/net/URLConnection.java,
9208         java/netJarURLConnection.java,
9209         gnu/gcj/protocol/core/Connection.java,
9210         gnu/gcj/protocol/file/Connection.java,
9211         gnu/gcj/protocol/http/Connection.java: Added implementation of
9212         getHeaderFields().
9214 2002-08-22  Tom Tromey  <tromey@redhat.com>
9216         * gij.cc (help): Document -cp and -classpath.
9217         (main): Handle -classpath.
9219 2002-08-21  Tom Tromey  <tromey@redhat.com>
9221         * Makefile.in: Rebuilt.
9222         * Makefile.am (ordinary_java_source_files): Added
9223         SocketAddress.java, InetSocketAddress.java.
9224         * java/net/PortUnreachableException.java: Merged with Classpath.
9225         * java/net/SocketTimeoutException.java: Likewise.
9226         * java/net/URISyntaxException.java: Likewise.
9227         * java/net/SocketAddress.java: New class from Classpath.
9228         * java/net/InetSocketAddress.java: Likewise.
9230 2003-08-21  Michael Koch  <konqueror@gmx.de>
9232         * java/net/Authenticator.java: updated JDK 1.4
9233         * java/net/ContentHandler.java: updated JDK 1.4
9235 2002-08-20  Michael Koch  <konqueror@gmx.de>
9237         * java/net/URISyntaxException.java: New file.
9238         * java/net/SocketTimeoutException.java: New file.
9239         * java/net/PortUnreachableException.java: New file.
9240         * Makefile.am: Updated.
9241         * Makefile.in: Rebuilt.
9243 2002-08-18  Mark Wielaard  <mark@klomp.org>
9245         Thanks to Vladimir Puskas <vpuskas@eunet.yu>
9246         * gnu/java/security/provider/MD5.java: Extends MessageDigest, not
9247         MessageDigestSpi (fixes Classpath bug #783).
9249 2002-08-14  Jesse Rosenstock  <jmr@ugcs.caltech.edu>
9251         * java/lang/natPosixProcess.cc (cleanup): Added `path' argument.
9252         (startProcess): Allocate path for chdir in async-signal-safe way.
9254 2002-08-13  Jesse Rosenstock  <jmr@ugcs.caltech.edu>
9256         Fix for PR libgcj/7570 and PR libgcj/7578:
9257         * java/lang/natPosixProcess.cc: Include java/io/File.h.
9258         (startProcess): Handle new `dir' argument.
9259         * java/lang/Win32Process.java (ConcreteProcess): Added `dir'
9260         argument.
9261         * java/lang/PosixProcess.java (ConcreteProcess): Added `dir'
9262         argument.
9263         (startProcess): Likewise.
9264         * java/lang/EcosProcess.java (ConcreteProcess): Added `dir'
9265         argument.
9266         * java/lang/Runtime.java (execInternal): Added `dir' argument.
9267         (exec): Don't create new environment if ENV==null.  Pass DIR to
9268         execInternal.
9269         * java/lang/natRuntime.cc: Include java/io/File.h.
9270         (execInternal): Added `dir' argument.
9272 2002-08-13  Jesse Rosenstock  <jmr@fulcrummicro.com>
9274         * java/io/RandomAccessFile.java (skipBytes): Return number of
9275         bytes skipped.
9277 2002-08-01  Mark Wielaard  <mark@klomp.org>
9279         Reenable patch since shared library troubles on powerpc are solved:
9280         * gnu/java/security/provider/Gnu.java: Reference all implementation
9281         classes by using Class.getName().
9282         * gnu/java/security/der/DEREncodingException.java,
9283         gnu/java/security/provider/DERReader.java,
9284         gnu/java/security/provider/DERWriter.java,
9285         gnu/java/security/provider/DSAKeyPairGenerator.java,
9286         gnu/java/security/provider/DSAParameterGenerator.java,
9287         gnu/java/security/provider/DSAParameters.java,
9288         gnu/java/security/provider/DSASignature.java,
9289         gnu/java/security/provider/GnuDSAPrivateKey.java,
9290         gnu/java/security/provider/GnuDSAPublicKey.java,
9291         gnu/java/security/provider/MD5.java,
9292         gnu/java/security/util/Prime.java: New classes
9293         * Makefile.am (ordinary_java_source_files): Add above files.
9294         * Makefile.in: Regenerate.
9295         * gnu/java/security/provider/DefaultPolicy.java
9296         (getPermissions): Don't maintain static class variable of Permissions.
9297         * gnu/java/security/provider/SHA.java
9298         (engineUpdate): algorithm change.
9299         (engineDigest): algorithm change.
9301 2002-08-09  Mark Wielaard  <mark@klomp.org>
9303         * java/awt/image/MemoryImageSource.java: Change constructor to take
9304         int[] not byte[].
9305         * java/awt/Graphics2D.java: Uncomment methods that can now be
9306         compiled.
9307         * java/awt/GridBagLayout.java: New stub implementation.
9308         * javax/swing/text/html/HTML.java: Stub implementation.
9309         * javax/swing/text/html/parser/ParserDelegator.java: New stub
9310         implementation.
9312         * Makefile.am: Add new files.
9313         * Makefile.in: Rebuilt.
9315 2002-08-09  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
9317         * gnu/awt/j2d/Graphics2DImpl.java: Implement stubs for new abstract
9318         methods in Graphics2D.
9320 2002-08-09  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
9322         AWT/Swing merge from GNU Classpath.
9324         * java/awt/AlphaComposite.java, java/awt/AttributeValue.java,
9325         java/awt/BasicStroke.java, java/awt/BufferCapabilities.java,
9326         java/awt/color/CMMException.java, java/awt/ColorPaintContext.java,
9327         java/awt/color/ProfileDataException.java,
9328         java/awt/CompositeContext.java, java/awt/Composite.java,
9329         java/awt/ContainerOrderFocusTraversalPolicy.java,
9330         java/awt/datatransfer/FlavorTable.java,
9331         java/awt/DefaultFocusTraversalPolicy.java,
9332         java/awt/DefaultKeyboardFocusManager.java, java/awt/DisplayMode.java,
9333         java/awt/dnd/DnDConstants.java, java/awt/dnd/DragGestureEvent.java,
9334         java/awt/dnd/DragGestureListener.java,
9335         java/awt/dnd/DragGestureRecognizer.java,
9336         java/awt/dnd/DragSourceAdapter.java,
9337         java/awt/dnd/DragSourceContext.java,
9338         java/awt/dnd/DragSourceDragEvent.java,
9339         java/awt/dnd/DragSourceEvent.java, java/awt/dnd/DragSource.java,
9340         java/awt/dnd/DragSourceListener.java,
9341         java/awt/dnd/DragSourceMotionListener.java,
9342         java/awt/dnd/DropTarget.java,
9343         java/awt/dnd/InvalidDnDOperationException.java,
9344         java/awt/dnd/peer/DragSourceContextPeer.java,
9345         java/awt/event/AWTEventListenerProxy.java,
9346         java/awt/event/MouseWheelEvent.java,
9347         java/awt/event/MouseWheelListener.java,
9348         java/awt/event/WindowFocusListener.java,
9349         java/awt/event/WindowStateListener.java,
9350         java/awt/FocusTraversalPolicy.java, java/awt/FontFormatException.java,
9351         java/awt/font/TextHitInfo.java, java/awt/geom/Arc2D.java,
9352         java/awt/geom/Area.java, java/awt/geom/CubicCurve2D.java,
9353         java/awt/geom/FlatteningPathIterator.java,
9354         java/awt/geom/GeneralPath.java, java/awt/geom/QuadCurve2D.java,
9355         java/awt/GradientPaint.java, java/awt/GraphicsConfigTemplate.java,
9356         java/awt/GraphicsDevice.java, java/awt/GraphicsEnvironment.java,
9357         java/awt/HeadlessException.java, java/awt/image/BufferedImageOp.java,
9358         java/awt/image/BufferStrategy.java, java/awt/ImageCapabilities.java,
9359         java/awt/image/ImagingOpException.java,
9360         java/awt/image/RasterFormatException.java,
9361         java/awt/image/RenderedImage.java, java/awt/image/TileObserver.java,
9362         java/awt/image/VolatileImage.java,
9363         java/awt/image/WritableRenderedImage.java,
9364         java/awt/im/InputContext.java, java/awt/im/InputMethodHighlight.java
9365         java/awt/im/InputMethodRequests.java, java/awt/im/InputSubset.java,
9366         java/awt/JobAttributes.java, java/awt/KeyboardFocusManager.java,
9367         java/awt/KeyEventDispatcher.java, java/awt/KeyEventPostProcessor.java
9368         java/awt/PageAttributes.java, java/awt/print/Book.java,
9369         java/awt/print/Pageable.java, java/awt/print/PageFormat.java,
9370         java/awt/print/Paper.java, java/awt/print/Printable.java,
9371         java/awt/print/PrinterAbortException.java,
9372         java/awt/print/PrinterException.java,
9373         java/awt/print/PrinterGraphics.java,
9374         java/awt/print/PrinterIOException.java, java/awt/print/PrinterJob.java,
9375         java/awt/Robot.java, java/awt/ScrollPaneAdjustable.java,
9376         java/awt/Stroke.java, java/awt/TexturePaint.java,
9377         javax/accessibility/AccessibleAction.java,
9378         javax/accessibility/AccessibleBundle.java,
9379         javax/accessibility/AccessibleComponent.java,
9380         javax/accessibility/AccessibleContext.java,
9381         javax/accessibility/AccessibleEditableText.java,
9382         javax/accessibility/AccessibleExtendedComponent.java,
9383         javax/accessibility/AccessibleExtendedTable.java,
9384         javax/accessibility/AccessibleHyperlink.java,
9385         javax/accessibility/AccessibleHypertext.java,
9386         javax/accessibility/AccessibleIcon.java,
9387         javax/accessibility/Accessible.java,
9388         javax/accessibility/AccessibleKeyBinding.java,
9389         javax/accessibility/AccessibleRelation.java,
9390         javax/accessibility/AccessibleRelationSet.java,
9391         javax/accessibility/AccessibleResourceBundle.java,
9392         javax/accessibility/AccessibleRole.java,
9393         javax/accessibility/AccessibleSelection.java,
9394         javax/accessibility/AccessibleState.java,
9395         javax/accessibility/AccessibleStateSet.java,
9396         javax/accessibility/AccessibleTable.java,
9397         javax/accessibility/AccessibleTableModelChange.java,
9398         javax/accessibility/AccessibleText.java,
9399         javax/accessibility/AccessibleValue.java,
9400         javax/swing/AbstractAction.java,
9401         javax/swing/AbstractButton.java,
9402         javax/swing/AbstractCellEditor.java,
9403         javax/swing/AbstractListModel.java,
9404         javax/swing/AbstractSet.java, javax/swing/Action.java,
9405         javax/swing/ActionMap.java, javax/swing/border/AbstractBorder.java,
9406         javax/swing/border/BevelBorder.java, javax/swing/border/Border.java,
9407         javax/swing/border/CompoundBorder.java,
9408         javax/swing/border/EmptyBorder.java,
9409         javax/swing/border/EtchedBorder.java, javax/swing/BorderFactory.java,
9410         javax/swing/border/LineBorder.java,
9411         javax/swing/border/MatteBorder.java,
9412         javax/swing/border/TitledBorder.java,
9413         javax/swing/BoundedRangeModel.java, javax/swing/Box.java,
9414         javax/swing/BoxLayout.java, javax/swing/ButtonGroup.java,
9415         javax/swing/ButtonModel.java, javax/swing/CellEditor.java,
9416         javax/swing/CellRendererPane.java,
9417         javax/swing/colorchooser/AbstractColorChooserPanel.java,
9418         javax/swing/colorchooser/ColorChooserComponentFactory.java,
9419         javax/swing/colorchooser/ColorSelectionModel.java,
9420         javax/swing/colorchooser/DefaultColorSelectionModel.java,
9421         javax/swing/ComboBoxEditor.java, javax/swing/ComboBoxModel.java,
9422         javax/swing/ComponentInputMap.java, javax/swing/DebugGraphics.java,
9423         javax/swing/DefaultBoundedRangeModel.java,
9424         javax/swing/DefaultButtonModel.java,
9425         javax/swing/DefaultCellEditor.java,
9426         javax/swing/DefaultCellRenderer.java,
9427         javax/swing/DefaultComboBoxModel.java,
9428         javax/swing/DefaultDesktopManager.java,
9429         javax/swing/DefaultFocusManager.java,
9430         javax/swing/DefaultListCellRenderer.java,
9431         javax/swing/DefaultListModel.java,
9432         javax/swing/DefaultListSelectionModel.java,
9433         javax/swing/DefaultSingleSelectionModel.java,
9434         javax/swing/DesktopManager.java,
9435         javax/swing/event/AncestorEvent.java,
9436         javax/swing/event/AncestorListener.java,
9437         javax/swing/event/CaretEvent.java,
9438         javax/swing/event/CaretListener.java,
9439         javax/swing/event/CellEditorListener.java,
9440         javax/swing/event/ChangeEvent.java,
9441         javax/swing/event/ChangeListener.java,
9442         javax/swing/event/DocumentEvent.java,
9443         javax/swing/event/DocumentListener.java,
9444         javax/swing/event/EventListenerList.java,
9445         javax/swing/event/HyperlinkEvent.java,
9446         javax/swing/event/HyperlinkListener.java,
9447         javax/swing/event/InternalFrameAdapter.java,
9448         javax/swing/event/InternalFrameEvent.java,
9449         javax/swing/event/InternalFrameListener.java,
9450         javax/swing/event/ListDataEvent.java,
9451         javax/swing/event/ListDataListener.java,
9452         javax/swing/event/ListSelectionEvent.java,
9453         javax/swing/event/ListSelectionListener.java,
9454         javax/swing/event/MenuDragMouseEvent.java,
9455         javax/swing/event/MenuDragMouseListener.java,
9456         javax/swing/event/MenuEvent.java,
9457         javax/swing/event/MenuKeyEvent.java,
9458         javax/swing/event/MenuKeyListener.java,
9459         javax/swing/event/MenuListener.java,
9460         javax/swing/event/MouseInputAdapter.java,
9461         javax/swing/event/MouseInputListener.java,
9462         javax/swing/event/PopupMenuEvent.java,
9463         javax/swing/event/PopupMenuListener.java,
9464         javax/swing/event/SwingPropertyChangeSupport.java,
9465         javax/swing/event/TableColumnModelEvent.java,
9466         javax/swing/event/TableColumnModelListener.java,
9467         javax/swing/event/TableModelEvent.java,
9468         javax/swing/event/TableModelListener.java,
9469         javax/swing/event/TreeExpansionEvent.java,
9470         javax/swing/event/TreeExpansionListener.java,
9471         javax/swing/event/TreeModelEvent.java,
9472         javax/swing/event/TreeModelListener.java,
9473         javax/swing/event/TreeSelectionEvent.java,
9474         javax/swing/event/TreeSelectionListener.java,
9475         javax/swing/event/TreeWillExpandListener.java,
9476         javax/swing/event/UndoableEditEvent.java,
9477         javax/swing/event/UndoableEditListener.java,
9478         javax/swing/filechooser/FileFilter.java,
9479         javax/swing/filechooser/FileSystemView.java,
9480         javax/swing/filechooser/FileView.java,
9481         javax/swing/FocusManager.java, javax/swing/GrayFilter.java,
9482         javax/swing/Icon.java, javax/swing/ImageIcon.java,
9483         javax/swing/InputMap.java, javax/swing/InputVerifier.java,
9484         javax/swing/JApplet.java, javax/swing/JButton.java,
9485         javax/swing/JCheckBox.java, javax/swing/JCheckBoxMenuItem.java,
9486         javax/swing/JColorChooser.java, javax/swing/JComboBox.java,
9487         javax/swing/JComponent.java, javax/swing/JDesktopPane.java,
9488         javax/swing/JDialog.java, javax/swing/JEditorPane.java,
9489         javax/swing/JFileChooser.java, javax/swing/JFrame.java,
9490         javax/swing/JInternalFrame.java, javax/swing/JLabel.java,
9491         javax/swing/JLayeredPane.java, javax/swing/JList.java,
9492         javax/swing/JMenuBar.java, javax/swing/JMenuItem.java,
9493         javax/swing/JMenu.java, javax/swing/JOptionPane.java,
9494         javax/swing/JPanel.java, javax/swing/JPasswordField.java,
9495         javax/swing/JPopupMenu.java, javax/swing/JProgressBar.java,
9496         javax/swing/JRadioButton.java, javax/swing/JRadioButtonMenuItem.java,
9497         javax/swing/JRootPane.java, javax/swing/JScrollBar.java,
9498         javax/swing/JScrollPane.java, javax/swing/JSeparator.java,
9499         javax/swing/JSlider.java, javax/swing/JSplitPane.java,
9500         javax/swing/JTabbedPane.java, javax/swing/JTable.java,
9501         javax/swing/JTextField.java, javax/swing/JTextPane.java,
9502         javax/swing/JToggleButton.java, javax/swing/JToolBar.java,
9503         javax/swing/JToolTip.java, javax/swing/JTree.java,
9504         javax/swing/JViewport.java, javax/swing/JWindow.java,
9505         javax/swing/KeyStroke.java, javax/swing/ListCellRenderer.java,
9506         javax/swing/ListModel.java, javax/swing/ListSelectionModel.java,
9507         javax/swing/LookAndFeel.java, javax/swing/MenuElement.java,
9508         javax/swing/MenuSelectionManager.java,
9509         javax/swing/MutableComboBoxModel.java,
9510         javax/swing/OverlayLayout.java,
9511         javax/swing/plaf/ActionMapUIResource.java,
9512         javax/swing/plaf/basic/BasicBorders.java,
9513         javax/swing/plaf/basic/BasicButtonUI.java,
9514         javax/swing/plaf/basic/BasicCheckBoxUI.java,
9515         javax/swing/plaf/basic/BasicDefaults.java,
9516         javax/swing/plaf/basic/BasicGraphicsUtils.java,
9517         javax/swing/plaf/basic/BasicIconFactory.java,
9518         javax/swing/plaf/basic/BasicLabelUI.java,
9519         javax/swing/plaf/basic/BasicListUI.java,
9520         javax/swing/plaf/basic/BasicLookAndFeel.java,
9521         javax/swing/plaf/basic/BasicOptionPaneUI.java,
9522         javax/swing/plaf/basic/BasicPanelUI.java,
9523         javax/swing/plaf/basic/BasicRadioButtonUI.java,
9524         javax/swing/plaf/basic/BasicScrollPaneUI.java,
9525         javax/swing/plaf/basic/BasicTabbedPaneUI.java,
9526         javax/swing/plaf/basic/BasicTextUI.java,
9527         javax/swing/plaf/basic/BasicToggleButtonUI.java,
9528         javax/swing/plaf/basic/BasicTreeUI.java,
9529         javax/swing/plaf/basic/BasicViewportUI.java,
9530         javax/swing/plaf/BorderUIResource.java,
9531         javax/swing/plaf/ButtonUI.java,
9532         javax/swing/plaf/ColorChooserUI.java,
9533         javax/swing/plaf/ColorUIResource.java,
9534         javax/swing/plaf/ComboBoxUI.java,
9535         javax/swing/plaf/ComponentInputMapUIResource.java,
9536         javax/swing/plaf/ComponentUI.java,
9537         javax/swing/plaf/DesktopIconUI.java,
9538         javax/swing/plaf/DesktopPaneUI.java,
9539         javax/swing/plaf/DimensionUIResource.java,
9540         javax/swing/plaf/FileChooserUI.java,
9541         javax/swing/plaf/FontUIResource.java,
9542         javax/swing/plaf/IconUIResource.java,
9543         javax/swing/plaf/InputMapUIResource.java,
9544         javax/swing/plaf/InsetsUIResource.java,
9545         javax/swing/plaf/InternalFrameUI.java,
9546         javax/swing/plaf/LabelUI.java,
9547         javax/swing/plaf/ListUI.java,
9548         javax/swing/plaf/MenuBarUI.java,
9549         javax/swing/plaf/MenuItemUI.java,
9550         javax/swing/plaf/OptionPaneUI.java,
9551         javax/swing/plaf/PanelUI.java,
9552         javax/swing/plaf/PopupMenuUI.java,
9553         javax/swing/plaf/ProgressBarUI.java,
9554         javax/swing/plaf/RootPaneUI.java,
9555         javax/swing/plaf/ScrollBarUI.java,
9556         javax/swing/plaf/ScrollPaneUI.java,
9557         javax/swing/plaf/SeparatorUI.java,
9558         javax/swing/plaf/SliderUI.java,
9559         javax/swing/plaf/SplitPaneUI.java,
9560         javax/swing/plaf/TabbedPaneUI.java,
9561         javax/swing/plaf/TableHeaderUI.java,
9562         javax/swing/plaf/TableUI.java,
9563         javax/swing/plaf/TextUI.java,
9564         javax/swing/plaf/ToolBarUI.java,
9565         javax/swing/plaf/ToolTipUI.java,
9566         javax/swing/plaf/TreeUI.java,
9567         javax/swing/plaf/UIResource.java,
9568         javax/swing/plaf/ViewportUI.java,
9569         javax/swing/ProgressMonitorInputStream.java,
9570         javax/swing/ProgressMonitor.java,
9571         javax/swing/Renderer.java,
9572         javax/swing/RepaintManager.java,
9573         javax/swing/RootPaneContainer.java,
9574         javax/swing/Scrollable.java,
9575         javax/swing/ScrollPaneConstants.java,
9576         javax/swing/ScrollPaneLayout.java,
9577         javax/swing/SingleSelectionModel.java,
9578         javax/swing/SizeRequirements.java,
9579         javax/swing/SizeSequence.java,
9580         javax/swing/SwingConstants.java,
9581         javax/swing/SwingUtilities.java,
9582         javax/swing/table/AbstractTableModel.java,
9583         javax/swing/table/DefaultTableCellRenderer.java,
9584         javax/swing/table/DefaultTableColumnModel.java,
9585         javax/swing/table/DefaultTableModel.java,
9586         javax/swing/table/TableCellEditor.java,
9587         javax/swing/table/TableCellRenderer.java,
9588         javax/swing/table/TableColumn.java,
9589         javax/swing/table/TableColumnModel.java,
9590         javax/swing/table/TableModel.java,
9591         javax/swing/text/AbstractDocument.java,
9592         javax/swing/text/AttributeSet.java,
9593         javax/swing/text/BadLocationException.java,
9594         javax/swing/text/Caret.java,
9595         javax/swing/text/CharacterIterator.java,
9596         javax/swing/text/ComponentView.java,
9597         javax/swing/text/DefaultCaret.java,
9598         javax/swing/text/DefaultEditorKit.java,
9599         javax/swing/text/Document.java,
9600         javax/swing/text/EditorKit.java,
9601         javax/swing/text/Element.java,
9602         javax/swing/text/GapContent.java,
9603         javax/swing/text/JTextComponent.java,
9604         javax/swing/text/Keymap.java,
9605         javax/swing/text/MutableAttributeSet.java,
9606         javax/swing/text/PlainDocument.java,
9607         javax/swing/text/PlainEditorKit.java,
9608         javax/swing/text/Position.java,
9609         javax/swing/text/Segment.java,
9610         javax/swing/text/StyledDocument.java,
9611         javax/swing/text/StyledEditorKit.java,
9612         javax/swing/text/Style.java,
9613         javax/swing/text/TextAction.java,
9614         javax/swing/text/ViewFactory.java,
9615         javax/swing/text/View.java,
9616         javax/swing/Timer.java,
9617         javax/swing/ToggleButtonModel.java,
9618         javax/swing/ToolTipManager.java,
9619         javax/swing/tree/AbstractLayoutCache.java,
9620         javax/swing/tree/DefaultMutableTreeNode.java,
9621         javax/swing/tree/DefaultTreeCellEditor.java,
9622         javax/swing/tree/DefaultTreeCellRenderer.java,
9623         javax/swing/tree/DefaultTreeModel.java,
9624         javax/swing/tree/DefaultTreeSelectionModel.java,
9625         javax/swing/tree/ExpandVetoException.java,
9626         javax/swing/tree/FixedHeightLayoutCache.java,
9627         javax/swing/tree/MutableTreeNode.java,
9628         javax/swing/tree/RowMapper.java,
9629         javax/swing/tree/TreeCellEditor.java,
9630         javax/swing/tree/TreeCellRenderer.java,
9631         javax/swing/tree/TreeModel.java,
9632         javax/swing/tree/TreeNode.java,
9633         javax/swing/tree/TreePath.java,
9634         javax/swing/tree/TreeSelectionModel.java,
9635         javax/swing/tree/VariableHeightLayoutCache.java,
9636         javax/swing/UIDefaults.java,
9637         javax/swing/UIManager.java,
9638         javax/swing/undo/AbstractUndoableEdit.java,
9639         javax/swing/undo/CannotRedoException.java,
9640         javax/swing/undo/CannotUndoException.java,
9641         javax/swing/undo/CompoundEdit.java,
9642         javax/swing/undo/StateEditable.java,
9643         javax/swing/undo/StateEdit.java,
9644         javax/swing/undo/UndoableEdit.java,
9645         javax/swing/undo/UndoableEditSupport.java,
9646         javax/swing/undo/UndoManager.java,
9647         javax/swing/UnsupportedLookAndFeelException.java,
9648         javax/swing/ViewportLayout.java,
9649         javax/swing/WindowConstants.java: New files, from GNU Classpath.
9651         * java/awt/ActiveEvent.java,
9652         java/awt/Adjustable.java, java/awt/AWTError.java,
9653         java/awt/AWTEvent.java, java/awt/AWTEventMulticaster.java,
9654         java/awt/AWTException.java, java/awt/AWTPermission.java,
9655         java/awt/BorderLayout.java, java/awt/Button.java, java/awt/Choice.java,
9656         java/awt/Color.java, java/awt/Component.java,
9657         java/awt/ComponentOrientation.java, java/awt/Container.java,
9658         java/awt/datatransfer/MimeTypeParseException.java,
9659         java/awt/datatransfer/Transferable.java,
9660         java/awt/datatransfer/UnsupportedFlavorException.java,
9661         java/awt/Dimension.java, java/awt/event/ActionEvent.java,
9662         java/awt/event/ActionListener.java,
9663         java/awt/event/AdjustmentEvent.java,
9664         java/awt/event/AdjustmentListener.java,
9665         java/awt/event/AWTEventListener.java,
9666         java/awt/event/ComponentAdapter.java,
9667         java/awt/event/ComponentEvent.java,
9668         java/awt/event/ComponentListener.java,
9669         java/awt/event/ContainerAdapter.java,
9670         java/awt/event/ContainerEvent.java,
9671         java/awt/event/ContainerListener.java,
9672         java/awt/event/FocusAdapter.java,
9673         java/awt/event/FocusEvent.java, java/awt/event/FocusListener.java,
9674         java/awt/event/HierarchyBoundsAdapter.java,
9675         java/awt/event/HierarchyBoundsListener.java,
9676         java/awt/event/HierarchyEvent.java,
9677         java/awt/event/HierarchyListener.java,
9678         java/awt/event/InputEvent.java, java/awt/event/InputMethodEvent.java,
9679         java/awt/event/InputMethodListener.java,
9680         java/awt/event/InvocationEvent.java, java/awt/event/ItemEvent.java,
9681         java/awt/event/ItemListener.java, java/awt/event/KeyAdapter.java,
9682         java/awt/event/KeyEvent.java, java/awt/event/KeyListener.java,
9683         java/awt/event/MouseAdapter.java, java/awt/event/MouseEvent.java,
9684         java/awt/event/MouseListener.java,
9685         java/awt/event/MouseMotionAdapter.java,
9686         java/awt/event/MouseMotionListener.java,
9687         java/awt/event/PaintEvent.java, java/awt/EventQueue.java,
9688         java/awt/event/TextEvent.java, java/awt/event/TextListener.java,
9689         java/awt/event/WindowAdapter.java, java/awt/event/WindowEvent.java,
9690         java/awt/event/WindowListener.java, java/awt/Font.java,
9691         java/awt/geom/AffineTransform.java, java/awt/geom/Dimension2D.java,
9692         java/awt/geom/Ellipse2D.java,
9693         java/awt/geom/IllegalPathStateException.java,
9694         java/awt/geom/Line2D.java,
9695         java/awt/geom/NoninvertibleTransformException.java,
9696         java/awt/geom/PathIterator.java, java/awt/geom/Point2D.java,
9697         java/awt/geom/Rectangle2D.java, java/awt/geom/RectangularShape.java,
9698         java/awt/geom/RoundRectangle2D.java,
9699         java/awt/GraphicsConfiguration.java,
9700         java/awt/IllegalComponentStateException.java,
9701         java/awt/image/IndexColorModel.java,
9702         java/awt/Image.java, java/awt/image/MemoryImageSource.java,
9703         java/awt/image/PixelGrabber.java, java/awt/Insets.java,
9704         java/awt/ItemSelectable.java, java/awt/LayoutManager2.java,
9705         java/awt/LayoutManager.java, java/awt/MenuContainer.java,
9706         java/awt/MenuItem.java, java/awt/PaintContext.java,
9707         java/awt/Paint.java, java/awt/Panel.java, java/awt/Point.java,
9708         java/awt/Polygon.java, java/awt/PrintGraphics.java,
9709         java/awt/PrintJob.java, java/awt/Rectangle.java,
9710         java/awt/RenderingHints.java, java/awt/ScrollPane.java,
9711         java/awt/Shape.java, java/awt/SystemColor.java, java/awt/Toolkit.java,
9712         java/awt/Transparency.java, java/awt/Window.java: Merge from classpath.
9714         * java/awt/im/spi/InputMethod.java,
9715         java/awt/im/spi/InputMethodContext.java,
9716         java/awt/im/spi/InputMethodDescriptor.java,
9717         java/awt/image/renderable/ContextualRenderedImageFactory.java,
9718         java/awt/image/renderable/ParameterBlock.java,
9719         java/awt/image/renderable/RenderContext.java,
9720         java/awt/image/renderable/RenderableImage.java,
9721         java/awt/image/renderable/RenderableImageOp.java,
9722         java/awt/image/renderable/RenderableImageProducer.java,
9723         java/awt/image/renderable/RenderedImageFactory.java: New files from
9724         classpath.
9726         * gnu/java/awt/EventModifier.java,
9727         gnu/java/awt/image/ImageDecoder.java,
9728         gnu/java/awt/image/XBMDecoder.java: New files from GNU Classpath.
9730         * gnu/awt/xlib/XGraphicsConfiguration.java,
9731         gnu/awt/xlib/XToolkit.java: Updated to compile against 1.4 abstract
9732         API.
9734         * javax/swing/plaf/metal/MetalLookAndFeel.java: New file from
9735         GNU Classpath.
9737         * Makefile.am: Add new files.
9738         * Makefile.in: Rebuilt.
9740 2002-08-07  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
9742         * java/lang/ClassLoader.java (getSystemClassLoader, findClass,
9743         defineClass, setSigners, getSystemResource, getSystemResourceAsStream,
9744         findResource, getResources, findResources): Add javadoc from classpath.
9745         (getSystemResources): Implemented.
9747 2002-08-01  Mark Wielaard  <mark@klomp.org>
9749         Revert patch that breaks libgcj shared library on powerpc:
9750         * gnu/java/security/provider/Gnu.java: Reverse referencing all
9751         implementation classes by using Class.getName(). Uses Strings again.
9752         * gnu/java/security/der/DEREncodingException.java,
9753         gnu/java/security/provider/DERReader.java,
9754         gnu/java/security/provider/DERWriter.java,
9755         gnu/java/security/provider/DSAKeyPairGenerator.java,
9756         gnu/java/security/provider/DSAParameterGenerator.java,
9757         gnu/java/security/provider/DSAParameters.java,
9758         gnu/java/security/provider/DSASignature.java,
9759         gnu/java/security/provider/GnuDSAPrivateKey.java,
9760         gnu/java/security/provider/GnuDSAPublicKey.java,
9761         gnu/java/security/provider/MD5.java,
9762         gnu/java/security/util/Prime.java: Removed.
9763         * Makefile.am (ordinary_java_source_files): Remove above files.
9764         * Makefile.in: Regenerate.
9765         * gnu/java/security/provider/DefaultPolicy.java
9766         (getPermissions): Revert to maintaining static class variable of
9767         Permissions.
9768         * gnu/java/security/provider/SHA.java
9769         (engineUpdate): Revert algorithm change.
9770         (engineDigest): Revert algorithm change.
9772 2002-08-01  Kaz Kojima  <kkojima@gcc.gnu.org>
9774         * configure.host: Add SH support.
9775         * sysdep/sh/locks.h: New file.
9777 2002-07-31  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
9779         * java/awt/Frame.java (Frame): Remove println calls.
9781 2002-07-30  Jeff Sturm  <jsturm@one-point.com>
9783         * configure.in (LIBFFIINCS): Don't prepend MULTIBUILDTOP.
9784         * configure: Rebuilt.
9786 2002-07-27  Alan Modra  <amodra@bigpond.net.au>
9788         * sysdep/powerpc/locks.h: Formatting.
9789         (_LARX): Define.
9790         (_STCX): Define.
9791         (compare_and_swap): Use _LARX and _STCX.
9792         (compare_and_swap_release): Likewise.
9794 2002-07-26  Tom Tromey  <tromey@redhat.com>
9796         * java/net/Authenticator.java: New version from Classpath.
9797         * java/net/DatagramSocketImpl.java: New version from Classpath.
9799 2002-07-27  Alan Modra  <amodra@bigpond.net.au>
9801         * configure.host: Add powerpc64*-* entry.
9803 2002-07-26  Tom Tromey  <tromey@redhat.com>
9805         * java/io/natFileDescriptorPosix.cc: Don't include sys/socket.h or
9806         fcntl.h.
9808 2002-07-24  Tom Tromey  <tromey@redhat.com>
9810         * java/lang/Runtime.java (loadLibrary): Pass `true' as search
9811         argument to _load.
9813 2002-07-24  Tom Tromey  <tromey@redhat.com>
9814             Tony Kimball <alk@pobox.com>
9816         * java/io/natFileDescriptorWin32.cc (setLength): New method.
9817         * java/io/natFileDescriptorPosix.cc (setLength): New method.
9818         * java/io/RandomAccessFile.java (setLength): New method.
9819         * java/io/natFileDescriptorEcos.cc (setLength): New method.
9820         * java/io/FileDescriptor.java (setLength): New method.
9822 2002-07-24  Mark Wielaard  <mark@klomp.org>
9824         * java/lang/reflect/natField.cc (setAddr): Check isAccessible().
9825         * java/io/ObjectInputStream.java (setBooleanField): Before setting
9826         field call setAccessible(true).
9827         (setByteField): Likewise.
9828         (setCharField): Likewise.
9829         (setDoubleField): Likewise.
9830         (setFloatField): Likewise.
9831         (setIntField): Likewise.
9832         (setLongField): Likewise.
9833         (setShortField): Likewise.
9834         (setObjectField): Likewise.
9836 2002-07-24  Tom Tromey  <tromey@redhat.com>
9838         * java/io/ObjectInputStream.java (readObject) [TC_ARRAY]: Don't
9839         use toString() to format array element.
9841 2002-07-23  Mark Wielaard  <mark@klomp.org>
9843         * gnu/java/security/provider/MD5.java: Extends MessageDigest, not
9844         MessageDigestSpi (fixes Classpath bug #783).
9846 2002-07-21  Mark Wielaard  <mark@klomp.org>
9848         * gnu/java/security/provider/Gnu.java: Reference all implementation
9849         classes by using Class.getName().
9851 2002-07-19  Bo Thorsen  <bo@berlioz.suse.de>
9853         * java/lang/ieeefp.h: Add x86-64 support.
9854         * configure.in: Likewise.
9855         * configure.host: Likewise.
9856         * configure: Regenerated.
9857         * sysdep/x86-64/locks.h: New file with x86-64 locks.
9859 2002-07-16  Mark Wielaard  <mark@klomp.org>
9861         * java/io/StreamTokenizer.java (pushBack): Update documentation.
9862         (whitespaceChars): call resetChar().
9864 2002-07-15  Tom Tromey  <tromey@redhat.com>
9866         * Makefile.in: Rebuilt.
9867         * Makefile.am (awt_java_source_files): Added new files.
9868         * java/beans/ExceptionListener.java: Merged with Classpath.
9869         * java/beans/PropertyChangeEvent.java: Merged with Classpath.
9870         * java/beans/PropertyChangeListener.java: Merged with Classpath.
9871         * java/beans/PropertyChangeListenerProxy.java: Merged with Classpath.
9872         * java/beans/PropertyChangeSupport.java: Merged with Classpath.
9873         * java/beans/VetoableChangeListener.java: Merged with Classpath.
9874         * java/beans/VetoableChangeListenerProxy.java: Merged with Classpath.
9875         * java/beans/VetoableChangeSupport.java: Merged with Classpath.
9877 2002-07-14  Mark Wielaard  <mark@klomp.org>
9879         * gnu/java/security/der/DEREncodingException.java,
9880         gnu/java/security/provider/DERReader.java,
9881         gnu/java/security/provider/DERWriter.java,
9882         gnu/java/security/provider/DSAKeyPairGenerator.java,
9883         gnu/java/security/provider/DSAParameterGenerator.java,
9884         gnu/java/security/provider/DSAParameters.java,
9885         gnu/java/security/provider/DSASignature.java,
9886         gnu/java/security/provider/GnuDSAPrivateKey.java,
9887         gnu/java/security/provider/GnuDSAPublicKey.java,
9888         gnu/java/security/provider/MD5.java,
9889         gnu/java/security/util/Prime.java: New files from Classpath.
9890         * Makefile.am (ordinary_java_source_files): Add new files.
9891         * Makefile.in: Regenerate.
9893 2002-07-14  C. Brian Jones <cbj@gnu.org>
9895         * gnu/java/security/provider/DefaultPolicy.java
9896         (getPermissions): do not maintain static class variable of
9897         Permissions
9898         * gnu/java/security/provider/SHA.java
9899         (engineUpdate): algorithm change
9900         (engineDigest): algorithm change
9902 2002-07-12  Jesse Rosenstock  <jmr@fulcrummicro.com>
9904         For PR libgcj/7292:
9905         * java/lang/Character.java (toString(char)): Now static.
9907 2002-07-12  Mark Wielaard  <mark@klomp.org>
9909         * java/lang/natThrowable.cc (printRawStackTrace): removed.
9910         (getStackTrace0): new method.
9911         * java/lang/Throwable.java (CPlusPlusDemangler): removed.
9912         (printStackTrace(PrintWriter)): replace with pure java implementation.
9913         (printRawStackTrace): removed.
9914         (getStackTrace0): new method.
9915         * java/lang/StackTraceElement.java (toString): add extra whitespace.
9916         * gcj/javaprims.h: regenerate class list.
9917         * include/name-finder.h (lookup): new returns StackTraceElement*.
9918         (method_name, file_name): fields removed.
9919         (pid2, f2_pipe, b2_pipe, b2_pipe_fd): new fields.
9920         (~_Jv_name_finder): close new descriptors.
9921         * name-finder.cc(_Jv_name_finder): setup c++filt helper process.
9922         (createStackTraceElement): new method.
9923         (lookup): returns StackTraceElement*, uses createStackTraceElement().
9925 2002-07-10  Tom Tromey  <tromey@redhat.com>
9927         * configure: Rebuilt.
9928         * configure.in: Use `test' after `&&'.  From Chris Faylor.
9930 2002-07-08  Mark Wielaard  <mark@klomp.org>
9932         * mauve-libgcj: Don't compile java.sql.Blob.BlobTest,
9933         java.sql.Clob.ClobTest, java.sql.Connection.TestJdbc20,
9934         java.sql.DatabaseMetaData.TestJdbc20
9936 2002-07-05  Tony Kimball  <alk@pobox.com>
9938         * java/lang/natRuntime.cc (nativeGetLibname): Added missing `#'.
9940 2002-07-04  Tom Tromey  <tromey@redhat.com>
9941             Jeff Sturm  <jsturm@one-point.com>
9943         Fix for PR libgcj/7060:
9944         * java/lang/Class.h (_getMethod): Renamed from getMethod.
9945         * java/lang/natClass.cc (_getMethod): Renamed from getMethod.
9946         Recurse into superinterfaces.  Don't throw NoSuchMethodException.
9947         * java/lang/Class.java (getMethod): New Java implementation;
9948         complies with spec.
9949         (_getMethod): New native method.
9951 2002-07-02  Tom Tromey  <tromey@redhat.com>
9952             David Hovemeyer  <daveho@cs.umd.edu>
9954         * java/text/ChoiceFormat.java
9955         (format(double,StringBuffer,FieldPosition)): Fix fencepost error
9956         in check loop.
9957         * java/text/MessageFormat.java
9958         (format(Object[],StringBuffer,FieldPosition): Pass all arguments
9959         to MessageFormat.
9961 2002-07-01  Tom Tromey  <tromey@redhat.com>
9963         * javax/naming/spi/NamingManager.java (getPlusPath): Don't create
9964         StringTokenizer on null string.  For PR libgcj/7180.
9965         From daveho@cs.umd.edu.
9967 2002-06-24  Tom Tromey  <tromey@redhat.com>
9969         * java/net/natPlainDatagramSocketImpl.cc (BooleanClass): Removed.
9970         (IntegerClass): Likewise.
9971         * java/lang/natClass.cc (CloneableClass): Removed.
9972         (ObjectClass, ErrorClass, ClassClass, MethodClass, FieldClass,
9973         ConstructorClass): Likewise.
9974         * java/lang/natClassLoader.cc (CloneableClass): Removed.
9975         (ObjectClass, ClassClass, VMClassLoaderClass, ClassLoaderClass,
9976         SerializableClass): Likewise.
9977         * java/lang/reflect/natMethod.cc (BooleanClass): Removed.
9978         (VoidClass, ByteClass, ShortClass, CharacterClass, IntegerClass,
9979         LongClass, FloatClass, DoubleClass): Likewise.
9981         * verify.cc (branch_prepass): Updated for change to exception
9982         handler type.
9983         (verify_instructions_0): Likewise.
9984         * defineclass.cc (handleCodeAttribute): Initialize `prepared'.
9985         (handleExceptionTableEntry): Updated for change to exception
9986         handler type.
9987         * java/lang/Class.h (Class): Removed _Jv_InterpMethodInvocation.
9988         * include/java-interp.h (_Jv_InterpMethodInvocation): Removed.
9989         (union _Jv_InterpPC): New.
9990         (class _Jv_InterpException): Changed types to _Jv_InterpPC.
9991         (class _Jv_InterpMethod): Added new `prepared' field.
9992         (class _Jv_InterpMethod): Added `compile' method.  Removed
9993         `continue1' and `find_exception'.  Changed arguments to `run'.
9994         * interpret.cc (union insn_slot): New.
9995         (find_exception): Removed.
9996         (run_normal): Removed most logic.
9997         (run_synch_object): Likewise; also, use JvSynchronize.
9998         (run_synch_class): Likewise.
9999         (run): Removed.
10000         (continue1): Renamed as `run'.  Compile bytecode if required.
10001         Add new code to allow refinement of direct-threaded code at
10002         runtime.  Handle exceptions.
10003         (SAVE_PC): Removed.
10004         (compile): New method.
10005         (SET_ONE, SET_INSN, SET_INT, SET_DATUM): New defines.
10006         (NULLARRAYCHECK): Don't use SAVE_PC.
10007         (pc_t): New typedef.
10008         (TAKE_GOTO, GET1S, GET1U, GET2U, AVAL1U, AVAL2U, AVAL2UP,
10009         SKIP_GOTO, GOTO_VAL, PCVAL, AMPAMP): New macros.
10011 2002-06-23  Tom Tromey  <tromey@redhat.com>
10013         * configure: Rebuilt.
10014         * configure.in (INTERPRETER): New subst.
10015         (AM_RUNTESTFLAGS): Don't subst.
10017         * Makefile.in: Rebuilt.
10018         * Makefile.am ($(srcdir)/java/lang/Object.h,
10019         $(srcdir)/java/lang/Class.h): Added dummy targets.
10021 2002-06-21  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10023         Reformat JDBC classes and add new JDK 1.4 classes and methods.
10025         * java/sql/ParameterMetaData.java, java/sql/SQLPermission.java,
10026         java/sql/Savepoint.java: New files.
10027         * java/sql/Array.java, java/sql/BatchUpdateException.java,
10028         java/sql/Blob.java, java/sql/CallableStatement.java,
10029         java/sql/Clob.java, java/sql/Connection.java,
10030         java/sql/DataTruncation.java, java/sql/DatabaseMetaData.java,
10031         java/sql/Date.java, java/sql/Driver.java, java/sql/DriverManager.java,
10032         java/sql/DriverPropertyInfo.java, java/sql/PreparedStatement.java,
10033         java/sql/Ref.java, java/sql/ResultSet.java,
10034         java/sql/ResultSetMetaData.java, java/sql/SQLData.java
10035         java/sql/SQLException.java, java/sql/SQLInput.java,
10036         java/sql/SQLOutput.java, java/sql/SQLWarning.java
10037         java/sql/Statement.java, java/sql/Struct.java, java/sql/Time.java,
10038         java/sql/Timestamp.java, java/sql/Types.java: Updated to JDBC 3.0
10039         (JDK 1.4) specification.
10040         * javax/sql/ConnectionEvent.java,
10041         javax/sql/ConnectionEventListener.java,
10042         javax/sql/ConnectionPoolDataSource.java,
10043         javax/sql/DataSource.java, javax/sql/PooledConnection.java,
10044         javax/sql/RowSetEvent.java, javax/sql/RowSetInternal.java,
10045         javax/sql/RowSet.java, javax/sql/RowSetListener.java,
10046         javax/sql/RowSetMetaData.java, javax/sql/RowSetReader.java,
10047         javax/sql/RowSetWriter.java, javax/sql/XAConnection.java,
10048         javax/sql/XADataSource.java: New files.
10049         * Makefile.am: Add new files.
10050         * Makefile.in: Rebuilt.
10052 2002-06-20  Tom Tromey  <tromey@redhat.com>
10054         For PR libgcj/7073:
10055         * resolve.cc (_Jv_PrepareClass): Only resolve superclass if it
10056         exists.
10057         * defineclass.cc (handleClassBegin): Superclass for interface is
10058         `null'.
10060 2002-06-18  Tom Tromey  <tromey@redhat.com>
10062         * gcj/javaprims.h: Updated class declaration list.
10063         * Makefile.in: Rebuilt.
10064         * Makefile.am (core_java_source_files): Removed
10065         BasicMapEntry.java.
10066         * java/util/BasicMapEntry.java: Removed.
10068 2002-06-18  Jeff Sturm  <jsturm@one-point.com>
10070         * java/net/natPlainDatagramSocketImpl.cc (receive):
10071         Check bounds of argument to FD_SET.
10072         (setOption): Throw exception if socket is closed.
10074         * java/net/natPlainSocketImpl.cc (accept, read):
10075         Check bounds of argument to FD_SET.
10076         (setOption): Throw exception if socket is closed.
10078 2002-06-18  Tom Tromey  <tromey@redhat.com>
10080         * gcj/javaprims.h: Updated class declaration list.
10081         * Makefile.in: Rebuilt.
10082         * Makefile.am (core_java_source_files): Added
10083         PropertyPermissionCollection.java.
10084         * java/lang/Thread.java (group, name): Now package-private.
10085         * java/lang/ThreadGroup.java: Re-merge with Classpath.
10086         * java/util/AbstractList.java: Likewise.
10087         * java/util/AbstractMap.java: Likewise.
10088         * java/util/Calendar.java: Likewise.
10089         * java/util/Collections.java: Likewise.
10090         * java/util/HashMap.java: Likewise.
10091         * java/util/Hashtable.java: Likewise.
10092         * java/util/LinkedHashMap.java: Likewise.
10093         * java/util/LinkedList.java: Likewise.
10094         * java/util/List.java: Likewise.
10095         * java/util/ListResourceBundle.java: Likewise.
10096         * java/util/Map.java: Likewise.
10097         * java/util/Observable.java: Likewise.
10098         * java/util/Properties.java: Likewise.
10099         * java/util/PropertyPermission.java: Likewise.
10100         * java/util/PropertyPermissionCollection.java: Likewise.
10101         * java/util/PropertyResourceBundle.java: Likewise.
10102         * java/util/Random.java: Likewise.
10103         * java/util/SimpleTimeZone.java: Likewise.
10104         * java/util/StringTokenizer.java: Likewise.
10105         * java/util/TimerTask.java: Likewise.
10106         * java/util/TreeMap.java: Likewise.
10107         * java/util/WeakHashMap.java: Likewise.
10108         * java/util/jar/Attributes.java: Likewise.
10109         * java/util/jar/JarException.java: Likewise.
10110         * java/util/jar/Manifest.java: Likewise.
10112 2002-06-17  Tom Tromey  <tromey@redhat.com>
10114         * gcj/javaprims.h: Updated class declaration list.
10115         * Makefile.in: Rebuilt.
10116         * Makefile.am (core_java_source_files): Added new file.
10117         * java/util/EventListenerProxy.java: New file.
10118         * java/util/EventListener.java: Re-merge with Classpath.
10119         * java/util/EventObject.java: Re-merge with Classpath.
10121 2002-06-17  Nathanael Nerode  <neroden@twcny.rr.com>
10123         * java/lang/ClassNotFoundException.java: New Classpath version.
10125 2002-06-17  Nathanael Nerode  <neroden@twcny.rr.com>
10127         * java/rmi/activation/ActivateFailedException.java: Remerge from
10128         Classpath version.
10129         * java/rmi/activation/ActivationException.java: Ditto.
10130         * java/rmi/activation/UnknownGroupException.java: Ditto.
10131         * java/rmi/activation/UnknownObjectException.java: Ditto.
10132         * java/rmi/server/ExportException: Ditto.
10133         * java/rmi/server/ServerCloneException: Ditto.
10134         * java/rmi/server/ServerNotActiveException: Ditto.
10135         * java/rmi/server/SkeletonMismatchException: Ditto.
10136         * java/rmi/server/SkeletonNotFoundException: Ditto.
10137         * java/rmi/server/SocketSecurityException: Ditto.
10139 2002-06-16  Tom Tromey  <tromey@redhat.com>
10141         * gcj/javaprims.h: Updated class declaration list.
10143         * java/io/LineNumberInputStream.java: Merged with Classpath.
10145         * java/lang/RuntimeException.java: Re-merge with Classpath.
10146         * java/util/ArrayList.java: Likewise.
10147         * java/util/Arrays.java: Likewise.
10148         * java/util/BitSet.java: Likewise.
10149         * java/util/Dictionary.java: Likewise.
10150         * java/util/IdentityHashMap.java: Likewise.
10151         * java/util/MissingResourceException.java: Likewise.
10152         * java/util/Observer.java: Likewise.
10153         * java/util/TooManyListenersException.java: Likewise.
10154         * java/util/zip/DataFormatException.java: Likewise.
10155         * java/util/zip/ZipException.java: Likewise.
10157 2002-06-16  Nathanael Nerode  <neroden@twcny.rr.com>
10159         * java/rmi/AccessException.java: Remerge from Classpath.
10160         * java/rmi/AlreadyBoundException.java: Ditto.
10161         * java/rmi/ConnectException.java: Ditto.
10162         * java/rmi/ConnectIOException.java: Ditto.
10163         * java/rmi/MarshalException.java: Ditto.
10164         * java/rmi/NoSuchObjectException.java: Ditto.
10165         * java/rmi/NotBoundException.java: Ditto.
10166         * java/rmi/RemoteException.java: Ditto.
10167         * java/rmi/RMISecurityException.java: Ditto.
10168         * java/rmi/ServerError.java: Ditto.
10169         * java/rmi/ServerException.java: Ditto.
10170         * java/rmi/ServerRuntimeException.java: Ditto.
10171         * java/rmi/StubNotFoundException.java: Ditto.
10172         * java/rmi/UnexpectedExcpetion.java: Ditto.
10173         * java/rmi/UnknownHostException.java: Ditto.
10174         * java/rmi/UnmarshalException.java: Ditto.
10176 2002-06-15  Tom Tromey  <tromey@redhat.com>
10178         * java/lang/AbstractMethodError.java: Re-merged with Classpath.
10179         * java/lang/ArithmeticException.java: Likewise.
10180         * java/lang/ArrayIndexOutOfBoundsException.java: Likewise.
10181         * java/lang/ArrayStoreException.java: Likewise.
10182         * java/lang/Byte.java: Likewise.
10183         * java/lang/CharSequence.java: Likewise.
10184         * java/lang/ClassCastException.java: Likewise.
10185         * java/lang/ClassCircularityError.java: Likewise.
10186         * java/lang/ClassFormatError.java: Likewise.
10187         * java/lang/CloneNotSupportedException.java: Likewise.
10188         * java/lang/Cloneable.java: Likewise.
10189         * java/lang/Comparable.java: Likewise.
10190         * java/lang/Compiler.java: Likewise.
10191         * java/lang/Error.java: Likewise.
10192         * java/lang/ExceptionInInitializerError.java: Likewise.
10193         * java/lang/IllegalAccessError.java: Likewise.
10194         * java/lang/IllegalAccessException.java: Likewise.
10195         * java/lang/IllegalArgumentException.java: Likewise.
10196         * java/lang/IllegalMonitorStateException.java: Likewise.
10197         * java/lang/IllegalStateException.java: Likewise.
10198         * java/lang/IllegalThreadStateException.java: Likewise.
10199         * java/lang/IncompatibleClassChangeError.java: Likewise.
10200         * java/lang/IndexOutOfBoundsException.java: Likewise.
10201         * java/lang/InheritableThreadLocal.java: Likewise.
10202         * java/lang/InstantiationError.java: Likewise.
10203         * java/lang/InstantiationException.java: Likewise.
10204         * java/lang/InternalError.java: Likewise.
10205         * java/lang/InterruptedException.java: Likewise.
10206         * java/lang/LinkageError.java: Likewise.
10207         * java/lang/NegativeArraySizeException.java: Likewise.
10208         * java/lang/NoClassDefFoundError.java: Likewise.
10209         * java/lang/NoSuchFieldError.java: Likewise.
10210         * java/lang/NoSuchFieldException.java: Likewise.
10211         * java/lang/NoSuchMethodError.java: Likewise.
10212         * java/lang/NoSuchMethodException.java: Likewise.
10213         * java/lang/NullPointerException.java: Likewise.
10214         * java/lang/NumberFormatException.java: Likewise.
10215         * java/lang/OutOfMemoryError.java: Likewise.
10216         * java/lang/Process.java: Likewise.
10217         * java/lang/Runnable.java: Likewise.
10218         * java/lang/RuntimePermission.java: Likewise.
10219         * java/lang/SecurityException.java: Likewise.
10220         * java/lang/Short.java: Likewise.
10221         * java/lang/StackOverflowError.java: Likewise.
10222         * java/lang/StringIndexOutOfBoundsException.java: Likewise.
10223         * java/lang/ThreadDeath.java: Likewise.
10224         * java/lang/ThreadLocal.java: Likewise.
10225         * java/lang/UnknownError.java: Likewise.
10226         * java/lang/UnsatisfiedLinkError.java: Likewise.
10227         * java/lang/UnsupportedClassVersionError.java: Likewise.
10228         * java/lang/UnsupportedOperationException.java: Likewise.
10229         * java/lang/VerifyError.java: Likewise.
10230         * java/lang/VirtualMachineError.java: Likewise.
10231         * java/lang/reflect/InvocationTargetException.java: Likewise.
10232         * java/net/BindException.java: Likewise.
10233         * java/net/ConnectException.java: Likewise.
10234         * java/net/MalformedURLException.java: Likewise.
10235         * java/net/NoRouteToHostException.java: Likewise.
10236         * java/net/ProtocolException.java: Likewise.
10237         * java/net/SocketException.java: Likewise.
10238         * java/net/UnknownHostException.java: Likewise.
10239         * java/net/UnknownServiceException.java: Likewise.
10241         * java/io/BufferedOutputStream.java: Re-merged with Classpath.
10242         * java/io/CharConversionException.java: Likewise.
10243         * java/io/EOFException.java: Likewise.
10244         * java/io/FileNotFoundException.java: Likewise.
10245         * java/io/IOException.java: Likewise.
10246         * java/io/InterruptedIOException.java: Likewise.
10247         * java/io/InvalidClassException.java: Likewise.
10248         * java/io/InvalidObjectException.java: Likewise.
10249         * java/io/NotActiveException.java: Likewise.
10250         * java/io/NotSerializableException.java: Likewise.
10251         * java/io/ObjectStreamException.java: Likewise.
10252         * java/io/ObjectStreamConstants.java: Likewise.
10253         * java/io/OptionalDataException.java: Likewise.
10254         * java/io/PipedInputStream.java: Likewise.
10255         * java/io/PushbackInputStream.java: Likewise.
10256         * java/io/StreamCorruptedException.java: Likewise.
10257         * java/io/SyncFailedException.java: Likewise.
10258         * java/io/UTFDataFormatException.java: Likewise.
10259         * java/io/UnsupportedEncodingException.java: Likewise.
10260         * java/io/WriteAbortedException.java: Likewise.
10262 2002-06-15  Nathanael Nerode  <neroden@twcny.rr.com>
10264         * java/text/ChoiceFormat.java: Update comments from Classpath.
10265         * java/text/ParseException.java (serialVersionUID): New
10266         field from Classpath.
10267         * java/text/ParseException.java: Update formatting & comments
10268         from Classpath.
10270 2002-06-15  Tom Tromey  <tromey@redhat.com>
10272         * java/util/zip/InflaterInputStream.java (read): Loop if data has
10273         been read but none output by inflater.
10274         * java/util/zip/natDeflater.cc (reset): Set is_finished.
10275         * java/util/zip/natInflater.cc (reset): Set dist_needed and
10276         is_finished.
10277         * java/util/zip/ZipOutputStream.java: Replaced with Classpath
10278         version.
10279         * java/util/zip/ZipFile.java: Replaced with Classpath version.
10280         * java/util/zip/ZipEntry.java: Replaced with Classpath version.
10281         * java/util/zip/ZipInputStream.java: Replaced with Classpath
10282         version.
10283         * java/util/zip/ZipConstants.java: Replaced with Classpath version.
10285 2002-06-13  Tom Tromey  <tromey@redhat.com>
10287         * java/lang/natString.cc (init): Handle case where DONT_COPY is
10288         true and OFFSET!=0.
10289         * java/lang/String.java (String(char[],int,int,boolean): New
10290         constructor.
10291         * java/lang/Long.java: Imported new version from Classpath.
10292         * java/lang/Number.java: Likewise.
10293         * java/lang/Integer.java: Likewise.
10294         * java/lang/Long.java: Likewise.
10295         * java/lang/Float.java: Likewise.
10296         * java/lang/Boolean.java: Likewise.
10297         * java/lang/Double.java: Likewise.
10298         * java/lang/Void.java: Likewise.
10300 2002-06-12  Tom Tromey  <tromey@redhat.com>
10302         * java/io/natFilePosix.cc (getCanonicalPath): Treat "" like ".".
10303         Fixes PR libgcj/6652.
10305 2002-06-10  Tom Tromey  <tromey@redhat.com>
10307         * java/lang/Class.h (Class::desiredAssertionStatus): Declare.
10308         (Class::getPackagePortion): Likewise.
10309         * java/lang/Class.java (desiredAssertionStatus): New method from
10310         Classpath.
10311         (getPackagePortion): Likewise.
10312         * java/lang/VMClassLoader.java (defaultAssertionStatus,
10313         packageAssertionStatus, classAssertionStatus): New methods from
10314         Classpath.
10315         * java/lang/ClassLoader.java (defaultAssertionStatus,
10316         systemPackageAssertionStatus, packageAssertionStatus,
10317         systemClassAssertionStatus, classAssertionStatus): New fields from
10318         Classpath.
10319         (setDefaultAssertionStatus, setPackageAssertionStatus,
10320         setClassAssertionStatus, clearAssertionStatus): New methods from
10321         Classpath.
10322         * Makefile.in: Rebuilt.
10323         * Makefile.am (core_java_source_files): Added AssertionError.java.
10324         * java/lang/AssertionError.java: New from Classpath.
10326 2002-06-10  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10328         * configure.host: Disable hash synchronization and slow_pthread_self
10329         for cygwin.
10331 2002-06-06  Adam Megacz <adam@xwt.org>
10333         * java/io/natFileDescriptorWin32.cc (open): Disable Win32 file
10334         locking, just like the Sun JVM does.
10336 2002-06-05  H.J. Lu  (hjl@gnu.org)
10338         * Makefile.am (libgcj_convenience.la): Revert the last change.
10339         (libgcj.la): Likewise.
10340         * Makefile.in: Regenerated.
10342 2002-06-04  H.J. Lu  (hjl@gnu.org)
10344         * Makefile.am (libgcj_convenience.la): New target.
10345         (libgcj.la): Depend on libgcj_convenience.la.
10346         * Makefile.in: Regenerated.
10348 2002-06-04  H.J. Lu  (hjl@gnu.org)
10350         * configure.in (--with-newlib): New option:
10351         Check ${with_newlib} instead of ${with_cross_host} for newlib.
10352         (HAVE_PROC_SELF_EXE): Defined to 1 only for cross compiling to
10353         Linux.
10354         * configure: Regenerated.
10356 2002-06-04  Tom Tromey  <tromey@redhat.com>
10358         * java/util/natTimeZone.cc: Include <stdio.h>.
10360 2002-05-29  Ulrich Weigand  <uweigand@de.ibm.com>
10362         * configure.host [s390*-linux*]: Set can_unwind_signal=yes.
10363         * configure.in [s390*-*-linux*]: Do not define HAVE_BACKTRACE.
10364         Set SIGNAL_HANDLER=include/s390-linux.h.
10365         * configure: Regenerate.
10366         * include/s390-linux.h: New file.
10368 2002-05-24  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10370         * java/lang/natThrowable.cc (fillInStackTrace): Use "stackTraceBytes",
10371         not "stackTrace".
10373 2002-05-24  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10375         Merge JDK 1.4 java.security changes from classpath.
10377         * java/security/AccessControlException.java: Merge from Classpath.
10378         * java/security/AccessController.java: Likewise.
10379         * java/security/AllPermission.java: Likewise.
10380         * java/security/BasicPermission.java: Likewise.
10381         * java/security/Certificate.java: Likewise.
10382         * java/security/CodeSource.java: Likewise.
10383         * java/security/DigestException.java: Likewise.
10384         * java/security/DigestOutputStream.java: Likewise.
10385         * java/security/DomainCombiner.java: Likewise.
10386         * java/security/GeneralSecurityException.java: Likewise.
10387         * java/security/Guard.java: Likewise.
10388         * java/security/GuardedObject.java: Likewise.
10389         * java/security/InvalidAlgorithmParameterException.java: Likewise.
10390         * java/security/InvalidKeyException.java: Likewise.
10391         * java/security/InvalidParameterException.java: Likewise.
10392         * java/security/Key.java: Likewise.
10393         * java/security/KeyException.java: Likewise.
10394         * java/security/KeyManagementException.java: Likewise.
10395         * java/security/KeyStoreException.java: Likewise.
10396         * java/security/MessageDigest.java: Likewise.
10397         * java/security/NoSuchAlgorithmException.java: Likewise.
10398         * java/security/NoSuchProviderException.java: Likewise.
10399         * java/security/Permission.java: Likewise.
10400         * java/security/PermissionCollection.java: Likewise.
10401         * java/security/Permissions.java: Likewise.
10402         * java/security/Policy.java: Likewise.
10403         * java/security/Principal.java: Likewise.
10404         * java/security/PrivateKey.java: Likewise.
10405         * java/security/PrivilegedAction.java: Likewise.
10406         * java/security/PrivilegedActionException.java: Likewise.
10407         * java/security/PrivilegedExceptionAction.java: Likewise.
10408         * java/security/ProtectionDomain.java: Likewise.
10409         * java/security/ProviderException.java: Likewise.
10410         * java/security/PublicKey.java: Likewise.
10411         * java/security/SecureClassLoader.java: Likewise.
10412         * java/security/SecurityPermission.java: Likewise.
10413         * java/security/SignatureException.java: Likewise.
10414         * java/security/UnrecoverableKeyException.java: Likewise.
10415         * java/security/UnresolvedPermission.java: Likewise.
10416         * java/security/acl/AclNotFoundException.java: Likewise.
10417         * java/security/acl/LastOwnerException.java: Likewise.
10418         * java/security/acl/NotOwnerException.java: Likewise.
10419         * java/security/cert/CRLException.java: Likewise.
10420         * java/security/cert/CertificateEncodingException.java: Likewise.
10421         * java/security/cert/CertificateException.java: Likewise.
10422         * java/security/cert/CertificateExpiredException.java: Likewise.
10423         * java/security/cert/CertificateFactory.java: Likewise.
10424         * java/security/cert/CertificateNotYetValidException.java: Likewise.
10425         * java/security/cert/CertificateParsingException.java: Likewise.
10426         * java/security/spec/InvalidKeySpecException.java: Likewise.
10427         * java/security/spec/InvalidParameterSpecException.java: Likewise.
10429         * java/security/cert/CertPath.java: New file.
10430         * java/security/cert/CertPathBuilderException.java: New file.
10431         * java/security/cert/CertPathValidatorException.java: New file.
10432         * java/security/cert/CertStoreException.java: New file.
10434         * Makefile.am: Add new CertPath classes.
10435         * Makefile.in: Rebuilt.
10437         * gnu/java/util/EmptyEnumeration.java: New file from classpath.
10439 2002-05-24  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10441         Merge JDK 1.4 exception chaining support from classpath.
10443         * java/lang/Throwable.java: Merge 1.4 support from classpath.
10444         (stackTraceBytes): Rename from stackTrace.
10445         * java/lang/Exception.java: Merge from classpath.
10446         * java/lang/StackTraceElement: New file from classpath.
10447         * gcj/javaprims.h: Rebuild CNI namespace declarations.
10448         * Makefile.am: Add StackTraceElement.
10449         * Makefile.in: Rebuilt.
10451 2002-05-23  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10453         * Makefile.am (all-recursive): Depend on $all_java_class_files so that
10454         they build first.
10455         * Makefile.in: Rebuilt.
10457 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10459         * acinclude.m4: Allow for PWDCMD to override hardcoded pwd.
10460         * configure.in: Likewise.
10461         * aclocal.m4: Regenerate.
10462         * configure: Regenerate.
10464 2002-05-13  Tom Tromey  <tromey@redhat.com>
10466         * java/lang/natRuntime.cc: Don't include sys/time.h and time.h.
10467         * java/util/natTimeZone.cc: Include sys/time.h and time.h here.
10468         Include platform.h.
10470         Fixes PR libgcj/6389:
10471         * Makefile.in: Rebuilt.
10472         * Makefile.am (nat_source_files): Added natTimeZone.cc.
10473         * java/util/natTimeZone.cc: New file.
10474         * java/util/TimeZone.java (getDefaultTimeZoneId): New method.
10475         * java/lang/System.java: Merged with Classpath.
10476         * java/lang/Runtime.java: Merged with Classpath.
10477         * java/lang/natSystem.cc (setErr0): Renamed from setErr; don't run
10478         security check.
10479         (setIn0): Renamed from setIn; don't run security check.
10480         (setOut0): Renamed from setOut; don't run security check.
10481         (file_encoding, getpwuid_adaptor, getSystemTimeZone,
10482         init_properties): Moved to natRuntime.cc.
10483         Moved many includes to natRuntime.cc.
10484         (isWordsBigEndian): New method.
10485         * java/lang/natRuntime.cc: Include Long.h, also other includes
10486         previously in natSystem.cc.
10487         (maxMemory): New function.
10488         (exitInternal): Renamed from `_exit'.
10489         (exit): Removed.
10490         (init): Don't set finalize_on_exit.
10491         (exitInternal): Use `finalizeOnExit'.
10492         (file_encoding, getpwuid_adaptor): New functions from
10493         natSystem.cc.
10494         (insertSystemProperties): New method, renamed from
10495         System::init_properties.  Don't set user.timezone.
10496         (_load): Don't call checkLink.
10497         (execInternal): New method.
10498         (availableProcessors): Likewise.
10499         (nativeGetLibname): Likewise.
10501 2002-05-11  Mark Wielaard  <mark@klomp.org>
10503         * gnu/java/text/SentenceBreakIterator.java (next): Skip all java white
10504         space characters.
10505         (previous_internal): Likewise.
10507 2002-05-09  Tom Tromey  <tromey@redhat.com>
10509         * jni.cc (_Jv_JNIFunctions): Fixed typo.
10511         * java/util/ResourceBundle.java: New version from Classpath.
10512         * java/util/Locale.java: Likewise.
10514 2002-05-09  Jakub Jelinek  <jakub@redhat.com>
10516         * testsuite/lib/libjava.exp (libjava_arguments): Append all
10517         multilib dirs containing libgcc_s*.so.1 below gcc object dir to
10518         LD_LIBRARY_PATH.
10520 2002-05-08  Mark Mitchell  <mark@codesourcery.com>
10522         * libjava/Makefile.am (all_java_source_files): New variable.
10523         (all_java_class_files): Likewise.
10524         .java.class: New rule.
10525         (CLEANFILES): Remove tmp-list.
10526         * libjava/Makefile.in: Regenerated.
10528 2002-05-09  David.Billinghurst  <David.Billinghurst@riotinto.com>
10530         * testsuite/lib/libjava.exp (test_libjava_from_javac):
10531         Append .exe to executable names.  Fix for cygwin.
10533 2002-05-08  Alexandre Oliva  <aoliva@redhat.com>
10535         * configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
10536         script entry, and set LD to it when configuring multilibs.
10537         * configure: Rebuilt.
10539 2002-05-07  Tom Tromey  <tromey@redhat.com>
10541         * java/lang/natString.cc (unintern): Fixed typo.
10543 2002-05-06  David.Billinghurst  <David.Billinghurst@riotinto.com>
10545         * testsuite/lib/libjava.exp (libjava_arguments): Don't link
10546         with -no-install on *-*-cygwin*.
10548 2002-05-06  David.Billinghurst  <David.Billinghurst@riotinto.com>
10550         * testsuite/lib/libjava.exp (test_libjava_from_source):
10551         Add comment explaining last patch
10553 2002-05-04  David Billinghurst  <David.Billinghurst@riotinto.com>
10555         * testsuite/lib/libjava.exp (test_libjava_from_source):
10556         Append .exe to executable names.  If no suffix is present,
10557         then ".exe" is added by default on win32.  Harmless
10558         elsewhere so always do it.
10560 2002-05-03  David Billinghurst  <David.Billinghurst@riotinto.com>
10561             Tom Tromey  <tromey@redhat.com>
10563         * java/lang/natSystem.cc (getSystemTimeZone): Use
10564         HAVE_UNDERSCORE_TIMEZONE.
10565         * include/config.h.in: Rebuilt.
10566         * acconfig.h (HAVE_UNDERSCORE_TIMEZONE, HAVE_BACKTRACE): Undef.
10567         * aclocal.m4, configure: Rebuilt.
10568         * acinclude.m4: Run AC_EXEEXT.
10569         * configure.in: Adjust test for `timezone' so it fails on Cygwin.
10570         Add test for `_timezone'.
10572 2002-05-03  Alexandre Oliva  <aoliva@redhat.com>
10574         Suggested by Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10575         * Makefile.am (jv_convert_LDADD): Bring -L.libs to the front.
10576         (gij_LDADD, rmic_LDADD, rmiregistry_LDADD): Likewise.
10577         * Makefile.in: Rebuilt.
10579 2002-05-02  Hans Boehm  <Hans_Boehm@hp.com>
10581         * include/dwarf2-signal.h (INIT_SEGV, INIT_FPE for ia64):
10582         use sigaction instead of __libc_sigaction.
10584 2002-05-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10586         * testsuite/lib/libjava.exp (libjava_find_spec): New function.
10587         (libjava_init): Use it to find libgcj.spec.
10588         (libjava_arguments): Likewise.
10590 2002-05-02  David S. Miller  <davem@redhat.com>
10592         PR bootstrap/6525
10593         * include/dwarf2-signal.h (INIT_SEGV, INIT_FPE): Don't use
10594         __libc_sigaction on Sparc.
10596 2002-05-02  Jerome Marc  <marcjero@yahoo.com>
10598         * java/net/natPlainSocketImpl.cc: Include sys/ioctl.h and
10599         sys/filio.h, if present.
10601 2002-04-30  Tom Tromey  <tromey@redhat.com>
10603         * java/io/BufferedReader.java (fill): Handle case where markPos
10604         point to ignored \n.  Fixes PR libgcj/6301.
10606 2002-04-29  Gerhard Tonn  <GerhardTonn@swol.de>
10608         * java/lang/ieeefp.h: Define __IEEE_BIG_ENDIAN for S/390.
10610 2002-04-29  Adam King <aking@dreammechanics.com>
10612         * java/io/natFileDescriptorWin32.cc (open): Move file pointer to end
10613         of file in APPEND mode.
10615 2002-04-25  David S. Miller  <davem@redhat.com>
10617         PR target/6422
10618         * include/dwarf2-signal.h (MAKE_THROW_FRAME for sparc*): Set
10619         program counter to next program counter minus 8.  Update
10620         comments in this macro to explain why.
10622 2002-04-26  Tom Tromey  <tromey@redhat.com>
10624         * verify.cc (construct_primitive_array_type) [void_type]: New
10625         case.
10626         (branch_prepass): Added dummy entries for unused instruction
10627         values.
10628         (verify_instructions_0): Likewise.
10629         * interpret.cc (continue1): Comment fix.
10630         * include/java-insns.h (op_xxxunusedxxx1): Removed.
10631         * Makefile.in: Rebuilt.
10632         * Makefile.am: Added -Wswitch-enum.
10634 2002-04-24  Tom Tromey  <tromey@redhat.com>
10636         * gnu/gcj/natCore.cc (create): Use __builtin_alloca, and compute
10637         correct length of UTF-8 encoded name.  Strip leading `/'.
10638         (_Jv_RegisterResource): Use _Jv_Malloc.
10640 2002-04-23  Adam Megacz <adam@xwt.org>
10642         * win32.cc, include/win32.cc (backtrace): Added this function
10643         because Win32 does not supply it.
10645 2002-04-21  David S. Miller  <davem@redhat.com>
10647         * include/dwarf2-signal.h (MAKE_THROW_FRAME, sparc32): Document
10648         magic instruction reading sequence.
10650 2002-04-21  Mark Wielaard  <mark@klomp.org>
10652         * mauve-libgcj: Don't run java.lang.ref tests since they are buggy.
10654 2002-04-19  David S. Miller  <davem@redhat.com>
10656         * include/dwarf2-signal.h (SIGNAL_HANDLER): Name siginfo_t pointer
10657         arg.
10658         (MAKE_THROW_FRAME): Define for 32-bit and 64-bit sparc.
10659         (INIT_SEGV, INIT_FPE): Use direct __libc_sigaction installation
10660         on Sparc too.
10661         * include/sparc-signal.h (FLUSH_REGISTER_WINDOWS): Define properly
10662         for 64-bit sparc.
10663         (MAKE_THROW_FRAME): Use long for sp/retaddr so 64-bit works.
10664         * sysdeps/sparc/locks.h: New file.
10665         * configure.in (SIGNAL_HANDLER): Set to include/sparc-signal.h
10666         on all sparc Solaris configurations.  Set to
10667         include/dwarf2-signal.h on sparc Linux.
10668         * configure: Regenerate
10669         * configure.host (can_unwind_signal): sparc*-linux* can do it now.
10671 2002-04-19  Hans Boehm <Hans_Boehm@hp.com>
10673         * configure: Rebuilt.
10674         * configure.in (backtrace): Function doesn't work on IA-64.
10676 2002-04-17  Adam King <aking@dreammechanics.com>
10678         * java/io/File.java (normalizePath): Add Win32 support for auto
10679         conversion of a '/' path separator to Win32's '\' separator.
10681 2002-04-16  Tom Tromey  <tromey@redhat.com>
10683         Fix for PR libgcj/6081:
10684         * Makefile.in: Rebuilt.
10685         * Makefile.am (install-data-local): Use GNU make trick to avoid
10686         shell limit.
10688 2002-04-16  Adam King <aking@dreammechanics.com>
10689             Tom Tromey  <tromey@redhat.com>
10691         * java/io/natFileWin32.cc (performList): Return the correct array
10692         type.  Don't duplicate the creation of a File since it's already
10693         done earlier in the method and the existing code would cause a
10694         ArrayStoreException.  Don't use fixed-size array.
10695         (_access, _stat, attr, getCanonicalPath, performMkdir,
10696         performRenameTo): Don't use fixed-size array.
10697         (getCanonicalPath): Use throw, not _Jv_Throw.
10699 2002-04-15  DJ Delorie  <dj@redhat.com>
10701         * configure.in: Allow building in $srcdir.
10702         * configure: Regenerated.
10704 2002-04-14  Mark Wielaard <mark@klomp.org>
10706         * java/net/natPlainDatagramSocketImpl.cc (close): Set timeout to 0.
10707         * java/net/natSocketImpl.cc (close): Likewise.
10709 2002-04-14  Mark Wielaard <mark@klomp.org>
10711         * gnu/gcj/protocol/http/Connection.java (usingProxy): return false.
10713 2002-04-13  Adam King <aking@dreammechanics.com>
10715         * java/lang/natDouble.cc (parseDouble): Allow a number to end with
10716         the f/F/d/D modifiers.
10718 2002-04-12  Anthony Green  <green@redhat.com>
10720         * Makefile.am (jardir, jar_DATA): Define (for libgcj.jar).
10721         Create libgcj-@gcc_version@.jar instead of libgcj.jar.
10722         * Makefile.in: Rebuilt.
10723         * configure.in: Substitute gcc_version.
10724         * configure: Rebuilt.
10726 2002-04-11  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10728         * configure.host: Set can_unwind_signal on hosts which support it.
10729         Don't set CHECKREFSPEC and DIVIDESPEC for FreeBSD.
10730         * configure.in: Set CHECKREFSPEC and DIVIDESPEC if not using SJLJ
10731         exceptions and can_unwind_signal isn't set.
10732         * configure: Rebuilt.
10734 2002-04-11  Tom Tromey  <tromey@redhat.com>
10736         * win32.cc (_Jv_platform_initProperties): Fix spelling of _Jv_Free.
10738 2002-04-11  Adam King <aking@dreammechanics.com>
10739             Tom Tromey  <tromey@redhat.com>
10741         * include/jvm.h (_Jv_ThrowBadArrayIndex,
10742         _Jv_ThrowNullPointerException): Mark as noreturn.
10743         * win32.cc (_Jv_platform_initProperties): Use _Jv_MallocUnchecked
10744         and _Jv_free.  Correctly invoke GetTempPath().  Indentation
10745         fixes.
10747 2002-04-10  Tom Tromey  <tromey@redhat.com>
10749         * Makefile.in: Rebuilt.
10750         * Makefile.am (java/lang/Thread.h): Mark
10751         _Jv_AttachCurrentThreadAsDaemon as friend.
10752         * gcj/javaprims.h (_Jv_AttachCurrentThreadAsDaemon): Declare.
10753         * gcj/cni.h (JvAttachCurrentThreadAsDaemon): New function.
10754         * java/lang/natThread.cc (_Jv_AttachCurrentThreadAsDaemon): New
10755         function.
10756         * java/lang/natRuntime.cc (_load): Recognize JNI_VERSION_1_4.
10757         * jni.cc (_Jv_JNI_GetVersion): Return JNI_VERSION_1_4.
10758         (_Jv_JNI_InvokeFunctions): Added
10759         _Jv_JNI_AttachCurrentThreadAsDaemon.
10760         (_Jv_JNI_GetEnv): Handle JNI_VERSION_1_4.
10761         (JNI_GetDefaultJavaVMInitArgs): Likewise.
10762         (JNI_CreateJavaVM): Likewise.
10763         (_Jv_JNI_AttachCurrentThread): Likewise.
10764         (_Jv_JNI_AttachCurrentThread): Added `is_daemon' argument.
10765         (_Jv_JNI_AttachCurrentThreadAsDaemon): New method.
10766         (_Jv_JNIFunctions): Initialize new fields.
10767         (_Jv_JNI_NewDirectByteBuffer): New function.
10768         (_Jv_JNI_GetDirectBufferAddress): Likewise.
10769         (_Jv_JNI_GetDirectBufferCapacity): Likewise.
10770         * include/jni.h (JNI_VERSION_1_4): New macro.
10771         (JNIInvokeInterface::AttachCurrentThreadAsDaemon): New field.
10772         (_Jv_JavaVM::AttachCurrentThreadAsDaemon): New method.
10773         (JNINativeInterface::NewDirectByteBuffer): New field.
10774         (JNINativeInterface::GetDirectBufferAddress): New field.
10775         (JNINativeInterface::GetDirectBufferCapacity): New field.
10776         (_Jv_JNIEnv::NewDirectByteBuffer): New method.
10777         (_Jv_JNIEnv::GetDirectBufferAddress): New method.
10778         (_Jv_JNIEnv::GetDirectBufferCapacity): New method.
10780 2002-04-09  Tom Tromey  <tromey@redhat.com>
10782         * win32.cc (_Jv_platform_initProperties): Use GetTempPath.
10784 2002-04-08  Alberto Biancardi  <alberto.biancardi@unipv.it>
10786         Fix for PR libgcj/6187:
10787         * java/awt/geom/Point2D.java (distance): Call distanceSq, not
10788         distance.
10790 2002-04-07  Mark Wielaard <mark@klomp.org>
10792         * java/util/AbstractMap.java (putAll): Use entrySet size.
10793         (toString): Explicitly use getKey() and getValue().
10795 2002-04-07  Mark Wielaard <mark@klomp.org>
10797         * java/util/Hashtable.java (contains): Remove NullPointer check.
10798         (containsValue): Add NullPointer check.
10799         (remove): Always throw NullPointerException when key
10800         is null.
10802 2002-04-07  Adam King <aking@dreammechanics.com>
10804         * java/lang/natSystem.cc (init_properties): Call new function
10805         _Jv_platform_initProperties.
10806         * win32.cc (_Jv_platform_initProperties): New function that adds Win32
10807         support for the System properties os.name, os.arch, os.version,
10808         user.name, user.home, and user.dir.
10809         * include/posix.h, include/win32.h, posix.cc: New function
10810         _Jv_platform_initProperties.
10812 2002-04-06  Mark Wielaard <mark@klomp.org>
10814         * java/lang/Character,java (isDefined): getType() != UNASSIGNED.
10816 2002-04-06  Mark Wielaard <mark@klomp.org>
10818         * java/util/ArrayList.java (addAll(int,Collection)): System.arraycopy
10819         all of the remaining elements.
10820         * java/util/Vector.java (addAll(int,Collection)): Likewise.
10821         (removeRange): If toIndex == fromIndex do
10822         nothing, if toIndex < fromIndex throw IndexOutIfBoundsException.
10823         (removeAll): Always throw NullPointerException when collection is
10824         null.
10825         (retrainAll): Likewise.
10827 2002-04-05  Mark Wielaard <mark@klomp.org>
10829         * java/util/ArrayList.java (removeRange): If toIndex == fromIndex do
10830         nothing, if toIndex < fromIndex throw IndexOutIfBoundsException.
10832 2002-04-05  Adam Megacz <adam@xwt.org>
10834         * exception.cc (abort): added static modifier
10836 2002-04-04  Adam Megacz <adam@xwt.org>
10838         * include/win32.h (_Jv_platform_close_on_exec): added inline
10839         modifier.
10841 2002-04-04  Loren J. Rittle  <ljrittle@acm.org>
10843         * configure.host: Add case statement to support generic port
10844         properties.  Add *-*-freebsd* section.
10846 2002-04-04  Mark Wielaard  <mark@klomp.org>
10848         * mauve-libgcj: Add JLS1.0 and JLS1.1 tags, ignore Character.unicode
10849         test.
10850         * testsuite/libjava.mauve/xfails: Remove working tests DoubleTest,
10851         FloatTest and ObjectStreamClass. Add FAIL for Introspector.jdk11 tests
10852         that depend on awt code and BufferedByteOutputStream.interrupt.
10854 2002-04-04  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10856         * java/util/Arrays.java (qsort): Fix off-by-one errors and use of
10857         incorrect "hi" value when count > 40.
10859 2002-04-03  Mark Wielaard  <mark@klomp.org>
10861         * java/lang/reflect/Modifier.java (toString(int,StringBuffer)): Fix
10862         ordering.
10864 2002-04-02  Tom Tromey  <tromey@redhat.com>
10866         * java/lang/natClassLoader.cc (findClass): Compare against `3',
10867         not `0'.
10869 2002-04-02  Mark Wielaard  <mark@klomp.org>
10871         * mauve-libgcj: add java.net.DatagramSocket.DatagramSocketTest2 to
10872         list of testsuite crashers.
10874 2002-04-02  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10876         * java/util/IdentityHashMap.java (put): Set new threshold correctly
10877         when resizing table.
10879 2002-04-01  Mark Wielaard  <mark@klomp.org>
10881         * java/util/BitSet.java (BitSet(int)): if nbits < 0 throw
10882         NegativeArraySizeException
10883         (clear(int)): Use sign extended shift.
10884         (flip(int)): Likewise.
10885         (get(int)): Likewise.
10886         (nextClearBit(int)): Likewise.
10887         (nextSetBit(int)): Likewise.
10888         (set(int)): Likewise.
10890 2002-04-01  Mark Wielaard  <mark@klomp.org>
10892         * mauve-libgcj: Add JDK1.3, JDK1.4, JLS1.2 tests, remove ignored tests
10893         that can be compiled now and add testsuite crashers to ignore list.
10895 2002-03-31  Alexandre Oliva  <aoliva@redhat.com>
10897         * libgcj.spec.in, libgcj-test.spec.in: Revert for now.
10899         * libgcj.spec.in: Override libgcc, not lib.
10900         * libgcj-test.spec.in: Likewise.
10902 2002-03-29  Tom Tromey  <tromey@redhat.com>
10904         * java/net/natPlainDatagramSocketImpl.cc (close): New function.
10905         * java/net/natPlainSocketImpl.cc (close): Indentation fix.
10907 2002-03-27  Jeff Sturm  <jsturm@one-point.com>
10909         * java/net/PlainDatagramSocketImpl.java
10910         (close): Use native implementation.
10911         (finalize): New method.
10913         * java/net/PlainSocketImpl.java (finalize): New method.
10915         * java/net/natPlainDatagramSocketImpl.cc
10916         (java/io/FileDescriptor.h): Don't include.
10917         (close): Implement method here.
10918         (create): Don't assign fd.
10920         * java/net/natPlainSocketImpl.cc
10921         (java/io/FileDescriptor.h): Don't include.
10922         (create): Don't assign fd.
10923         (accept): Likewise.
10924         (close): Synchronize.
10926 2002-03-27  Richard Henderson  <rth@redhat.com>
10928         * include/posix-threads.h [alpha] (_Jv_ThreadSelf): Avoid a copy.
10930 2002-03-25  Andrew Haley <aph@cambridge.redhat.com>, Hans Boehm <Hans_Boehm@hp.com>
10932         * include/dwarf2-signal.h (MAKE_THROW_FRAME): Add for IA-64.
10933         (INIT_SEGV, INIT_FPE): Add versions that use __libc_sigaction
10934         instead of syscall on IA-64.
10935         Add FIXME comment.
10937 2002-03-27  Anthony Green  <green@redhat.com>
10939         * libgcj.spec.in: Add CHECKREFSPEC.
10940         * configure.in: Ditto.
10941         * configure.host: Ditto.  Check references for xscale-elf.
10942         * configure: Rebuilt.
10944 2002-03-26  Hans Boehm <Hans_Boehm@hp.com>
10946         * include/dwarf2-signal.h: Temporarily back out last change.
10948 2002-03-26  Loren J. Rittle  <ljrittle@acm.org>
10950         * include/posix-threads.h: Support <.../pal.h> on FreeBSD/alpha.
10952 2002-03-25  Andrew Haley <aph@cambridge.redhat.com>, Hans Boehm <Hans_Boehm@hp.com>
10954         * configure.in, configure: enable dwarf2-exception-style
10955         exception handling on IA-64.
10956         * include/dwarf2-signal.h (MAKE_THROW_FRAME): Add for IA-64.
10957         (INIT_SEGV, INIT_FPE): Use __libc_sigaction instead of syscall.
10958         Add FIXME comment.
10960 2002-03-25  Tom Tromey  <tromey@redhat.com>
10962         * Makefile.am (libgcj_la_LDFLAGS): Use THREADLDFLAGS.
10963         (jv_convert_LDFLAGS): Likewise.
10964         (gij_LDFLAGS): Likewise.
10965         (rmic_LDFLAGS): Likewise.
10966         (rmiregistry_LDFLAGS): Likewise.
10967         * configure.in (THREADLDFLAGS): New subst; set correctly for
10968         *BSD.
10970 2002-03-25  Tom Tromey  <tromey@redhat.com>
10972         For PR libgcj/5303:
10973         * gnu/java/rmi/registry/RegistryImpl.java (main): Recognize --help
10974         and --version.
10975         (help): New method.
10976         (version): Likewise.
10977         * gnu/gcj/convert/Convert.java (version): Removed extraneous
10978         "GNU".
10979         * gnu/java/rmi/rmic/RMIC.java (parseOptions): Removed extraneous
10980         "GNU".
10982 2002-03-25  Tom Tromey  <tromey@redhat.com>
10984         * java/awt/Component.java (processEvent): Check ComponentEvent
10985         after KeyEvent.
10987 2002-03-24  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10989         * java/io/PushbackReader.java: Reformat.
10991         * java/io/FileInputStream.java (skip): Call fd.getFilePointer() and
10992         calculate correct number of bytes skipped.
10994         Based on patch from Intel's ORP team:
10995         * java/io/PushbackInputStream.java (available): Calculate correct
10996         number of bytes in buffer.
10997         (read): Remove redundant bound check. Return bytes from both the
10998         buffer and the stream.
11000 2002-03-24  Tom Tromey  <tromey@redhat.com>
11002         * java/awt/TextComponent.java (TextComponent): Editable by
11003         default.
11005         * java/awt/MenuItem.java (eventMask): No longer private.
11006         * java/awt/Button.java (dispatchEventImpl): Only dispatch to
11007         superclass if we didn't handle event.
11008         * java/awt/Checkbox.java (dispatchEventImpl): New method.
11009         * java/awt/CheckboxMenuItem.java (dispatchEventImpl): New method.
11010         * java/awt/Choice.java (dispatchEventImpl): New method.
11011         * java/awt/List.java (dispatchEventImpl): New method.
11012         * java/awt/Scrollbar.java (dispatchEventImpl): New method.
11013         * java/awt/TextComponent.java (dispatchEventImpl): New method.
11014         * java/awt/TextField.java (dispatchEventImpl): New method.
11016 2002-03-24  Eric Blake  <ebb9@email.byu.edu>
11018         * java/beans/IntrospectionException.java: Update to 1.4.
11019         * java/beans/PropertyVetoException.java: Ditto.
11021 2002-03-24  Eric Blake  <ebb9@email.byu.edu>
11023         * gnu/java/beans/BeanInfoEmbryo.java (hasMethod): Use
11024         Arrays.equals instead of ArrayHelper.equalsArray.
11026 2002-03-24  C. Brian Jones <cbj@gnu.org>
11028         * java/beans/Introspector.java: added new static final fields
11029         introduced in 1.2, lots of other updates remain to be done
11031 2002-03-24  C. Brian Jones <cbj@gnu.org>
11033         * java/beans/Introspector.java: reformatting
11035 2002-03-24  C. Brian Jones <cbj@gnu.org>
11037         * java/beans/Introspector.java: default beanInfoSearchPath will
11038         not include sun.beans.infos given we provide no such package and
11039         the API doesn't really require it; gnu.java.beans.info is the
11040         default.
11042 2002-03-24  Mark Wielaard  <mark@klomp.org>
11044         Thanks to Orp developers
11045         * gnu/java/beans/editors/NativeBooleanEditor.java (setAsText(String)):
11046         switch TRUE and FALSE return values.
11048 2002-03-23  Tom Tromey  <tromey@redhat.com>
11050         * include/name-finder.h (_Jv_name_finder::myclose): New method.
11051         * name-finder.cc (_Jv_name_finder): Initialize file descriptors.
11053 2002-03-23  Michael Smith  <msmith@spinnakernet.com>
11055         * java/util/GregorianCalendar.java (minimums, maximums): Correct
11056         MONTH entry.  Fixes PR libgcj/6045.
11058 2002-03-23  Jeff Sturm  <jsturm@one-point.com>
11060         * java/nat/natPlainSocketImpl.cc (write): Abort loop on error.
11062 2002-03-20  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11064         * posix-threads.cc (_Jv_ThreadSelf_out_of_line): Use write_barrier,
11065         not release_set.
11066         * sysdep/powerpc/locks.h (write_barrier): New function.
11067         * sysdep/i386/locks.h (write_barrier): New function.
11069 2002-03-19  Martin Kahlert  <martin.kahlert@infineon.com>
11071         * include/jni.h Use correct C comments.
11073 2002-03-18  Tom Tromey  <tromey@redhat.com>
11075         * include/jni.h (JNIIMPORT): New macro.
11076         (JNIEXPORT): Likewise.
11077         (JNICALL): Likewise.
11079 2002-03-18  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
11081         * configure.host (i?86-*): Use -fuse-divide-subroutine on Solaris
11082         systems.
11084 2002-03-18  Andrew Haley  <aph@cambridge.redhat.com>
11086         * include/i386-signal.h (old_i386_kernel_sigaction): New.
11087         INIT_SEGV: Use old_i386_kernel_sigaction.
11088         INIT_FP: Likewise.
11090 2002-03-18  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11092         * java/lang/natSystem.cc (init_properties): Update VM version
11093         properties.
11094         * configure.in: Set GCJVERSION.
11095         * acconfig.h: Add GCJVERSION.
11096         * configure: Rebuilt.
11097         * include/config.h.in: Rebuilt.
11099 2002-03-17  Anthony Green  <green@redhat.com>
11101         * java/lang/ieeefp.h: Add ARM thumb support (copied from newlib).
11103 2002-03-17  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11105         Build a single libgcj.so, without separate gc and zlib libraries.
11106         * configure.in: Use convenience libraries for boehm-gc and zlib. Set
11107         SYS_ZLIBS if system zlib is used.
11108         * configure: Rebuilt.
11109         * Makefile.am: Use boehm-gc and zlib convenience libraries.
11110         * Makefile.in: Rebuilt.
11111         * libtool-version: Increment .so version number.
11113         * Makefile.am: Escape quotes in echo.
11114         * Makefile.in: Rebuilt.
11116 2002-03-16  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11118         * Makefile.am: Use empty -classpath flag in addition to -bootclasspath.
11119         * Makefile.in: Rebuilt.
11121 2002-03-15  Anthony Green  <green@redhat.com>
11123         * configure.host (FILE): New macro for specifing File
11124         implementation.
11125         * configure: Rebuilt.
11126         * configure.in: Use FILE.  Define HAVE_TIME for newlib targets.
11128 2002-03-15  Alexandre Oliva  <aoliva@redhat.com>
11130         * Makefile.am (jv_convert_LDADD): Don't list libraries that are
11131         already implicitly brought in from libgcj.la.
11132         (gij_LDADD, rmic_LDADD, rmiregistry_LDADD): Likewise.
11133         * Makefile.in: Rebuilt.
11135 2002-03-15  Eric Blake  <ebb9@email.byu.edu>
11137         * THANKS: Fix punctuation, alphabetization.
11139 2002-03-15  Tom Tromey  <tromey@redhat.com>
11140             Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
11142         Fix for PR libgcj/5944.
11143         * gnu/gcj/io/shs.h: Define uint8_t and uint32_t.
11145 2002-03-15  Anthony Green  <green@redhat.com>
11147         * configure.in (tool_include_dir): Define.
11148         * configure: Rebuilt.
11149         * gcj/Makefile.am: Install libgcj-config.h relative to
11150         tool_include_dir.
11151         * gcj/Makefile: Rebuilt.
11152         * gcj/libgcj-config.h: Add warning comment.
11154 2002-03-12  Andreas Tobler  <a.tobler@schweiz.ch>
11156         * configure.host (powerpc*-darwin*): Enable interpreter.
11158 2002-03-10  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11160         * include/posix.h: Add multiple include header protection.
11161         * java/net/natPlainSocketImpl.cc: Don't #include <posix.h>.
11163 2002-03-10  Adam Megacz <adam@xwt.org>
11165         * java/net/natPlainSocketImpl.cc: Added #include <platform.h>.
11167 2002-03-10  Tom Tromey  <tromey@redhat.com>
11169         * java/awt/GridLayout.java (layoutContainer): Handle case where
11170         there are no items in container.
11172         * java/lang/Win32Process.java: Added comment.
11173         * include/posix.h (_Jv_platform_close_on_exec): New function.
11174         Include fcntl.h.
11175         * include/win32.h (_Jv_platform_close_on_exec): New function.
11176         * java/net/natPlainSocketImpl.cc (create): Set close-on-exec
11177         flag.
11178         (accept): Likewise.
11179         * java/net/natPlainDatagramSocketImpl.cc (create): Set
11180         close-on-exec flag.
11181         * java/io/natFileDescriptorPosix.cc (open): Set close-on-exec
11182         flag.
11184 2002-03-09  Tom Tromey  <tromey@redhat.com>
11186         * verify.cc (state::NO_STACK): New constant.
11187         (state::is_unmerged_ret_state): Handle case where stacktop is
11188         NO_STACK.
11189         (state::merge): Handle NO_STACK merges.
11190         (handle_jsr_insn): Invalidate PC, and use special NO_STACK state
11191         for instruction following jsr.
11192         (stacktop, stackdepth): Removed unused variables.
11193         (pop_jump): Ignore case where all remaining states are skipped.
11195 2002-03-09  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11197         * java/awt/ImageMediaEntry: Removed.
11198         * java/awt/MediaEntry: Removed.
11200 2002-03-09  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11202         Hashtable synchronization for PowerPC.
11203         * configure.in: Define SLOW_PTHREAD_SELF if configure.host set
11204         slow_pthread_self. Set up symlink for sysdeps directory.
11205         * configure: Rebuild.
11206         * configure.host: Document more shell variables. Set sysdeps_dir
11207         for most platforms. Set slow_pthread_self for i686. Set
11208         enable_hash_synchronization_default and slow_pthread_self for PowerPC.
11209         * posix-threads.cc (_Jv_ThreadSelf_out_of_line): Use release_set so
11210         that memory barrier is emitted where required.
11211         * prims.cc: 64-bit align static primitive class instances.
11212         * include/posix-threads.h (_Jv_ThreadSelf for SLOW_PTHREAD_SELF): Add
11213         read_barrier() to enforce ordering of reads.
11214         * sysdep/powerpc/locks.h: New file. Implementation of synchronization
11215         primitives for PowerPC.
11216         * sysdep/i386/locks.h: New file. Synchronization primitives for i386
11217         moved from natObject.cc.
11218         * sysdep/alpha/locks.h: Likewise.
11219         * sysdep/ia64/locks.h: Likewise.
11220         * sysdep/generic/locks.h: Likewise.
11221         * java/lang/natObject.cc: Move thread synchronization primitives to
11222         system-dependent headers.
11224 2002-03-09  Adam Megacz  <adam@xwt.org>
11226         * java/io/natFileDescriptorWin32.cc (read): Return -1 if zero
11227         bytes read and no failure code returned.
11229 2002-03-09  Adam Megacz  <adam@xwt.org>
11231         * win32.cc (_CRT_MT, __mingwthr_key_dtor) Added fake
11232         definitions to simulate -mthreads.
11234 2002-03-09  Adam Megacz  <adam@xwt.org>
11236         * win32.cc (_Jv_platform_gettimeofday) Cast 1000 to long long to
11237         avoid precision loss.
11239 2002-03-09  Per Bothner  <per@bothner.com>
11241         * gnu/gcj/xlib/WindowAttributes.java  Assign null to RawData, not 0.
11242         * gnu/gcj/xlib/XImage.java:  Likewise.
11243         * gnu/gcj/xlib/XColor.java:  Likewise.
11245 2002-03-09  Adam Megacz  <adam@xwt.org>
11247         * java/lang/Win32Process.java (ConcreteProcess): Now throws an
11248         IOException so that Throwable.printStackTrace fails correctly.
11250 2002-03-08  Adam Megacz  <adam@xwt.org>
11252         * java/net/natPlainSocketImpl.cc (read, write, close): Formatting
11253         fixed.
11255 2002-03-09  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11257         * posix.cc (_Jv_platform_gettimeofday): Make sure result doesn't get
11258         truncated to int.
11260 2002-03-08  Tom Tromey  <tromey@redhat.com>
11262         * include/jni.h: Include stdio.h.
11264 2002-03-08  Tom Tromey  <tromey@redhat.com>
11266         * posix.cc (internal_gettimeofday): New function.
11267         (_Jv_select): Use it.
11269 2002-03-07  Adam Megacz  <adam@xwt.org>
11271         * java/net/natPlainSocketImpl.cc: Changed USE_WINSOCK to
11272         WIN32, and added thunks for read(), write(), and close().
11273         * java/net/natPlainSocketImpl.cc (accept, read, read):
11274         Disabled timeouts on WIN32 pending discussion.
11276 2002-03-07  Adam Megacz  <adam@xwt.org>
11278         * win32.cc (_Jv_platform_gettimeofday): Now takes no args,
11279         returns jlong. Added implementation
11280         * posix.cc (_Jv_platform_gettimeofday): Now takes no args,
11281         returns jlong.
11282         * win32.h (_Jv_platform_gettimeofday): Now takes no args,
11283         returns jlong.
11284         * posix.h (_Jv_platform_gettimeofday): Now takes no args,
11285         returns jlong.
11286         * java/lang/natSystem.cc (currentTimeMillis): Now uses updated
11287         _Jv_platform_gettimeofday signature.
11289 2002-03-07  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11291         * java/net/natPlainSocketImpl.cc (_Jv_recv): Removed.
11292         (read): Call recv() directly, not _Jv_recv().
11294 2002-03-06  Tom Tromey  <tromey@redhat.com>
11296         * java/io/natFileDescriptorEcos.cc (init): Don't use
11297         GetStdHandle.
11298         * java/io/natFileDescriptorPosix.cc (valid): Don't call stat if FD
11299         is negative.
11300         (init): Don't use GetStdHandle.
11302         * include/config.h.in: Rebuilt.
11303         * configure: Rebuilt.
11304         * Makefile.in: Rebuilt.
11306 2002-03-06  Adam Megacz  <adam@xwt.org>
11308         * java/io/FileDescriptor.java: Initialize in/out/err in init().
11309         * java/io/natFileDescriptorWin32.cc (init()): Added function.
11310         * java/io/natFileDescriptorPosix.cc (init()): Added function.
11311         * java/io/natFileDescriptorEcos.cc (init()): Added function.
11313 2002-03-06  Eric Blake  <ebb9@email.byu.edu>
11315         * scripts/unicode-decomp.pl: Move from chartables.pl, and remove
11316         the code for generating include/java-chartables.h.
11317         * scripts/unicode-blocks.pl: Move from scripts/blocks.pl, and
11318         merge with Classpath.
11319         * scripts/unicode-muncher.pl: Copy from Classpath.
11320         * scritps/MakeCharTables.java: New file.
11321         * gnu/gcj/convert/Blocks-3.txt: New file.
11322         * gnu/gcj/convert/UnicodeData-3.0.0.txt: New file.
11323         * gnu/gcj/convert/UnicodeCharacterDatabase-3.0.0.html: New file.
11324         * gnu/java/lang/CharData.java: Copy from Classpath.
11325         * Makefile.am (ordinary_java_source_files): Add
11326         gnu/java/lang/CharData.java.
11327         * configure.in: Remove --enable-fast-character option.
11328         * java/lang/Character.java: Merge algorithms and Javadoc with
11329         Classpath.
11330         * java/lang/natCharacter.cc: Implement Unicode lookup table more
11331         efficiently.
11332         * include/java-chardecomp.h: Regenerate.
11333         * include/java-chartables.h: Regenerate.
11335 2002-03-06  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11337         * java/awt/MediaTracker.java: Implemented.
11338         * Makefile.am: Add MediaTracker.
11339         * Makefile.in: Rebuilt.
11341 2002-03-05  Tom Tromey  <tromey@redhat.com>
11343         * java/lang/natPosixProcess.cc (fail): Removed.
11344         (startProcess): Simplified error-handling.  Preserve
11345         LD_LIBRARY_PATH across exec.
11347         * jni.cc (_Jv_LookupJNIMethod): Throw UnsatisfiedLinkError, not
11348         AbstractMethodError.
11350 2002-03-03  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11352         * Makefile.am: Use -bootclasspath, not -CLASSPATH.
11353         * Makefile.in: Rebuilt.
11355 2002-03-03 Mark Wielaard <mark@klomp.org>
11357         * java/util/Timer (TaskQueue.stop): set elements to zero.
11359 2002-02-28  Anthony Green  <green@redhat.com>
11361         * java/lang/reflect/natMethod.cc (result): Add void* element.
11362         (_Jv_CallAnyMethodA): Handle FFI_TYPE_POINTER arguments.  Move
11363         constructor test.
11365 2002-02-27  Adam Megacz <adam@xwt.org>
11367         * java/net/natInetAddress.cc: Changed USE_WINSOCK to WIN32, added
11368         '#undef STRICT'.
11370 2002-02-26  Tom Tromey  <tromey@redhat.com>
11372         * java/lang/natSystem.cc (init_properties): Use __VERSION__.
11373         * gij.cc (version): Use __VERSION__.
11374         * include/config.h.in: Rebuilt.
11375         * acconfig.h (GCJVERSION): Removed.
11376         * configure: Rebuilt.
11377         * configure.in (GCJVERSION): Removed.
11379 2002-02-26  Andreas Schwab  <schwab@suse.de>
11381         * acinclude.m4 (LIB_AC_PROG_CXX): Use glibjava_CXX instead of
11382         glibcpp_CXX, since libjava uses even another CXX.
11383         * aclocal.m4, configure: Regenerated.
11385 2002-02-26  Tom Tromey  <tromey@redhat.com>
11387         * java/lang/natPosixProcess.cc (startProcess): Use FD_CLOEXEC, not
11388         `1'.
11390 2002-02-25  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11392         * Makefile.am (GCJCOMPILE): Use -fCLASSPATH not -fclasspath. Fixes
11393         dependency tracking for .java files.
11394         * Makefile.in: Rebuilt.
11396 2002-02-24  Adam Megacz  <adam@xwt.org>
11398         * java/net/natPlainDatagramSocketImpl.cc: whops; removed 'make'
11399         typo. Sorry.
11401 2002-02-24  Adam Megacz  <adam@xwt.org>
11403         * java/net/natPlainDatagramSocketImpl.cc: Updated #includes
11404         for Win32, changed #ifdefs to check WIN32 instead of the
11405         (now-obsolete) USE_WINSOCK, and removed support for socket
11406         timeouts on Win32 pending further discussion.
11408 2002-02-24  Adam Megacz  <adam@xwt.org>
11410         * win32-threads.cc (_Jv_ThreadInitData): _Jv_Malloc instead of new
11411         * win32-threads.cc (_Jv_ThreadDestroyData): _Jv_Free instead of
11412         delete
11414 2002-02-24  Adam Megacz  <adam@xwt.org>
11416         * java/lang/Win32Process.java: Created a dummy class to allow
11417         build process to run to completion.
11419 2002-02-24  Jeff Sturm  <jsturm@one-point.com>
11421         * java/lang/reflect/natMethod.cc (_Jv_CallAnyMethodA):
11422         Define ffi_result union for ffi_call result.  Cast
11423         ffi_result members to jvalue.
11425 2002-02-23  Alexandre Oliva  <aoliva@redhat.com>
11427         * Makefile.in, gcj/Makefile.in, include/Makefile.in: Rebuilt.
11428         * testsuite/Makefile.in: Likewise.
11430 2002-02-20  Per Bothner  <per@bothner.com>
11432         * java/net/URL.java (getPath):  New JDK 1.3 method.
11434         * java/net/URLStreamHandler.java (parseURL):
11435         It is wrong to prepend '/' to the file part of a relative url.
11437         * java/net/URLStreamHandler.java (parseURL):
11438         Minor optizations - append '/' rather than "/".
11440         * java/net/URLStreamHandler.java (parseURL):
11441         Don't canonicalize "xx/.." or "./" URLs - JDK doesn't.
11442         We probably should canonicalize for a context-relative url, though.
11443         * java/net/URL.java (sameFile):  Delegate to URLStreamHandler.
11444         * java/net/URLStreamHandler.java (canonicalizeFilename):  New helper.
11445         (sameFile):  New method.  Uses canonicalizeFilename.
11447 2002-02-22  Tom Tromey  <tromey@redhat.com>
11449         * java/lang/natSystem.cc (init_properties): Include the `Inc.' in
11450         java.vendor and java.vm.vendor.
11451         * gnu/java/rmi/rmic/RMIC.java (parseOptions): Only print most
11452         recent copyright date.
11453         * gnu/gcj/convert/Convert.java (version): Print `Inc'.
11454         * gij.cc (version): Print `Inc'.
11456 2002-02-22  Alexandre Oliva  <aoliva@redhat.com>
11458         * acinclude.m4 (CXX): AC_SUBST it, instead of glibcpp_CXX.
11459         * aclocal.m4, configure: Rebuilt.
11461 2002-02-20  Per Bothner  <per@bothner.com>
11463         * gnu/gcj/protocol/file/Connection.java (conect):  Open the input
11464         and/or output streams immediately here, instead of using File.exists.
11465         (inputStream, outputStream):  New fields to save open streams.
11466         (getInputStream, getOutputStream):  Use already-opened streams.
11468 2002-02-22  Alexandre Oliva  <aoliva@redhat.com>
11470         * acinclude.m4 (LIB_AC_PROG_CXX): Copied from libstdc++-v3.
11471         Use it.
11472         * Makefile.am (LIBLINK): Use CXX (and its tag) for linking.
11473         * aclocal.m4, configure, Makefile.in: Rebuilt.
11475 2002-02-19  Tom Tromey  <tromey@redhat.com>
11477         Fix for PR libgcj/5696:
11478         * verify.cc (is_assignable_from_slow): Never call
11479         _Jv_IsAssignableFrom.
11480         (verify_instructions_0): Added new debug statement.
11481         (state::print): Print information about whether local has
11482         changed.
11483         (state::merge): Don't call note_variable when merging locals.
11484         (state::set_exception): Removed old FIXME comment.
11486 2002-02-18  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11488         * java/net/natPlainDatagramSocketImpl.cc (bind): Call setsockopt to
11489         enable SO_BROADCAST.
11491 2002-02-18  Jason Merrill  <jason@redhat.com>
11493         * name-finder.cc (toHex): Use word mode, not long long.
11495         * gnu/gcj/convert/natIconv.cc (write): Avoid sign-compare warning.
11497 2002-02-15  Tom Tromey  <tromey@redhat.com>
11499         Fix for PR libgcj/5695:
11500         * verify.cc (is_assignable_from_slow): Check to see if target is
11501         an Object before checking to see if source is an interface.
11502         (verify_instructions_0) [op_invokeinterface]: Handle case where
11503         we're making an interface call on Object.
11505 2002-02-15  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11507         * Makefile.in: Rebuilt with Eric's change below.
11509         * java/lang/natMath.cc (abs(jdouble), abs(jfloat), round(jfloat),
11510         round(jdouble), min(jfloat), max(jfloat), min(jdouble), min(jfloat)):
11511         Removed functions which are now implemented in Math.java.
11513 2002-02-14  Eric Blake  <ebb9@email.byu.edu>
11515         * gcj/javaprims.h (java::lang): Add java::lang::StrictMath.
11516         * Makefile.am (core_java_source_files): Add
11517         java/lang/StrictMath.java.
11518         * java/lang/Math.java: Merge with Classpath.
11519         * java/lang/StrictMath.java: New file - merge with Classpath.
11521 2002-02-14  Mark Wielaard  <mark@klomp.org>
11523         * java/math/BigInteger.java: import gnu.java.math.MPN not the whole
11524         package as a workaround for gcj 3.0.x
11526 2002-02-14  Mark Wielaard <mark@klomp.org>
11528         * java/security/BasicPermission.java: extends with fully qualified
11529         classname as workaround for gcj 3.0.4.
11531 2002-02-14  Eric Blake  <ebb9@email.byu.edu>
11533         * java/net/DatagramSocketImpl.java (setOption, getOption): Work
11534         around gcj bug of wrong emitted qualifier for inherited method.
11535         * java/net/SocketImpl.java (setOption, getOption): Ditto.
11536         * java/util/WeakHashMap.java (WeakEntrySet): Add non-private
11537         constructor to reduce amount of emitted bytecode. While this
11538         happens to work around a jikes 1.15 bug, it is still a useful
11539         patch even for correct compilers.
11540         * java/rmi/server/RMIClassLoader.java (MyClassLoader): Ditto.
11541         * gnu/java/rmi/server/UnicastRemoteCall.java
11542         (DummyObjectOutputStream, DummyObjectInputStream): Ditto.
11544 2002-02-14  Eric Blake  <ebb9@email.byu.edu>
11546         * java/net/DatagramSocketImpl.java: Reformat (no code changes).
11547         * java/net/SocketImpl.java: Ditto.
11548         * java/rmi/server/RMIClassLoader.java: Ditto.
11549         * gnu/java/rmi/server/UnicastRemoteCall.java: Ditto.
11551 2002-02-14  Mark Wielaard <mark@klomp.org>
11553         Thanks to Takashi Okamoto
11554         * java/util/Arrays.java (ArrayList.indexOf()): this.equals().
11555         * java/util/Arrays.java (ArrayList.lastIndexOf()): Likewise.
11556         * java/util/WeakHashMap.java (WeakEntry.getEntry()): this.get().
11558 2002-02-13  Todd Stock  <toddastock@yahoo.com>
11560         Fix for PR libgcj/5670:
11561         * verify.cc (is_assignable_from_slow): If `source' is interface,
11562         recursively look for merge with `target'.
11564 2002-02-14  Martin Kahlert  <martin.kahlert@infineon.com>
11566         * include/jni.h: Fix typo.
11568 2002-02-13  Martin Kahlert  <martin.kahlert@infineon.com>
11570         * jni.cc (_Jv_JNI_AttachCurrentThread): env->locals assigned
11571         correctly.
11573 2002-02-13  Todd Stock  <toddastock@yahoo.com>
11575         Fix for PR libgcj/5671:
11576         * verify.cc (state::merge): Handle case where we're merging
11577         against an interface.
11579 2002-02-12  Tom Tromey  <tromey@redhat.com>
11581         * exception.cc (std::abort): Mark as noreturn.
11583 2002-02-12  Adam Megacz <adam@xwt.org>
11585         * java/lang/Win32Process.java: Filled in a placeholder
11586         implementation so Win32 will build.
11588 2002-02-12  Adam Megacz <adam@xwt.org>
11590         * java/io/natFilePosix.cc: Copied this from natFile.cc.
11591         * java/io/natFile.cc: Removed from repository.
11592         * configure.in: Added AC_LINK_FILES for natFile${PLATFORM}.
11594 2002-02-12  Adam Megacz <adam@xwt.org>
11596         * win32.cc: Added two #includes to make win32.cc compile.
11598 2002-02-12  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11600         * boehm.cc (initialized, obj_kind_x, obj_free_list): Removed unused
11601         declarations.
11602         (_Jv_InitGC): Don't bother locking, as this is always called from a
11603         single-thread. Turn off GC_all_interior_pointers. Remove dead code.
11605 2002-02-11  Adam Megacz <adam@xwt.org>
11607         * include/win32.h: Added _Jv_platform_gettimeofday.
11608         * win32.cc (_Jv_platform_gettimeofday): Added dummy function.
11610 2002-02-11  Adam Megacz <adam@xwt.org>
11612         * java/io/natFileWin32.cc, java/io/natFileDescriptorWin32.cc:
11613         Added #undef STRICT to make windows.h and
11614         java/lang/reflect/Modifier.h cooperate.
11616 2002-02-11  Adam Megacz <adam@xwt.org>
11618         * java/io/natFileWin32.cc: Created a placeholder class with lots
11619         of FIXMEs.
11621 2002-02-11  Adam Megacz <adam@xwt.org>
11623         * exception.cc (_Jv_Throw, PERSONALITY_FUNCTION): Changed
11624         std::abort() to simply abort(). Also added "fake" std::abort() so
11625         we can #include unwind-pe.h without having to link against
11626         libstdc++-v3.
11628 2002-02-10  Andreas Tobler  <toa@pop.agri.ch>
11630         * interpret.cc (continue1) [insn_f2l]: Use PUSHL, not PUSHI.
11632 2002-02-08  Tom Tromey  <tromey@redhat.com>
11634         * interpret.cc (convert): New function.
11635         (continue1) [insn_d2i, insn_d2l, insn_f2i, insn_f2l]: Use
11636         convert.
11637         Include Long.h.
11639 2002-02-08  Anthony Green  <green@redhat.com>
11641         * configure.host: Add support for xscale-elf embedded target.
11643 2002-02-08  Martin Kahlert  <martin.kahlert@infineon.com>
11645         * jni.cc (_Jv_JNI_NewLocalRef): Make sure, that NULL frame is not
11646         dereferenced.
11647         (_Jv_JNI_AttachCurrentThread): Produce full featured env->locals
11648         frame.
11650 2002-02-07  Tom Tromey  <tromey@redhat.com>
11652         * java/io/natFile.cc (_access): Use __builtin_alloca.
11653         (_stat): Likewise.
11654         (attr): Likewise.
11655         (getCanonicalPath): Likewise.
11656         (performList): Likewise.
11657         (performMkdir): Likewise.
11658         (performSetReadOnly): Likewise.
11659         (performRenameTo): Likewise.
11660         (performSetLastModified): Likewise.
11661         (performCreate): Likewise.
11662         (performDelete): Likewise.
11664 2002-02-08  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11666         * HACKING: Fix URL for the automake-gcj.
11668 2002-02-07  Tom Tromey  <tromey@redhat.com>
11670         * java/lang/natThrowable.cc: Updated copyright.
11671         * java/io/natFileWin32.cc: Updated copyright.
11672         * java/io/natFileDescriptorWin32.cc: Updated copyright.
11673         * win32-threads.cc: Updated copyright.
11674         * name-finder.cc: Updated copyright.
11675         * include/name-finder.h: Updated copyright.
11677         * include/name-finder.h: Conditionally include sys/wait.h.
11678         * include/config.h.in: Rebuilt.
11680         * java/io/natFile.cc (_access): Don't stack-allocate buffer.
11681         Size buffer based on real size of string.
11682         (_stat): Likewise.
11683         (attr): Likewise.
11684         (getCanonicalPath): Likewise.
11685         (performList): Likewise.
11686         (performMkdir): Likewise.
11687         (performSetReadOnly): Likewise.
11688         (unixroot): Removed.
11689         (performRenameTo): Likewise.
11690         (performSetLastModified): Likewise.
11691         (performCreate): Likewise.
11692         (performDelete): Likewise.
11693         (performListRoots): Always return new array.
11695         * prims.cc (_Jv_CreateJavaVM): Call _Jv_platform_initialize.
11696         * win32.cc (win32_exception_handler): Now static.
11697         * include/win32.h (_Jv_platform_initialize): Declare.
11698         (win32_exception_handler): Don't declare.
11699         * java/lang/natSystem.cc (currentTimeMillis): Use
11700         _Jv_platform_gettimeofday.
11701         * posix.cc (_Jv_platform_gettimeofday): Renamed.
11702         (_Jv_select): Use new name.
11703         (_Jv_platform_initialize): New function.
11704         * include/posix.h (_Jv_platform_gettimeofday): Renamed from
11705         _Jv_gettimeofday.
11706         (_Jv_platform_initialize): Declare.
11708         * configure: Rebuilt.
11709         * configure.in: Removed unnecessary parens.
11711 2002-02-06  Adam Megacz <adam@xwt.org>
11713        * configure.in: Changed mingw) to *mingw*).
11714        * win32.cc: Created this file.
11715        * win32.h: Created this file.
11716        * win32.cc, prims.cc, win32.h (win32_exception_handler): Moved
11717        win32_exception_handler from prims.cc to win32.cc, added
11718        header in win32.h.
11719        * prims.cc: removed some #ifdef-WIN32'd headers which are no
11720        longer needed now that we have platform.h
11722 2002-02-06  Adam Megacz <adam@xwt.org>
11724         * gnu/gcj/io/shs.h, gnu/gcj/io/shs.cc, gnu/gcj/io/natSimpleSHSStream.cc:
11725         use uint<n>_t instead of LONG and BYTE
11727 2002-02-06  Adam Megacz <adam@xwt.org>
11729         * name-finder.h: don't #include sys/wait.h unless HAVE_SYS_WAIT_H
11731 2002-02-06  Anthony Green  <green@redhat.com>
11733         * java/net/natPlainSocketImpl.cc: Fix DISABLE_JAVA_NET targets.
11734         Implement missing method stubs.
11735         java/net/natPlainDatagramSocketImpl.cc: Fix DISABLE_JAVA_NET
11736         targets.
11737         * java/lang/natSystem.cc (getSystemTimeZone): Some targets have no
11738         concept of timezones.
11739         (init_properties): Don't refer to _Jv_Environment_Properties
11740         when this feature is not available.
11741         * include/config.h.in: Rebuilt.
11742         * acconfig.h: Add DISABLE_MAIN_ARGS.
11743         * prims.cc (_Jv_RunMain): Use DISABLE_MAIN_ARGS.
11744         * configure: Rebuilt.
11745         * configure.in: Add --disable-main-args option.  Test for
11746           opendir function.  Replace AC_CHECK_SIZEOF with
11747           AC_COMPILE_CHECK_SIZEOF.
11748         * java/io/natFile.cc (performList): Check HAVE_OPENDIR.
11749         * aclocal.m4: Rebuilt.
11750         * acinclude.m4: Add AC_COMPILE_CHECK_SIZEOF.
11752 2002-02-06  Tom Tromey  <tromey@redhat.com>
11754         * verify.cc (require_array_type): If argument is a null array of
11755         references, return null as the element type.
11757 2002-02-06  Mark Wielaard  <mark@klomp.org>
11759         * verify.cc (verify_instructions_0) [op_dup2]: Actually push the
11760         duplicate of a wide type.
11762 2002-02-06  Tom Tromey  <tromey@redhat.com>
11764         * verify.cc (type::isnull): New method.
11765         (require_array_type): Handle case where array is null.
11766         (verify_instructions_0) [op_arraylength]: Likewise.
11768 2002-02-05  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11770         * configure.in: Set up PLATFORMOBJS not PLATFORM_SPECIFIC_SOURCES.
11771         Symlink PLATFORMH to platform.h.
11772         * Makefile.am (libgcj_la_DEPENDENCIES, libgcj_la_LIBADD): Add
11773         PLATFORMOBJS.
11774         * java/lang/natSystem.cc: #include platform.h not posix.h.
11775         * Makefile.in: Rebuilt with libgcj automake.
11776         * configure: Rebuilt.
11778 2002-02-05  Richard Henderson  <rth@redhat.com>
11780         * Makefile.in: Undo munging last change.
11782 2002-02-04  Adam Megacz <adam@xwt.org>
11784         * win32.cc: Created it.
11785         * configure.in: Added PLATFORM_SPECIFIC_SOURCES,
11786         which is set to posix.cc or win32.cc.
11787         * Makefile.am: Updated it to use $(PLATFORM_SPECIFIC_SOURCES).
11789 2002-02-04  Adam Megacz <adam@xwt.org>
11791         * configure.in: Corrected mingw case branches; added * before
11792         and after.
11794 2002-02-04  Adam Megacz <adam@xwt.org>
11796         * configure.in: Add -lgdi32 -lwsock32 -lws2_32 to libgcj.spec
11797         if compiling for win32
11799 2002-02-04  Adam Megacz <adam@xwt.org>
11801         * win32-threads.cc: #undef STRICT after gc.h inclusion
11803 2002-02-02  Tom Tromey  <tromey@redhat.com>
11805         * Makefile.in: Rebuilt.
11807 2002-02-02  Jason Merrill  <jason@redhat.com>
11809         * Makefile.am (clean-nat): New target.
11811 2002-02-02  Tom Tromey  <tromey@redhat.com>
11813         * java/io/natFile.cc: Removed old "FIXME" comments.
11815 2002-02-01  Tom Tromey  <tromey@redhat.com>
11817         * java/lang/natPosixProcess.cc (myclose): New function.
11818         (fail): Use it.
11819         (startProcess): Likewise.
11821 2002-02-01  Adam Megacz <adam@xwt.org>
11823         * prims.cc: Added #undef STRICT after #include<windows.h>.
11825 2002-02-01  Adam Megacz <adam@xwt.org>
11827         * prims.cc
11828         (_Jv_CreateJavaVM): We now use WIN32 instead of
11829         USE_WIN32_SIGNALLING and USE_WINSOCK.
11830         (win32_exception_handler): Now throws an exception out of
11831         the signal handler; assumes SJLJ.
11833 2002-02-01  Adam Megacz <adam@xwt.org>
11835         * win32-threads.cc:
11836         (_Jv_CondWait, _Jv_CondNotify, _Jv_CondNotifyAll): Corrected
11837         wait() algorithm to make it safe.
11838         (ensure_condvar_initialized, _Jv_CondInit, _Jv_CondDestroy):
11839         Added lazy creation of Win32 Events for better performance
11840         (really_start): This now uses GC_CreateThread so boehm-gc
11841         knows about new threads even when statically linked.
11843 2002-02-01  Adam Megacz <adam@xwt.org>
11845         * include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
11846         enable safer wait() algorithm.
11847         (_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
11848         _Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
11849         (_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
11850         _Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
11851         instead of mutex.
11852         (_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
11854 2002-02-01  Adam Megacz <adam@xwt.org>
11856         * configure.in: Added support for mingw.
11857         * java/lang/Win32Process.java: Created as empty file.
11858         * java/lang/natWin32Process.cc: Created as empty file.
11860 2002-02-01  Craig Rodrigues  <rodrigc@gcc.gnu.org>
11862         PR java/4972
11863         * aclocal.m4, acinclude.m4 (AM_ICONV): Put linking flags
11864         for libiconv in LIBICONV variable.
11865         * configure: Regenerated.
11867 2002-01-31  Tom Tromey  <tromey@redhat.com>
11869         * verify.cc (state::enter_subroutine): New method.
11870         (handle_jsr_insn): Use it.
11871         (state::merge): When processing a `ret', correctly use
11872         subroutine's state to determine which local variables have
11873         changed.
11874         (push_exception_jump): Don't let stack overflow.
11876 2002-01-31  Joseph S. Myers  <jsm28@cam.ac.uk>
11878         * gnu/gcj/convert/Convert.java: Only include one copyright year in
11879         --version output.
11881 2002-01-30  Tom Tromey  <tromey@redhat.com>
11883         * java/net/natPlainSocketImpl.cc (_Jv_recv): Added template
11884         parameter for `recv' return type.
11886         * verify.cc (handle_ret_insn): Check for subroutine merge here...
11887         (state::merge): ... not here.
11888         (subr_entry_info): New structure.
11889         (entry_points): New field.
11890         (~_Jv_BytecodeVerifier): Correctly free jsr_ptrs.  Free
11891         entry_points.
11893 2002-01-29  Tom Tromey  <tromey@redhat.com>
11895         * java/awt/List.java (addNotify): Correctly check to see if peer
11896         does not exist.
11898         * java/awt/GridLayout.java (layoutContainer): Use number of rows
11899         to compute height of each cell, and number of columns to compute
11900         width of each cell.
11901         * java/awt/Window.java (getOwnedWindows): Don't return null.
11902         * java/awt/FlowLayout.java (layoutContainer): Set width and height
11903         of component.  Increment x using horizontal gap, not vertical
11904         gap.
11906 2002-01-28  Tom Tromey  <tromey@redhat.com>
11908         * verify.cc (class _Jv_BytecodeVerifier) [op_invokeinterface]:
11909         `nargs' byte is number of words, not number of arguments.
11911 2002-01-27  Tom Tromey  <tromey@redhat.com>
11913         * java/awt/event/MouseEvent.java (modifiers): Removed field.
11914         (when): Likewise.
11915         * java/awt/event/InputEvent.java (modifiers, when): Now
11916         package-private.
11918         * verify.cc (class _Jv_BytecodeVerifier): Removed `FIXME' comment
11919         and to-do list.
11920         (state::merge): Use current class' class loader.
11921         (state::print): Print subroutine.
11922         (state::merge): Don't look at subroutine of unmerged `ret'.
11924 2002-01-26 Andreas Tobler <a.tobler@schweiz.ch>
11926         * nogc.cc: Remove warnings.
11927         (_Jv_GCRegisterDisappearingLink, _Jv_GCCanReclaimSoftReference):
11928         New functions.
11930 2002-01-25  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11932         * java/awt/image/MemoryImageSource.java (newPixels(byte[], ColorModel,
11933         int, int):  Remove empty "if" statement to work around compiler bug.
11934         (newPixels(int[], ColorModel, int, int): Likewise.
11936 2002-01-25  Per Bothner  <per@bothner.com>
11938         * verify.cc (verify_fail):  Change from being a top-level function
11939         to e method of _Jv_BytecodeVerifier.  Emit current method name.
11940         Pass the current verifier to type: and state: methods as needed,
11941         for better error messages, and for resolve.
11942         (resolve):  Pass current class's loader for Class.forName and
11943         _Jv_FindClassFromSignature, rather than using the default loader.
11944         (various type: and state: methods):  Take _Jv_BytecodeVerifier* arg.
11945         (get_type_val_for_signature):  Make non-static.
11946         (various methods):  Pass start_PC implicitly, not explicitly.
11948 2002-01-25  Tom Tromey  <tromey@redhat.com>
11950         * java/awt/FlowLayout.java (layoutContainer): Correctly compute
11951         loop termination condition.
11952         * java/awt/GridLayout.java (getSize): Use `real_cols' to compute
11953         width.
11955 2002-01-24  Tom Tromey  <tromey@redhat.com>
11957         * java/awt/Shape.java: Merged with Classpath.
11958         * java/awt/Scrollbar.java: Merged with Classpath.
11960         * java/awt/Container.java (addNotify): Unconditionally call
11961         addNotifyContainerChildren and superclass addNotify.
11963         * java/awt/image/ColorModel.java (getAlpha(Object)): Call
11964         getAlpha, not getBlue.
11966 2002-01-25  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
11968         * java/lang/natObject.cc (X86 compare_and_swap): Use +m constraint.
11970         * java/awt/image/PixelGrabber.java (grabPixels()): Call grabPixels(0).
11971         (grabPixels(long)): Wait to be notified that the ImageProducer has
11972         completed.
11974 2002-01-24  Per Bothner  <per@bothner.com>
11976         * verify.cc (is_assignable_from_slow): If target is an interface,
11977         we must still check the source's superclass before giving up.
11979 2002-01-24  Tom Tromey  <tromey@redhat.com>
11981         * gnu/awt/xlib/XToolkit.java (getPrintJob): New stub method.
11983 2002-01-23  Tom Tromey  <tromey@redhat.com>
11985         * java/awt/BorderLayout.java (addLayoutComponent): Added missing
11986         `else'.
11988         * Makefile.in: Rebuilt.
11989         * Makefile.am (awt_java_source_files): Added new files.
11990         * java/awt/Toolkit.java: Merged with Classpath.
11991         * java/awt/PrintGraphics.java: New file from Classpath.
11992         * java/awt/PrintJob.java: New file from Classpath.
11993         * java/awt/datatransfer/Clipboard.java: New file from Classpath.
11994         * java/awt/datatransfer/ClipboardOwner.java: New file from
11995         Classpath.
11996         * java/awt/datatransfer/DataFlavor.java: New file from Classpath.
11997         * java/awt/datatransfer/FlavorMap.java: New file from Classpath.
11998         * java/awt/datatransfer/MimeTypeParseException.java: New file from
11999         Classpath.
12000         * java/awt/datatransfer/StringSelection.java: New file from
12001         Classpath.
12002         * java/awt/datatransfer/SystemFlavorMap.java: New file from
12003         Classpath.
12004         * java/awt/datatransfer/Transferable.java: New file from
12005         Classpath.
12006         * java/awt/datatransfer/UnsupportedFlavorException.java: New file
12007         from Classpath.
12009         * Makefile.in: Rebuilt.
12010         * Makefile.am (awt_java_source_files): Added new files.
12011         * java/awt/image/AreaAveragingScaleFilter.java: New file from
12012         Classpath.
12013         * java/awt/image/CropImageFilter.java: New file from Classpath.
12014         * java/awt/image/FilteredImageSource.java: New file from
12015         Classpath.
12016         * java/awt/image/ImageFilter.java: New file from Classpath.
12017         * java/awt/image/MemoryImageSource.java: New file from Classpath.
12018         * java/awt/image/PixelGrabber.java: New file from Classpath.
12019         * java/awt/image/RGBImageFilter.java: New file from Classpath.
12020         * java/awt/image/ReplicateScaleFilter.java: New file from
12021         Classpath.
12022         * java/awt/image/ImageProducer.java: Replaced with Classpath
12023         version.
12024         * java/awt/image/ImageObserver.java: Replaced with Classpath
12025         version.
12026         * java/awt/image/ImageConsumer.java: Replaced with Classpath
12027         version.
12028         * java/awt/GridBagConstraints.java (clone): Catch
12029         CloneNotSupportedException.
12031 2002-01-23  Per Bothner  <per@bothner.com>
12033         * java/lang/reflect/natField.cc (setAddr):  New function.
12034         Calls getAddr and then checks that the field isn't final.
12035         (setBoolean. setChar, setByte, setShort, setInt, setLong, setFloat,
12036         setDouble, set):  Use setAddr instead of getAddr, to check for FINAL.
12037         (set):  Call setAddr before check that new value has right type,
12038         to better match specified semantics.
12040 2002-01-22  Tom Tromey  <tromey@redhat.com>
12042         * java/awt/TextField.java: Replaced with Classpath version.
12043         * java/awt/TextArea.java: Replaced with Classpath version.
12044         * java/awt/TextComponent.java: Replaced with Classpath version.
12046         * java/awt/GridBagConstraints.java: Updated copyright.
12048 2002-01-22  Mark Wielaard <mark@klomp.org>
12050         * java/awt/Adjustable.java java/awt/CheckboxMenuItem.java
12051         java/awt/Choice.java java/awt/Color.java java/awt/Cursor.java
12052         java/awt/Dialog.java java/awt/FileDialog.java
12053         java/awt/Font.java java/awt/FontMetrics.java
12054         java/awt/Image.java java/awt/ImageMediaEntry.java
12055         java/awt/Insets.java java/awt/List.java
12056         java/awt/MediaEntry.java java/awt/MediaTracker.java
12057         java/awt/Menu.java java/awt/MenuBar.java
12058         java/awt/MenuContainer.java java/awt/MenuShortcut.java
12059         java/awt/PaintContext.java java/awt/Panel.java
12060         java/awt/PopupMenu.java java/awt/SystemColor.java
12061         java/awt/peer/ButtonPeer.java java/awt/peer/CanvasPeer.java
12062         java/awt/peer/CheckboxMenuItemPeer.java
12063         java/awt/peer/CheckboxPeer.java java/awt/peer/ChoicePeer.java
12064         java/awt/peer/ComponentPeer.java
12065         java/awt/peer/ContainerPeer.java java/awt/peer/DialogPeer.java
12066         java/awt/peer/FileDialogPeer.java java/awt/peer/FontPeer.java
12067         java/awt/peer/FramePeer.java java/awt/peer/LabelPeer.java
12068         java/awt/peer/LightweightPeer.java java/awt/peer/ListPeer.java
12069         java/awt/peer/MenuBarPeer.java
12070         java/awt/peer/MenuComponentPeer.java
12071         java/awt/peer/MenuItemPeer.java java/awt/peer/MenuPeer.java
12072         java/awt/peer/PanelPeer.java java/awt/peer/PopupMenuPeer.java
12073         java/awt/peer/ScrollPanePeer.java
12074         java/awt/peer/ScrollbarPeer.java
12075         java/awt/peer/TextAreaPeer.java
12076         java/awt/peer/TextComponentPeer.java
12077         java/awt/peer/TextFieldPeer.java
12078         java/awt/peer/WindowPeer.java: Add license clarification.
12080 2002-01-22  Mark Wielaard <mark@klomp.org>
12082         * LIBGCJ_LICENSE gnu/classpath/Configuration.java.in
12083         gnu/gcj/runtime/StringBuffer.java
12084         gnu/java/awt/BitMaskExtent.java gnu/java/awt/Buffers.java
12085         gnu/java/awt/ComponentDataBlitOp.java
12086         gnu/java/awt/GLightweightPeer.java
12087         gnu/java/beans/BeanInfoEmbryo.java
12088         gnu/java/beans/EmptyBeanInfo.java
12089         gnu/java/beans/ExplicitBeanInfo.java
12090         gnu/java/beans/IntrospectionIncubator.java
12091         gnu/java/beans/editors/ColorEditor.java
12092         gnu/java/beans/editors/FontEditor.java
12093         gnu/java/beans/editors/NativeBooleanEditor.java
12094         gnu/java/beans/editors/NativeByteEditor.java
12095         gnu/java/beans/editors/NativeDoubleEditor.java
12096         gnu/java/beans/editors/NativeFloatEditor.java
12097         gnu/java/beans/editors/NativeIntEditor.java
12098         gnu/java/beans/editors/NativeLongEditor.java
12099         gnu/java/beans/editors/NativeShortEditor.java
12100         gnu/java/beans/editors/StringEditor.java
12101         gnu/java/beans/info/ComponentBeanInfo.java
12102         gnu/java/io/ClassLoaderObjectInputStream.java
12103         gnu/java/io/NullOutputStream.java
12104         gnu/java/io/ObjectIdentityWrapper.java
12105         gnu/java/lang/ArrayHelper.java gnu/java/lang/ClassHelper.java
12106         gnu/java/lang/reflect/TypeSignature.java
12107         gnu/java/locale/Calendar.java gnu/java/locale/Calendar_de.java
12108         gnu/java/locale/Calendar_en.java
12109         gnu/java/locale/Calendar_nl.java
12110         gnu/java/locale/LocaleInformation.java
12111         gnu/java/locale/LocaleInformation_de.java
12112         gnu/java/locale/LocaleInformation_en.java
12113         gnu/java/locale/LocaleInformation_nl.java
12114         gnu/java/math/MPN.java gnu/java/rmi/dgc/DGCImpl.java
12115         gnu/java/rmi/registry/RegistryImpl.java
12116         gnu/java/rmi/rmic/Compile_gcj.java
12117         gnu/java/rmi/rmic/Compiler.java
12118         gnu/java/rmi/rmic/CompilerProcess.java
12119         gnu/java/rmi/rmic/RMIC.java
12120         gnu/java/rmi/rmic/TabbedWriter.java
12121         gnu/java/rmi/server/ProtocolConstants.java
12122         gnu/java/rmi/server/RMIDefaultSocketFactory.java
12123         gnu/java/rmi/server/RMIHashes.java
12124         gnu/java/rmi/server/RMIObjectInputStream.java
12125         gnu/java/rmi/server/RMIObjectOutputStream.java
12126         gnu/java/rmi/server/UnicastConnection.java
12127         gnu/java/rmi/server/UnicastConnectionManager.java
12128         gnu/java/rmi/server/UnicastRef.java
12129         gnu/java/rmi/server/UnicastRemoteCall.java
12130         gnu/java/rmi/server/UnicastRemoteStub.java
12131         gnu/java/rmi/server/UnicastServer.java
12132         gnu/java/rmi/server/UnicastServerRef.java
12133         gnu/java/security/provider/DefaultPolicy.java
12134         gnu/java/security/provider/Gnu.java
12135         gnu/java/security/provider/SHA.java
12136         gnu/java/security/provider/SHA1PRNG.java
12137         gnu/java/text/BaseBreakIterator.java
12138         gnu/java/text/CharacterBreakIterator.java
12139         gnu/java/text/LineBreakIterator.java
12140         gnu/java/text/SentenceBreakIterator.java
12141         gnu/java/text/WordBreakIterator.java
12142         gnu/java/util/DoubleEnumeration.java java/applet/Applet.java
12143         java/applet/AppletContext.java java/applet/AppletStub.java
12144         java/applet/AudioClip.java java/awt/AWTError.java
12145         java/awt/AWTEvent.java java/awt/AWTEventMulticaster.java
12146         java/awt/AWTException.java java/awt/AWTPermission.java
12147         java/awt/ActiveEvent.java java/awt/BorderLayout.java
12148         java/awt/Button.java java/awt/Canvas.java
12149         java/awt/CardLayout.java java/awt/Checkbox.java
12150         java/awt/CheckboxGroup.java java/awt/Component.java
12151         java/awt/ComponentOrientation.java java/awt/Container.java
12152         java/awt/Dimension.java java/awt/Event.java
12153         java/awt/EventDispatchThread.java java/awt/EventQueue.java
12154         java/awt/FlowLayout.java java/awt/Frame.java
12155         java/awt/Graphics.java java/awt/Graphics2D.java
12156         java/awt/GraphicsConfiguration.java java/awt/GridLayout.java
12157         java/awt/IllegalComponentStateException.java
12158         java/awt/ItemSelectable.java java/awt/Label.java
12159         java/awt/LayoutManager.java java/awt/LayoutManager2.java
12160         java/awt/MenuComponent.java java/awt/MenuItem.java
12161         java/awt/Paint.java java/awt/Point.java
12162         java/awt/Rectangle.java java/awt/RenderingHints.java
12163         java/awt/Transparency.java java/awt/Window.java
12164         java/awt/color/ColorSpace.java
12165         java/awt/color/ICC_ColorSpace.java
12166         java/awt/color/ICC_Profile.java
12167         java/awt/event/HierarchyBoundsAdapter.java
12168         java/awt/event/HierarchyBoundsListener.java
12169         java/awt/event/HierarchyEvent.java
12170         java/awt/event/HierarchyListener.java
12171         java/awt/geom/AffineTransform.java
12172         java/awt/geom/Dimension2D.java java/awt/geom/Ellipse2D.java
12173         java/awt/geom/IllegalPathStateException.java
12174         java/awt/geom/Line2D.java
12175         java/awt/geom/NoninvertibleTransformException.java
12176         java/awt/geom/PathIterator.java java/awt/geom/Point2D.java
12177         java/awt/geom/Rectangle2D.java
12178         java/awt/geom/RectangularShape.java
12179         java/awt/geom/RoundRectangle2D.java
12180         java/awt/image/BufferedImage.java
12181         java/awt/image/ColorModel.java
12182         java/awt/image/ComponentColorModel.java
12183         java/awt/image/ComponentSampleModel.java
12184         java/awt/image/DataBuffer.java
12185         java/awt/image/DataBufferByte.java
12186         java/awt/image/DataBufferInt.java
12187         java/awt/image/DataBufferUShort.java
12188         java/awt/image/DirectColorModel.java
12189         java/awt/image/PackedColorModel.java
12190         java/awt/image/Raster.java java/awt/image/RasterOp.java
12191         java/awt/image/SampleModel.java
12192         java/awt/image/SinglePixelPackedSampleModel.java
12193         java/awt/image/WritableRaster.java
12194         java/beans/AppletInitializer.java
12195         java/beans/BeanDescriptor.java java/beans/BeanInfo.java
12196         java/beans/Beans.java java/beans/Customizer.java
12197         java/beans/DesignMode.java java/beans/EventSetDescriptor.java
12198         java/beans/FeatureDescriptor.java
12199         java/beans/IndexedPropertyDescriptor.java
12200         java/beans/IntrospectionException.java
12201         java/beans/Introspector.java java/beans/MethodDescriptor.java
12202         java/beans/ParameterDescriptor.java
12203         java/beans/PropertyChangeEvent.java
12204         java/beans/PropertyChangeListener.java
12205         java/beans/PropertyChangeSupport.java
12206         java/beans/PropertyDescriptor.java
12207         java/beans/PropertyEditor.java
12208         java/beans/PropertyEditorManager.java
12209         java/beans/PropertyEditorSupport.java
12210         java/beans/PropertyVetoException.java
12211         java/beans/SimpleBeanInfo.java
12212         java/beans/VetoableChangeListener.java
12213         java/beans/VetoableChangeSupport.java
12214         java/beans/Visibility.java
12215         java/beans/beancontext/BeanContext.java
12216         java/beans/beancontext/BeanContextChild.java
12217         java/beans/beancontext/BeanContextChildComponentProxy.java
12218         java/beans/beancontext/BeanContextChildSupport.java
12219         java/beans/beancontext/BeanContextContainerProxy.java
12220         java/beans/beancontext/BeanContextEvent.java
12221         java/beans/beancontext/BeanContextMembershipEvent.java
12222         java/beans/beancontext/BeanContextMembershipListener.java
12223         java/beans/beancontext/BeanContextProxy.java
12224         java/beans/beancontext/BeanContextServiceAvailableEvent.java
12225         java/beans/beancontext/BeanContextServiceProvider.java
12226         java/beans/beancontext/BeanContextServiceProviderBeanInfo.java
12227         java/beans/beancontext/BeanContextServiceRevokedEvent.java
12228         java/beans/beancontext/BeanContextServiceRevokedListener.java
12229         java/beans/beancontext/BeanContextServices.java
12230         java/beans/beancontext/BeanContextServicesListener.java
12231         java/io/BufferedInputStream.java
12232         java/io/BufferedOutputStream.java java/io/BufferedReader.java
12233         java/io/BufferedWriter.java java/io/ByteArrayInputStream.java
12234         java/io/ByteArrayOutputStream.java
12235         java/io/CharArrayReader.java java/io/CharArrayWriter.java
12236         java/io/CharConversionException.java java/io/DataInput.java
12237         java/io/DataInputStream.java java/io/DataOutput.java
12238         java/io/EOFException.java java/io/Externalizable.java
12239         java/io/FileFilter.java java/io/FileNotFoundException.java
12240         java/io/FilePermission.java java/io/FileReader.java
12241         java/io/FileWriter.java java/io/FilenameFilter.java
12242         java/io/FilterInputStream.java java/io/FilterOutputStream.java
12243         java/io/FilterReader.java java/io/FilterWriter.java
12244         java/io/IOException.java java/io/InputStream.java
12245         java/io/InterruptedIOException.java
12246         java/io/InvalidClassException.java
12247         java/io/InvalidObjectException.java
12248         java/io/NotActiveException.java
12249         java/io/NotSerializableException.java java/io/ObjectInput.java
12250         java/io/ObjectInputStream.java
12251         java/io/ObjectInputValidation.java java/io/ObjectOutput.java
12252         java/io/ObjectOutputStream.java java/io/ObjectStreamClass.java
12253         java/io/ObjectStreamConstants.java
12254         java/io/ObjectStreamException.java
12255         java/io/ObjectStreamField.java
12256         java/io/OptionalDataException.java java/io/OutputStream.java
12257         java/io/PipedInputStream.java java/io/PipedOutputStream.java
12258         java/io/PipedReader.java java/io/PipedWriter.java
12259         java/io/PrintWriter.java java/io/PushbackInputStream.java
12260         java/io/PushbackReader.java java/io/Reader.java
12261         java/io/SequenceInputStream.java java/io/Serializable.java
12262         java/io/SerializablePermission.java
12263         java/io/StreamCorruptedException.java
12264         java/io/StreamTokenizer.java
12265         java/io/StringBufferInputStream.java java/io/StringReader.java
12266         java/io/StringWriter.java java/io/SyncFailedException.java
12267         java/io/UTFDataFormatException.java
12268         java/io/UnsupportedEncodingException.java
12269         java/io/WriteAbortedException.java java/io/Writer.java
12270         java/lang/AbstractMethodError.java
12271         java/lang/ArithmeticException.java
12272         java/lang/ArrayIndexOutOfBoundsException.java
12273         java/lang/ArrayStoreException.java java/lang/Boolean.java
12274         java/lang/Byte.java java/lang/CharSequence.java
12275         java/lang/ClassCastException.java
12276         java/lang/ClassCircularityError.java
12277         java/lang/ClassFormatError.java
12278         java/lang/ClassNotFoundException.java
12279         java/lang/CloneNotSupportedException.java
12280         java/lang/Cloneable.java java/lang/Comparable.java
12281         java/lang/Compiler.java java/lang/Double.java
12282         java/lang/Error.java java/lang/Exception.java
12283         java/lang/ExceptionInInitializerError.java
12284         java/lang/Float.java java/lang/IllegalAccessError.java
12285         java/lang/IllegalAccessException.java
12286         java/lang/IllegalArgumentException.java
12287         java/lang/IllegalMonitorStateException.java
12288         java/lang/IllegalStateException.java
12289         java/lang/IllegalThreadStateException.java
12290         java/lang/IncompatibleClassChangeError.java
12291         java/lang/IndexOutOfBoundsException.java
12292         java/lang/InheritableThreadLocal.java
12293         java/lang/InstantiationError.java
12294         java/lang/InstantiationException.java java/lang/Integer.java
12295         java/lang/InternalError.java
12296         java/lang/InterruptedException.java
12297         java/lang/LinkageError.java java/lang/Long.java
12298         java/lang/NegativeArraySizeException.java
12299         java/lang/NoClassDefFoundError.java
12300         java/lang/NoSuchFieldError.java
12301         java/lang/NoSuchFieldException.java
12302         java/lang/NoSuchMethodError.java
12303         java/lang/NoSuchMethodException.java
12304         java/lang/NullPointerException.java java/lang/Number.java
12305         java/lang/NumberFormatException.java
12306         java/lang/OutOfMemoryError.java java/lang/Package.java
12307         java/lang/Process.java java/lang/Runnable.java
12308         java/lang/RuntimeException.java
12309         java/lang/RuntimePermission.java
12310         java/lang/SecurityException.java
12311         java/lang/SecurityManager.java java/lang/Short.java
12312         java/lang/StackOverflowError.java java/lang/StringBuffer.java
12313         java/lang/StringIndexOutOfBoundsException.java
12314         java/lang/ThreadDeath.java java/lang/ThreadGroup.java
12315         java/lang/ThreadLocal.java java/lang/UnknownError.java
12316         java/lang/UnsatisfiedLinkError.java
12317         java/lang/UnsupportedClassVersionError.java
12318         java/lang/UnsupportedOperationException.java
12319         java/lang/VerifyError.java java/lang/VirtualMachineError.java
12320         java/lang/Void.java java/lang/ref/PhantomReference.java
12321         java/lang/ref/Reference.java java/lang/ref/ReferenceQueue.java
12322         java/lang/ref/SoftReference.java
12323         java/lang/ref/WeakReference.java
12324         java/lang/reflect/AccessibleObject.java
12325         java/lang/reflect/InvocationTargetException.java
12326         java/lang/reflect/Member.java java/lang/reflect/Modifier.java
12327         java/lang/reflect/ReflectPermission.java
12328         java/math/BigDecimal.java java/math/BigInteger.java
12329         java/net/Authenticator.java java/net/BindException.java
12330         java/net/ConnectException.java java/net/ContentHandler.java
12331         java/net/ContentHandlerFactory.java
12332         java/net/DatagramPacket.java java/net/DatagramSocketImpl.java
12333         java/net/FileNameMap.java java/net/MalformedURLException.java
12334         java/net/MulticastSocket.java java/net/NetPermission.java
12335         java/net/NoRouteToHostException.java
12336         java/net/PasswordAuthentication.java
12337         java/net/ProtocolException.java java/net/ServerSocket.java
12338         java/net/Socket.java java/net/SocketException.java
12339         java/net/SocketImpl.java java/net/SocketImplFactory.java
12340         java/net/SocketOptions.java java/net/SocketPermission.java
12341         java/net/URLDecoder.java java/net/URLEncoder.java
12342         java/net/URLStreamHandlerFactory.java
12343         java/net/UnknownHostException.java
12344         java/net/UnknownServiceException.java
12345         java/rmi/AccessException.java
12346         java/rmi/AlreadyBoundException.java
12347         java/rmi/ConnectException.java
12348         java/rmi/ConnectIOException.java
12349         java/rmi/MarshalException.java java/rmi/MarshalledObject.java
12350         java/rmi/Naming.java java/rmi/NoSuchObjectException.java
12351         java/rmi/NotBoundException.java
12352         java/rmi/RMISecurityException.java
12353         java/rmi/RMISecurityManager.java java/rmi/Remote.java
12354         java/rmi/RemoteException.java java/rmi/ServerError.java
12355         java/rmi/ServerException.java
12356         java/rmi/ServerRuntimeException.java
12357         java/rmi/StubNotFoundException.java
12358         java/rmi/UnexpectedException.java
12359         java/rmi/UnknownHostException.java
12360         java/rmi/UnmarshalException.java
12361         java/rmi/activation/Activatable.java
12362         java/rmi/activation/ActivateFailedException.java
12363         java/rmi/activation/ActivationDesc.java
12364         java/rmi/activation/ActivationException.java
12365         java/rmi/activation/ActivationGroup.java
12366         java/rmi/activation/ActivationGroupDesc.java
12367         java/rmi/activation/ActivationGroupID.java
12368         java/rmi/activation/ActivationID.java
12369         java/rmi/activation/ActivationInstantiator.java
12370         java/rmi/activation/ActivationMonitor.java
12371         java/rmi/activation/ActivationSystem.java
12372         java/rmi/activation/Activator.java
12373         java/rmi/activation/UnknownGroupException.java
12374         java/rmi/activation/UnknownObjectException.java
12375         java/rmi/dgc/DGC.java java/rmi/dgc/Lease.java
12376         java/rmi/dgc/VMID.java java/rmi/registry/LocateRegistry.java
12377         java/rmi/registry/Registry.java
12378         java/rmi/registry/RegistryHandler.java
12379         java/rmi/server/ExportException.java
12380         java/rmi/server/LoaderHandler.java
12381         java/rmi/server/LogStream.java java/rmi/server/ObjID.java
12382         java/rmi/server/Operation.java
12383         java/rmi/server/RMIClassLoader.java
12384         java/rmi/server/RMIClientSocketFactory.java
12385         java/rmi/server/RMIFailureHandler.java
12386         java/rmi/server/RMIServerSocketFactory.java
12387         java/rmi/server/RMISocketFactory.java
12388         java/rmi/server/RemoteCall.java
12389         java/rmi/server/RemoteObject.java
12390         java/rmi/server/RemoteRef.java
12391         java/rmi/server/RemoteServer.java
12392         java/rmi/server/RemoteStub.java
12393         java/rmi/server/ServerCloneException.java
12394         java/rmi/server/ServerNotActiveException.java
12395         java/rmi/server/ServerRef.java java/rmi/server/Skeleton.java
12396         java/rmi/server/SkeletonMismatchException.java
12397         java/rmi/server/SkeletonNotFoundException.java
12398         java/rmi/server/SocketSecurityException.java
12399         java/rmi/server/UID.java
12400         java/rmi/server/UnicastRemoteObject.java
12401         java/rmi/server/Unreferenced.java
12402         java/security/AccessControlContext.java
12403         java/security/AccessControlException.java
12404         java/security/AccessController.java
12405         java/security/AlgorithmParameterGenerator.java
12406         java/security/AlgorithmParameterGeneratorSpi.java
12407         java/security/AlgorithmParameters.java
12408         java/security/AlgorithmParametersSpi.java
12409         java/security/AllPermission.java
12410         java/security/BasicPermission.java
12411         java/security/Certificate.java java/security/CodeSource.java
12412         java/security/DigestException.java
12413         java/security/DigestInputStream.java
12414         java/security/DigestOutputStream.java
12415         java/security/DomainCombiner.java
12416         java/security/DummyKeyPairGenerator.java
12417         java/security/DummyMessageDigest.java
12418         java/security/DummySignature.java
12419         java/security/GeneralSecurityException.java
12420         java/security/Guard.java java/security/GuardedObject.java
12421         java/security/Identity.java java/security/IdentityScope.java
12422         java/security/InvalidAlgorithmParameterException.java
12423         java/security/InvalidKeyException.java
12424         java/security/InvalidParameterException.java
12425         java/security/Key.java java/security/KeyException.java
12426         java/security/KeyFactory.java java/security/KeyFactorySpi.java
12427         java/security/KeyManagementException.java
12428         java/security/KeyPair.java java/security/KeyPairGenerator.java
12429         java/security/KeyPairGeneratorSpi.java
12430         java/security/KeyStore.java
12431         java/security/KeyStoreException.java
12432         java/security/KeyStoreSpi.java
12433         java/security/MessageDigest.java
12434         java/security/MessageDigestSpi.java
12435         java/security/NoSuchAlgorithmException.java
12436         java/security/NoSuchProviderException.java
12437         java/security/Permission.java
12438         java/security/PermissionCollection.java
12439         java/security/Permissions.java java/security/Policy.java
12440         java/security/Principal.java java/security/PrivateKey.java
12441         java/security/PrivilegedAction.java
12442         java/security/PrivilegedActionException.java
12443         java/security/PrivilegedExceptionAction.java
12444         java/security/ProtectionDomain.java
12445         java/security/Provider.java
12446         java/security/ProviderException.java
12447         java/security/PublicKey.java
12448         java/security/SecureClassLoader.java
12449         java/security/SecureRandom.java
12450         java/security/SecureRandomSpi.java java/security/Security.java
12451         java/security/SecurityPermission.java
12452         java/security/Signature.java
12453         java/security/SignatureException.java
12454         java/security/SignatureSpi.java
12455         java/security/SignedObject.java java/security/Signer.java
12456         java/security/UnrecoverableKeyException.java
12457         java/security/UnresolvedPermission.java
12458         java/security/acl/Acl.java java/security/acl/AclEntry.java
12459         java/security/acl/AclNotFoundException.java
12460         java/security/acl/Group.java
12461         java/security/acl/LastOwnerException.java
12462         java/security/acl/NotOwnerException.java
12463         java/security/acl/Owner.java java/security/acl/Permission.java
12464         java/security/cert/CRL.java
12465         java/security/cert/CRLException.java
12466         java/security/cert/Certificate.java
12467         java/security/cert/CertificateEncodingException.java
12468         java/security/cert/CertificateException.java
12469         java/security/cert/CertificateExpiredException.java
12470         java/security/cert/CertificateFactory.java
12471         java/security/cert/CertificateFactorySpi.java
12472         java/security/cert/CertificateNotYetValidException.java
12473         java/security/cert/CertificateParsingException.java
12474         java/security/cert/X509CRL.java
12475         java/security/cert/X509CRLEntry.java
12476         java/security/cert/X509Certificate.java
12477         java/security/cert/X509Extension.java
12478         java/security/interfaces/DSAKey.java
12479         java/security/interfaces/DSAKeyPairGenerator.java
12480         java/security/interfaces/DSAParams.java
12481         java/security/interfaces/DSAPrivateKey.java
12482         java/security/interfaces/DSAPublicKey.java
12483         java/security/interfaces/RSAKey.java
12484         java/security/interfaces/RSAPrivateCrtKey.java
12485         java/security/interfaces/RSAPrivateKey.java
12486         java/security/interfaces/RSAPublicKey.java
12487         java/security/spec/AlgorithmParameterSpec.java
12488         java/security/spec/DSAParameterSpec.java
12489         java/security/spec/DSAPrivateKeySpec.java
12490         java/security/spec/DSAPublicKeySpec.java
12491         java/security/spec/EncodedKeySpec.java
12492         java/security/spec/InvalidKeySpecException.java
12493         java/security/spec/InvalidParameterSpecException.java
12494         java/security/spec/KeySpec.java
12495         java/security/spec/PKCS8EncodedKeySpec.java
12496         java/security/spec/RSAKeyGenParameterSpec.java
12497         java/security/spec/RSAPrivateCrtKeySpec.java
12498         java/security/spec/RSAPrivateKeySpec.java
12499         java/security/spec/RSAPublicKeySpec.java
12500         java/security/spec/X509EncodedKeySpec.java java/sql/Array.java
12501         java/sql/BatchUpdateException.java java/sql/Blob.java
12502         java/sql/CallableStatement.java java/sql/Clob.java
12503         java/sql/Connection.java java/sql/DataTruncation.java
12504         java/sql/DatabaseMetaData.java java/sql/Date.java
12505         java/sql/Driver.java java/sql/DriverManager.java
12506         java/sql/DriverPropertyInfo.java
12507         java/sql/PreparedStatement.java java/sql/Ref.java
12508         java/sql/ResultSet.java java/sql/ResultSetMetaData.java
12509         java/sql/SQLData.java java/sql/SQLException.java
12510         java/sql/SQLInput.java java/sql/SQLOutput.java
12511         java/sql/SQLWarning.java java/sql/Statement.java
12512         java/sql/Struct.java java/sql/Time.java
12513         java/sql/Timestamp.java java/sql/Types.java
12514         java/text/Annotation.java
12515         java/text/AttributedCharacterIterator.java
12516         java/text/AttributedString.java
12517         java/text/AttributedStringIterator.java
12518         java/text/BreakIterator.java java/text/CharacterIterator.java
12519         java/text/ChoiceFormat.java java/text/Collator.java
12520         java/text/DateFormat.java java/text/DateFormatSymbols.java
12521         java/text/DecimalFormat.java
12522         java/text/DecimalFormatSymbols.java
12523         java/text/FieldPosition.java java/text/Format.java
12524         java/text/MessageFormat.java java/text/NumberFormat.java
12525         java/text/ParseException.java java/text/ParsePosition.java
12526         java/text/SimpleDateFormat.java
12527         java/text/StringCharacterIterator.java
12528         java/util/AbstractCollection.java java/util/AbstractList.java
12529         java/util/AbstractMap.java
12530         java/util/AbstractSequentialList.java
12531         java/util/AbstractSet.java java/util/ArrayList.java
12532         java/util/Arrays.java java/util/BasicMapEntry.java
12533         java/util/BitSet.java java/util/Calendar.java
12534         java/util/Collection.java java/util/Collections.java
12535         java/util/Comparator.java
12536         java/util/ConcurrentModificationException.java
12537         java/util/Date.java java/util/Dictionary.java
12538         java/util/EmptyStackException.java java/util/Enumeration.java
12539         java/util/EventListener.java java/util/EventObject.java
12540         java/util/GregorianCalendar.java java/util/HashMap.java
12541         java/util/HashSet.java java/util/Hashtable.java
12542         java/util/IdentityHashMap.java java/util/Iterator.java
12543         java/util/LinkedHashMap.java java/util/LinkedHashSet.java
12544         java/util/LinkedList.java java/util/List.java
12545         java/util/ListIterator.java java/util/ListResourceBundle.java
12546         java/util/Locale.java java/util/Map.java
12547         java/util/MissingResourceException.java
12548         java/util/NoSuchElementException.java
12549         java/util/Observable.java java/util/Observer.java
12550         java/util/Properties.java java/util/PropertyPermission.java
12551         java/util/PropertyResourceBundle.java java/util/Random.java
12552         java/util/RandomAccess.java java/util/ResourceBundle.java
12553         java/util/Set.java java/util/SimpleTimeZone.java
12554         java/util/SortedMap.java java/util/SortedSet.java
12555         java/util/Stack.java java/util/StringTokenizer.java
12556         java/util/TimeZone.java java/util/Timer.java
12557         java/util/TimerTask.java
12558         java/util/TooManyListenersException.java
12559         java/util/TreeMap.java java/util/TreeSet.java
12560         java/util/Vector.java java/util/WeakHashMap.java
12561         java/util/jar/Attributes.java java/util/jar/JarEntry.java
12562         java/util/jar/JarException.java java/util/jar/JarFile.java
12563         java/util/jar/JarInputStream.java
12564         java/util/jar/JarOutputStream.java java/util/jar/Manifest.java
12565         java/util/zip/Adler32.java java/util/zip/CRC32.java
12566         java/util/zip/CheckedInputStream.java
12567         java/util/zip/CheckedOutputStream.java
12568         java/util/zip/Checksum.java
12569         java/util/zip/DataFormatException.java
12570         java/util/zip/Deflater.java
12571         java/util/zip/DeflaterOutputStream.java
12572         java/util/zip/GZIPInputStream.java
12573         java/util/zip/GZIPOutputStream.java
12574         java/util/zip/Inflater.java
12575         java/util/zip/InflaterInputStream.java
12576         java/util/zip/ZipConstants.java java/util/zip/ZipEntry.java
12577         java/util/zip/ZipException.java java/util/zip/ZipFile.java
12578         java/util/zip/ZipInputStream.java
12579         java/util/zip/ZipOutputStream.java
12580         javax/naming/BinaryRefAddr.java
12581         javax/naming/InvalidNameException.java javax/naming/Name.java
12582         javax/naming/NamingException.java javax/naming/RefAddr.java
12583         javax/naming/StringRefAddr.java: Add license clarification.
12585 2002-01-22  Tom Tromey  <tromey@redhat.com>
12587         * java/awt/peer/ButtonPeer.java: Replace with Classpath version.
12588         * java/awt/peer/CanvasPeer.java: Replace with Classpath version.
12589         * java/awt/peer/CheckboxMenuItemPeer.java: Replace with Classpath
12590         version.
12591         * java/awt/peer/CheckboxPeer.java: Replace with Classpath version.
12592         * java/awt/peer/ChoicePeer.java: Replace with Classpath version.
12593         * java/awt/peer/ComponentPeer.java: Replace with Classpath version.
12594         * java/awt/peer/ContainerPeer.java: Replace with Classpath version.
12595         * java/awt/peer/DialogPeer.java: Replace with Classpath version.
12596         * java/awt/peer/FileDialogPeer.java: Replace with Classpath version.
12597         * java/awt/peer/FontPeer.java: Replace with Classpath version.
12598         * java/awt/peer/FramePeer.java: Replace with Classpath version.
12599         * java/awt/peer/LabelPeer.java: Replace with Classpath version.
12600         * java/awt/peer/LightweightPeer.java: Replace with Classpath version.
12601         * java/awt/peer/ListPeer.java: Replace with Classpath version.
12602         * java/awt/peer/MenuBarPeer.java: Replace with Classpath version.
12603         * java/awt/peer/MenuComponentPeer.java: Replace with Classpath version.
12604         * java/awt/peer/MenuItemPeer.java: Replace with Classpath version.
12605         * java/awt/peer/MenuPeer.java: Replace with Classpath version.
12606         * java/awt/peer/PanelPeer.java: Replace with Classpath version.
12607         * java/awt/peer/PopupMenuPeer.java: Replace with Classpath version.
12608         * java/awt/peer/ScrollPanePeer.java: Replace with Classpath version.
12609         * java/awt/peer/ScrollbarPeer.java: Replace with Classpath version.
12610         * java/awt/peer/TextAreaPeer.java: Replace with Classpath version.
12611         * java/awt/peer/TextComponentPeer.java: Replace with Classpath version.
12612         * java/awt/peer/TextFieldPeer.java: Replace with Classpath version.
12613         * java/awt/peer/WindowPeer.java: Replace with Classpath version.
12614         * gnu/awt/xlib/XPanelPeer.java (insets): New method.
12615         * gnu/awt/xlib/XCanvasPeer.java (show, hide): New methods.
12616         (minimumSize, preferredSize, reshape): Likewise.
12617         * gnu/awt/xlib/XFramePeer.java (insets, enable, disable,
12618         getColorModel): New methods.
12619         * java/awt/PopupMenu.java: Merged with Classpath.
12620         * java/awt/MenuBar.java: Merged with Classpath.
12621         * java/awt/SystemColor.java: Replace with Classpath version.
12622         * java/awt/Panel.java: Merged with Classpath.
12623         * java/awt/PaintContext.java: Updated copyright.
12624         * java/awt/MenuShortcut.java: Merged with Classpath.
12625         * java/awt/MenuContainer.java: Merged with Classpath.
12626         * java/awt/Menu.java: Merged with Classpath.
12627         * java/awt/MediaEntry.java: New file from Classpath.
12628         * java/awt/MediaTracker.java: New file from Classpath.
12629         * java/awt/List.java: Merged with Classpath version.
12630         * java/awt/Insets.java: Merged with Classpath version.
12631         * java/awt/ImageMediaEntry.java: New file from Classpath.
12632         * java/awt/Image.java: Replaced with Classpath version.
12633         * java/awt/FontMetrics.java: Merged with Classpath version.
12634         * java/awt/Cursor.java (getDefaultCursor): Use DEFAULT_CURSOR
12635         constant.
12636         * java/awt/Font.java: Merged with Classpath version.
12637         * java/awt/Dialog.java: Merged with Classpath version.
12638         * java/awt/Color.java: Merged with Classpath version.
12639         * java/awt/Choice.java: Merged with Classpath version.
12640         * java/awt/CheckboxMenuItem.java: Merged with Classpath version.
12641         * java/awt/Adjustable.java: Replace with Classpath version.
12642         * java/awt/MenuItem.java (paramString): Don't include class name
12643         or brackets.  Call superclass paramString.
12644         * java/awt/MenuComponent.java (toString): Call paramString.
12645         (paramString): Compute string; don't call toString.
12646         * java/awt/Label.java (paramString): Don't include class name
12647         or brackets.  Call superclass paramString.
12648         * java/awt/Checkbox.java (paramString): Don't include class name
12649         or brackets.  Call superclass paramString.
12650         * java/awt/Button.java (paramString): Don't include class name or
12651         brackets.  Call superclass paramString.
12652         * java/awt/MenuComponent.java (getTreeLock): Now protected.
12654 2002-01-20  Andreas Schwab  <schwab@suse.de>
12656         * java/net/natPlainSocketImpl.cc (_Jv_recv): Change return type of
12657         function and of parameter recv_func to ssize_t, as specified by
12658         POSIX.
12660 2002-01-19  Per Bothner  <per@bothner.com>
12662         * java/util/zip/ZipOutputStream.java (putNextEntry):  Clear
12663         uncompressed_size in readiness for next entry.
12665 2002-01-18  Tom Tromey  <tromey@redhat.com>
12667         * java/net/natPlainSocketImpl.cc: Include
12668         IllegalArgumentException.h.
12669         (_Jv_recv): New template function.
12670         (BooleanClass): Removed.
12671         (read): Use _Jv_recv.
12672         (setOption): Use Boolean::class$.  Throw exception if object is
12673         not Boolean or Integer.
12675 2002-01-17  Tom Tromey  <tromey@redhat.com>
12677         * java/awt/MenuComponent.java: Merged with Classpath.
12678         * java/awt/MenuItem.java: Merged with Classpath.
12679         * java/awt/Button.java: Merged with Classpath.
12681         * java/awt/ActiveEvent.java: Updated copyright.
12683         * java/awt/AWTError.java: Replaced with Classpath version.
12684         * java/awt/AWTException.java: Replaced with Classpath version.
12685         * java/awt/IllegalComponentStateException.java: Replaced with
12686         Classpath version.
12688 2002-01-16  Tom Tromey  <tromey@redhat.com>
12690         * java/awt/Canvas.java (serialVersionUID): New constant.
12691         Updated copyright.  Added javadoc from Classpath.
12692         * java/awt/ItemSelectable.java: Replaced with Classpath version.
12694         * java/awt/CheckboxGroup.java: Merged with Classpath.
12695         * java/awt/Checkbox.java: Merged with Classpath.
12697         * java/awt/Dimension.java: Updated copyright.  Added javadoc from
12698         Classpath.
12699         * java/awt/Point.java: Updated copyright.
12701         * java/awt/Point.java (toString): Use getClass().getName().
12702         Added javadoc.
12704         * java/util/IdentityHashMap.java (IdentityHashMap): Removed
12705         commented code.
12706         (hash): Correctly compute initial value for `h'.
12708         * java/awt/Label.java: Merged with Classpath.
12710 2002-01-15  Tom Tromey  <tromey@redhat.com>
12712         * java/awt/AWTPermission.java: Updated copyright.
12714         * java/awt/LayoutManager2.java: Merged with Classpath.
12715         * java/awt/LayoutManager.java: Merged with Classpath.
12716         * java/awt/GridLayout.java: Updated copyright and javadoc.
12717         (getSize): Use `parent.ncomponents'.  Handle insets.
12718         (layoutContainer): Use `parent.ncomponents'.  Handle case where
12719         there are fewer children than columns.  Correctly compute size of
12720         each cell in the grid.  Handle case where there isn't enough
12721         space.
12722         * java/awt/CardLayout.java (tab): Renamed from `map'.  Updated
12723         all users.
12724         (gotoComponent): Use parent.ncomponents.  Ensure child exists
12725         before calling setVisible() on it.  Last item is `num - 1', not
12726         `num'.
12727         (layoutContainer): Hoist invariants out of loop.
12729         Start of AWT merge with Classpath:
12730         * Makefile.in: Rebuilt.
12731         * Makefile.am (awt_java_source_files): Reference files in
12732         gnu/java/awt, not gnu/gcj/awt.
12733         * java/awt/image/BufferedImage.java: Updated copyright.
12734         * java/awt/image/ComponentColorModel.java: Updated copyright.
12735         * java/awt/image/ComponentSampleModel.java: Updated copyright.
12736         * java/awt/image/DataBuffer.java: Updated copyright.
12737         * java/awt/image/DataBufferByte.java: Updated copyright.
12738         * java/awt/image/DataBufferInt.java: Updated copyright.
12739         * java/awt/image/DataBufferUShort.java: Updated copyright.
12740         * java/awt/image/IndexColorModel.java: Updated copyright.
12741         * java/awt/image/PackedColorModel.java: Updated copyright.
12742         * java/awt/image/Raster.java: Updated copyright.
12743         * java/awt/image/RasterOp.java: Updated copyright.
12744         * java/awt/image/SampleModel.java: Updated copyright.
12745         * java/awt/image/SinglePixelPackedSampleModel.java: Updated copyright.
12746         * java/awt/image/WritableRaster.java: Updated copyright.
12747         * java/awt/color/ColorSpace.java: Updated copyright.
12748         * java/awt/color/ICC_ColorSpace.java: Updated copyright
12749         * java/awt/color/ICC_Profile.java: Updated copyright.
12750         * java/awt/event/HierarchyBoundsAdapter.java: Updated copyright.
12751         * java/awt/event/HierarchyBoundsListener.java: Updated copyright.
12752         * java/awt/event/HierarchyEvent.java: Updated copyright.
12753         * java/awt/event/HierarchyListener.java: Updated copyright.
12754         * java/awt/geom/AffineTransform.java: Updated copyright.
12755         * java/awt/geom/Dimension2D.java: Updated copyright.
12756         * java/awt/geom/Ellipse2D.java: Updated copyright.
12757         * java/awt/geom/IllegalPathStateException.java: Updated copyright.
12758         * java/awt/geom/Line2D.java: Updated copyright.
12759         * java/awt/geom/NoninvertibleTransformException.java: Updated
12760         copyright.
12761         * java/awt/geom/PathIterator.java: Updated copyright.
12762         * java/awt/geom/Point2D.java: Updated copyright.
12763         * java/awt/geom/Rectangle2D.java: Updated copyright.
12764         * java/awt/geom/RectangularShape.java: Updated copyright.
12765         * java/awt/geom/RoundRectangle2D.java: Updated copyright.
12766         * java/awt/Toolkit.java: Updated import for file moves.
12767         * java/awt/Rectangle.java: Updated copyright; added javadoc from
12768         Classpath.
12769         (hashCode): New method from Classpath.
12770         * java/awt/Graphics2D.java: Updated copyright.
12771         * java/awt/Transparency.java: Updated copyright.
12772         * java/awt/Paint.java: Updated copyright.
12773         * java/awt/Graphics.java: New version from Classpath.
12774         * java/awt/EventDispatchThread.java: Updated copyright.
12775         * java/awt/CardLayout.java (layoutContainer): Don't skip invisible
12776         children.
12777         (gotoComponent): Wrap around on next/previous.
12778         * gnu/gcj/awt/BitMaskExtent.java: Removed.
12779         * gnu/gcj/awt/Buffers.java: Removed.
12780         * gnu/gcj/awt/ComponentDataBlitOp.java: Removed.
12781         * gnu/gcj/awt/GLightweightPeer.java: Removed.
12782         * gnu/java/awt/BitMaskExtent.java: Added.
12783         * gnu/java/awt/Buffers.java: Added.
12784         * gnu/java/awt/ComponentDataBlitOp.java: Added.
12785         * gnu/java/awt/GLightweightPeer.java: Added.
12786         * java/awt/geom/Line2D.java (clone): Ignore
12787         CloneNotSupportedException.
12788         * gnu/gcj/awt/GLightweightPeer.java (getColorModel): New method.
12789         * java/awt/Frame.java: Merged with Classpath.
12790         * java/awt/RenderingHints.java: Copyright update.
12791         * java/awt/Paint.java: Copyright update.
12792         * java/awt/image/DirectColorModel.java: Merged with Classpath.
12793         * java/awt/image/ColorModel.java: Merged with Classpath.
12794         * java/awt/Window.java (show): New Implementation from Classpath.
12795         (isShowing): Use super.isShowing().
12796         * java/awt/EventQueue.java: Merged with Classpath.
12797         * java/awt/AWTEventMulticaster.java (save): Throw
12798         RuntimeException.
12799         (saveInternal): Likewise.
12800         * java/awt/AWTEvent.java: Now implements Serializable.
12801         * java/awt/Event.java: Copyright update.
12802         * java/awt/peer/ComponentPeer.java: Merged with Classpath.
12803         * java/awt/image/BufferedImage.java: Copyright update.
12804         * java/awt/GraphicsConfiguration.java: Copyright update.
12805         * java/awt/Component.java: (addNotify): Don't call
12806         addNotifyContainerChildren().
12807         (addNotifyContainerChildren): Removed.
12808         (setPeer): New method from Classpath.
12809         (setTreeLock): Likewise.
12810         (setVisible): Rewrote.
12811         (show): Use it.
12812         (hide): Likewise.
12813         (validate): Set `valid'.
12814         (checkImage(Image,ImageObserver)): Implementation from Classpath.
12815         (createImage(ImageProducer)): Likewise.
12816         (prepareImage): Likewise.
12817         * java/awt/Container.java (addImpl): Handle case where constraint
12818         is not a String.  Post event via system event queue.
12819         (remove): Post event via system event queue.
12820         (validateTree): Only validate child if it is invalid.
12821         (getAlignmentX): Call super method as default.
12822         (getAlignmentY): Likewise.
12823         (addContainerListener): Now synchronized.
12824         (removeContainerListener): Likewise.
12825         (addNotifyContainerChildren): Now private.
12826         * java/awt/ComponentOrientation.java: Updated copyright.  Added
12827         @author.
12828         * java/awt/FlowLayout.java (serialVersionUID): New field.
12829         (setAlignment): Better exception message.
12830         (layoutContainer): Don't compute component's preferred size unless
12831         we're going to use it.
12832         * java/awt/BorderLayout.java (AFTER_LAST_LINE, AFTER_LINE_ENDS,
12833         BEFORE_FIRST_LINE, BEFORE_LINE_BEGINS): New constants.
12834         (firstLine, lastLine, firstItem, lastItem): New fields.
12835         (addLayoutComponent): Handle case where constraints is null.
12836         Also, handle relative locations.
12837         (removeLayoutComponent): Handle relative locations.
12838         (MIN, MAX, PREF): New constants.
12839         (calcCompSize): New method.
12840         (calcSize): New method.
12841         (minimumLayoutSize): Use it.
12842         (preferredLayoutSize): Likewise.
12843         (maximumLayoutSize): Likewise.
12844         (toString): Include more information.
12845         (setBounds): New method.
12846         (layoutContainer): Use libgcj implementation; extended to handle
12847         relative locations.
12849 2002-01-15  Tom Tromey  <tromey@redhat.com>
12851         * java/lang/Float.java (equals): Preserve old code.
12852         * java/lang/Double.java (equals): Preserve old code.
12854 2002-01-15  Eric Blake  <ebb9@email.byu.edu>
12856         * java/lang/Double.java (equals, compare): Fix 0.0 vs. -0.0 math.
12857         * java/lang/Float.java (equals, compare): Ditto.
12859 2002-01-13  Mark Wielaard  <mark@klomp.org>
12861         * java/net/DatagramSocket.java (getReceiveBufferSize): new 1.2 method.
12862         * java/net/DatagramSocket.java (getSendBufferSize): Likewise.
12863         * java/net/DatagramSocket.java (setReceiveBufferSize): Likewise.
12864         * java/net/DatagramSocket.java (setSendBufferSize): Likewise.
12866 2002-01-11  Mark Wielaard  <mark@klomp.org>
12868         * java/net/InetAddress.java (ANY_IF): moved from ServerSocket.
12869         * java/net/DatagramSocket.java (DatagramSocket): use ANY_IF from
12870         InetAddress.
12871         * java/net/MulticastSocket.java (MulticastSocket): Likewise.
12872         * java/net/Socket.java: Merge with Classpath.
12873         * java/net/ServerSocket.java: Likewise.
12875 2002-01-11  Chris Sears  <cbsears_sf@yahoo.com>
12877         * interpret.cc (NULLARRAYCHECK): New macro.
12878         (SAVE_PC): Just store `pc'.
12879         (find_exception): Subtract one from `pc' here.
12880         (continue1) [insn_iaload, insn_laload, insn_faload, insn_daload,
12881         insn_aaload, insn_baload, insn_caload, insn_saload, insn_iastore,
12882         insn_lastore, insn_fastore, insn_dastore, insn_aastore,
12883         insn_bastore, insn_castore, insn_sastore]: Use NULLARRAYCHECK, and
12884         don't call SAVE_PC.
12885         (continue1) [insn_fdiv, insn_ddiv, insn_frem, insn_drem]: Don't
12886         call SAVE_PC.
12888 2002-01-11  Tom Tromey  <tromey@redhat.com>
12890         * java/lang/natSystem.cc (init_properties): Only look for default
12891         locale if LC_MESSAGES is defined.
12892         * aclocal.m4, configure, include/config.h.in: Rebuilt.
12893         * configure.in: Call AM_LC_MESSAGES.
12894         * acinclude.m4 (AM_LC_MESSAGES): New macro.
12896 2002-01-10  Tom Tromey  <tromey@redhat.com>
12898         For PR libgcj/5303:
12899         * gnu/java/rmi/rmic/RMIC.java (parseOptions): Handle --help and
12900         --version.  Recognize GNU-style long options.  Print GNU-style
12901         error messages.
12902         (usage): Print GNU-style help.  Exit with status 0.
12903         (error): New method.
12904         (run): Print error message if no class names found.
12905         (main): Don't print usage on error.
12907 2002-01-09  Tom Tromey  <tromey@redhat.com>
12909         * gnu/gcj/convert/Convert.java (version): Use java.vm.name
12910         property.
12911         (help, version): Use println(), not println("").
12913         For PR libgcj/5303:
12914         * gnu/gcj/convert/Convert.java (error): Program is called
12915         `jv-convert'.  Print GNU-style message.  Exit with status 1, not
12916         -1.
12917         (main): Handle --help and --version.
12918         (help): New method.
12919         (version): Likewise.
12921 2002-01-08  Tom Tromey  <tromey@redhat.com>
12923         * Makefile.in: Rebuilt.
12924         * Makefile.am (ordinary_java_source_files): Added new files.
12925         * gnu/java/locale/LocaleInformation.java: Extend
12926         LocaleInformation_en.
12927         * gnu/java/locale/LocaleInformation_en.java: Added zone strings
12928         and time/date formats.
12929         * gnu/java/locale/LocaleInformation_en_US.java: Now automatically
12930         generated.
12931         * gnu/java/locale/LocaleInformation_af_ZA.java: New file.
12932         * gnu/java/locale/LocaleInformation_ar_AE.java: New file.
12933         * gnu/java/locale/LocaleInformation_ar_BH.java: New file.
12934         * gnu/java/locale/LocaleInformation_ar_DZ.java: New file.
12935         * gnu/java/locale/LocaleInformation_ar_EG.java: New file.
12936         * gnu/java/locale/LocaleInformation_ar_IN.java: New file.
12937         * gnu/java/locale/LocaleInformation_ar_IQ.java: New file.
12938         * gnu/java/locale/LocaleInformation_ar_JO.java: New file.
12939         * gnu/java/locale/LocaleInformation_ar_KW.java: New file.
12940         * gnu/java/locale/LocaleInformation_ar_LB.java: New file.
12941         * gnu/java/locale/LocaleInformation_ar_LY.java: New file.
12942         * gnu/java/locale/LocaleInformation_ar_MA.java: New file.
12943         * gnu/java/locale/LocaleInformation_ar_OM.java: New file.
12944         * gnu/java/locale/LocaleInformation_ar_QA.java: New file.
12945         * gnu/java/locale/LocaleInformation_ar_SD.java: New file.
12946         * gnu/java/locale/LocaleInformation_ar_SY.java: New file.
12947         * gnu/java/locale/LocaleInformation_ar_TN.java: New file.
12948         * gnu/java/locale/LocaleInformation_ar_YE.java: New file.
12949         * gnu/java/locale/LocaleInformation_be_BY.java: New file.
12950         * gnu/java/locale/LocaleInformation_bn_IN.java: New file.
12951         * gnu/java/locale/LocaleInformation_br_FR.java: New file.
12952         * gnu/java/locale/LocaleInformation_bs_BA.java: New file.
12953         * gnu/java/locale/LocaleInformation_ca_ES.java: New file.
12954         * gnu/java/locale/LocaleInformation_cs_CZ.java: New file.
12955         * gnu/java/locale/LocaleInformation_cy_GB.java: New file.
12956         * gnu/java/locale/LocaleInformation_da_DK.java: New file.
12957         * gnu/java/locale/LocaleInformation_de_AT.java: New file.
12958         * gnu/java/locale/LocaleInformation_de_BE.java: New file.
12959         * gnu/java/locale/LocaleInformation_de_CH.java: New file.
12960         * gnu/java/locale/LocaleInformation_de_DE.java: New file.
12961         * gnu/java/locale/LocaleInformation_de_LU.java: New file.
12962         * gnu/java/locale/LocaleInformation_el_GR.java: New file.
12963         * gnu/java/locale/LocaleInformation_en_AU.java: New file.
12964         * gnu/java/locale/LocaleInformation_en_BW.java: New file.
12965         * gnu/java/locale/LocaleInformation_en_CA.java: New file.
12966         * gnu/java/locale/LocaleInformation_en_DK.java: New file.
12967         * gnu/java/locale/LocaleInformation_en_GB.java: New file.
12968         * gnu/java/locale/LocaleInformation_en_HK.java: New file.
12969         * gnu/java/locale/LocaleInformation_en_IE.java: New file.
12970         * gnu/java/locale/LocaleInformation_en_IN.java: New file.
12971         * gnu/java/locale/LocaleInformation_en_NZ.java: New file.
12972         * gnu/java/locale/LocaleInformation_en_PH.java: New file.
12973         * gnu/java/locale/LocaleInformation_en_SG.java: New file.
12974         * gnu/java/locale/LocaleInformation_en_ZA.java: New file.
12975         * gnu/java/locale/LocaleInformation_en_ZW.java: New file.
12976         * gnu/java/locale/LocaleInformation_es_AR.java: New file.
12977         * gnu/java/locale/LocaleInformation_es_BO.java: New file.
12978         * gnu/java/locale/LocaleInformation_es_CL.java: New file.
12979         * gnu/java/locale/LocaleInformation_es_CO.java: New file.
12980         * gnu/java/locale/LocaleInformation_es_CR.java: New file.
12981         * gnu/java/locale/LocaleInformation_es_DO.java: New file.
12982         * gnu/java/locale/LocaleInformation_es_EC.java: New file.
12983         * gnu/java/locale/LocaleInformation_es_ES.java: New file.
12984         * gnu/java/locale/LocaleInformation_es_GT.java: New file.
12985         * gnu/java/locale/LocaleInformation_es_HN.java: New file.
12986         * gnu/java/locale/LocaleInformation_es_MX.java: New file.
12987         * gnu/java/locale/LocaleInformation_es_NI.java: New file.
12988         * gnu/java/locale/LocaleInformation_es_PA.java: New file.
12989         * gnu/java/locale/LocaleInformation_es_PE.java: New file.
12990         * gnu/java/locale/LocaleInformation_es_PR.java: New file.
12991         * gnu/java/locale/LocaleInformation_es_PY.java: New file.
12992         * gnu/java/locale/LocaleInformation_es_SV.java: New file.
12993         * gnu/java/locale/LocaleInformation_es_US.java: New file.
12994         * gnu/java/locale/LocaleInformation_es_UY.java: New file.
12995         * gnu/java/locale/LocaleInformation_es_VE.java: New file.
12996         * gnu/java/locale/LocaleInformation_et_EE.java: New file.
12997         * gnu/java/locale/LocaleInformation_eu_ES.java: New file.
12998         * gnu/java/locale/LocaleInformation_fa_IR.java: New file.
12999         * gnu/java/locale/LocaleInformation_fi_FI.java: New file.
13000         * gnu/java/locale/LocaleInformation_fo_FO.java: New file.
13001         * gnu/java/locale/LocaleInformation_fr_BE.java: New file.
13002         * gnu/java/locale/LocaleInformation_fr_CA.java: New file.
13003         * gnu/java/locale/LocaleInformation_fr_CH.java: New file.
13004         * gnu/java/locale/LocaleInformation_fr_FR.java: New file.
13005         * gnu/java/locale/LocaleInformation_fr_LU.java: New file.
13006         * gnu/java/locale/LocaleInformation_ga_IE.java: New file.
13007         * gnu/java/locale/LocaleInformation_gd_GB.java: New file.
13008         * gnu/java/locale/LocaleInformation_gl_ES.java: New file.
13009         * gnu/java/locale/LocaleInformation_gv_GB.java: New file.
13010         * gnu/java/locale/LocaleInformation_he_IL.java: New file.
13011         * gnu/java/locale/LocaleInformation_hi_IN.java: New file.
13012         * gnu/java/locale/LocaleInformation_hr_HR.java: New file.
13013         * gnu/java/locale/LocaleInformation_hu_HU.java: New file.
13014         * gnu/java/locale/LocaleInformation_id_ID.java: New file.
13015         * gnu/java/locale/LocaleInformation_it_CH.java: New file.
13016         * gnu/java/locale/LocaleInformation_it_IT.java: New file.
13017         * gnu/java/locale/LocaleInformation_iw_IL.java: New file.
13018         * gnu/java/locale/LocaleInformation_ja_JP.java: New file.
13019         * gnu/java/locale/LocaleInformation_ka_GE.java: New file.
13020         * gnu/java/locale/LocaleInformation_kl_GL.java: New file.
13021         * gnu/java/locale/LocaleInformation_ko_KR.java: New file.
13022         * gnu/java/locale/LocaleInformation_kw_GB.java: New file.
13023         * gnu/java/locale/LocaleInformation_lt_LT.java: New file.
13024         * gnu/java/locale/LocaleInformation_lv_LV.java: New file.
13025         * gnu/java/locale/LocaleInformation_mi_NZ.java: New file.
13026         * gnu/java/locale/LocaleInformation_mk_MK.java: New file.
13027         * gnu/java/locale/LocaleInformation_mr_IN.java: New file.
13028         * gnu/java/locale/LocaleInformation_mt_MT.java: New file.
13029         * gnu/java/locale/LocaleInformation_nl_BE.java: New file.
13030         * gnu/java/locale/LocaleInformation_nl_NL.java: New file.
13031         * gnu/java/locale/LocaleInformation_nn_NO.java: New file.
13032         * gnu/java/locale/LocaleInformation_no_NO.java: New file.
13033         * gnu/java/locale/LocaleInformation_oc_FR.java: New file.
13034         * gnu/java/locale/LocaleInformation_pl_PL.java: New file.
13035         * gnu/java/locale/LocaleInformation_pt_BR.java: New file.
13036         * gnu/java/locale/LocaleInformation_pt_PT.java: New file.
13037         * gnu/java/locale/LocaleInformation_ro_RO.java: New file.
13038         * gnu/java/locale/LocaleInformation_ru_RU.java: New file.
13039         * gnu/java/locale/LocaleInformation_ru_UA.java: New file.
13040         * gnu/java/locale/LocaleInformation_se_NO.java: New file.
13041         * gnu/java/locale/LocaleInformation_sk_SK.java: New file.
13042         * gnu/java/locale/LocaleInformation_sl_SI.java: New file.
13043         * gnu/java/locale/LocaleInformation_sq_AL.java: New file.
13044         * gnu/java/locale/LocaleInformation_sr_YU.java: New file.
13045         * gnu/java/locale/LocaleInformation_sv_FI.java: New file.
13046         * gnu/java/locale/LocaleInformation_sv_SE.java: New file.
13047         * gnu/java/locale/LocaleInformation_ta_IN.java: New file.
13048         * gnu/java/locale/LocaleInformation_te_IN.java: New file.
13049         * gnu/java/locale/LocaleInformation_tg_TJ.java: New file.
13050         * gnu/java/locale/LocaleInformation_tl_PH.java: New file.
13051         * gnu/java/locale/LocaleInformation_tr_TR.java: New file.
13052         * gnu/java/locale/LocaleInformation_uk_UA.java: New file.
13053         * gnu/java/locale/LocaleInformation_ur_PK.java: New file.
13054         * gnu/java/locale/LocaleInformation_uz_UZ.java: New file.
13055         * gnu/java/locale/LocaleInformation_vi_VN.java: New file.
13056         * gnu/java/locale/LocaleInformation_yi_US.java: New file.
13057         * gnu/java/locale/LocaleInformation_zh_CN.java: New file.
13058         * gnu/java/locale/LocaleInformation_zh_HK.java: New file.
13059         * gnu/java/locale/LocaleInformation_zh_SG.java: New file.
13060         * gnu/java/locale/LocaleInformation_zh_TW.java: New file.
13062         For PR libgcj/5031:
13063         * java/lang/natSystem.cc (init_properties): Use LC_MESSAGES to
13064         choose default locale.
13066         * Makefile.in: Rebuilt.
13067         * Makefile.am (jv_convert_LDADD): Removed convert_source_files.
13069 2002-01-08  Nic Ferrier  <nferrier@tf1.tapsellferrier.co.uk>
13071         * java/net/natPlainSocketImpl.cc: Added timeout handling for
13072         sockets.
13073         (close): New function closes the socket.
13074         (write): New functions for output to socket.
13075         (read): New functions for reading from socket.
13076         * java/net/PlainSocketImpl.java: Glue for new timeout
13077         implementation.
13078         (write): Call the native impl.
13079         (read): Likewise.
13080         (getInputStream): Get a stream to read from the socket.
13081         (getOutputStream): Get a stream to write to the socket.
13083 2002-01-08  Tom Tromey  <tromey@redhat.com>
13085         * resolve.cc (_Jv_PrepareClass): Enable verifier.
13087 2002-01-07  Andreas Tobler <a.tobler@schweiz.ch>
13089         * java/lang/reflect/natMethod.cc: Don't include alloca.h.
13090         (_Jv_CallAnyMethodA): Convert alloca to __builtin_alloca.
13092 2002-01-08  Chris Sears  <cbsears_sf@yahoo.com>
13094         * interpret.cc (ARRAYBOUNDSCHECK): New macro.
13095         (continue1) [insn_iaload, insn_laload, insn_faload, insn_daload,
13096         insn_aaload, insn_baload, insn_caload, insn_saload, insn_iastore,
13097         insn_lastore, insn_fastore, insn_dastore, insn_aastore,
13098         insn_bastore, insn_castore, insn_sastore]: Use it.
13099         (continue1) [insn_arraylength]: Check for null array.
13101 2002-01-06 Andreas Tobler <a.tobler@schweiz.ch>
13103         * configure, include/config.h.in: Rebuilt.
13104         * java/lang/natSystem.cc (getSystemTimeZone): Check HAVE_TM_ZONE.
13105         * configure.in: Call AC_STRUCT_TIMEZONE.
13107 2002-01-02 Andreas Tobler <a.tobler@schweiz.ch>
13109         * configure.host: Disable the interpreter for Darwin.
13111 2002-01-04  Tom Tromey  <tromey@redhat.com>
13113         * java/lang/Thread.java (stop): No longer synchronized.
13114         (start): Likewise.
13116 2002-01-02  Tom Tromey  <tromey@redhat.com>
13118         * java/lang/ieeefp.h: Fix bug in my hand-application of previous
13119         patch.
13121 2002-1-1  Andrew Pinski  <pinskia@physics.uc.edu>
13123         * libjava/java/lang/ieeefp.h: Define __IEEE_BIG_ENDIAN for
13124         PPC Darwin, not for all of Darwin.