summaryrefslogtreecommitdiffstats
path: root/libjava
Commit message (Collapse)AuthorAgeFilesLines
* 2004-08-29 Mark Wielaard <mark@klomp.org>andreast2004-08-292-9/+45
| | | | | | | | | | | | | | | | | | | | | | * java/util/Arrays.java (sort(byte[], int, int)): Check fromIndex < 0. (sort(char[], int, int)): Likewise. (sort(short[], int, int)): Likewise. (sort(int[], int, int)): Likewise. (sort(long[], int, int)): Likewise. (sort(float[], int, int)): Likewise. (sort(double[], int, int)): Likewise. (sort(Object[], int, int, Comparator)): Likewise. (qsort(byte[], int, int)): Honor lower bound from in insertion sort. (qsort(char[], int, int)): Likewise. (qsort(short[], int, int)): Likewise. (qsort(int[], int, int)): Likewise. (qsort(long[], int, int)): Likewise. (qsort(float[], int, int)): Likewise. (qsort(double[], int, int)): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86734 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-29 Andrew John Hughes <gnu_andrew@member.fsf.org>andreast2004-08-2913-54/+568
| | | | | | | | | | | | | | * java/util/AbstractCollection.java, java/util/AbstractList.java, java/util/AbstractMap.java, java/util/AbstractSequentialList.java, java/util/ArrayList.java, java/util/Arrays.java, java/util/BitSet.java, java/util/Calendar.java, java/util/Collection.java, java/util/ListIterator.java, java/util/Map.java, java/util/SortedSet.java: Added additional exceptions to documentation, along with some additions and corrections. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86730 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure.ac: Handle --enable-gc-debug.hboehm2004-08-287-99/+197
| | | | | | | | | | | | | | | | | | | | | | | | | | * configure: Regenerate. * include/config.h.in (LIBGCJ_GC_DEBUG): Add. * boehm.cc: Include gc_mark.h, javaxfc.h, but no GC private files. Rearrange include file order. (GC_DEBUG): Set if LIBGCJ_GC_DEBUG is set. (GC_finalize_all, GC_debug_generic_malloc): Don't declare. (disable_gc_mutex): Delete along with all references. (_Jv_MarkObj, _Jv_MarkArray): Use public types, adjust for debug header size. (_Jv_AllocObj, _Jv_allocPtrFreeObj): Define out of line for debug case. (_Jv_AllocArray): Declare min_heap_addr only if needed. (gcj_describe_type_fn): New. (_Jv_InitGC): Use GC_new_free_list, GC_new_proc, and GC_new_kind. Register gcj_describe_type_fn. * include/boehm-gc.h: (_Jv_AllocObj, _Jv_allocPtrFreeObj): Don't define, but declare, for debug case. * java/lang/natObject.cc: (GC_DEBUG): Define if LIBGCJ_GC_DEBUG is set. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86686 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-26 Mark Wielaard <mark@klomp.org>mark2004-08-263-143/+538
| | | | | | | | | | | | | | | | | | | Fixes PR libgcj/17002: * java/util/TimeZone.java (defaultZone): Try a couple of ways to get a TimeZoneId string and then try to convert that to a TimeZone with getDefaultSystemTimeZone(String). (timezones0): Changed type from Hashtable to HashMap. (timezones): Create HashMap, not Hashtable. (getDefaultTimeZone): New method, rewritten from CNI version. (readTimeZoneFile): New method. (readtzFile): Likewise. (skipFully): Likewise. * java/util/natTimeZone.cc (getSystemTimeZone): Renamed to getDefaultTimeZoneId and rewritten. (getDefaultTimeZoneId): Rewritten in java. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86623 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-25 David Daney <daney@avtrex.com>daney2004-08-253-237/+244
| | | | | | | | * Makefile.am (AM_GCJFLAGS): Add LIBGCJ_JAVAFLAGS. * Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86551 138bc75d-0d04-0410-961f-82ee72b054a4
* ignore autom4te.cachekcook2004-08-231-0/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86446 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-23 Bryce McKinlay <mckinlay@redhat.com>bryce2004-08-232-67/+39
| | | | | | | | | | | | * prims.cc (JVMPI_NOTIFY_ALLOC): New macro. Call jvmpi_notify_alloc only if jvmpi is enabled. (jvmpi_notify_alloc): Don't check if jvmpi is enabled here. (_Jv_AllocObjectNoFinalizer): Use JVMPI_NOTIFY_ALLOC. (_Jv_AllocString): Likewise. (_Jv_AllocPtrFreeObject): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86441 138bc75d-0d04-0410-961f-82ee72b054a4
* * defineclass.cc: Include <stdio.h>.hboehm2004-08-233-0/+6
| | | | | | | * java/lang/natClassLoader.cc: Include <stdio.h>. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86434 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-21 Andreas Tobler <a.tobler@schweiz.ch>mkoch2004-08-213-1/+9
| | | | | | | | | | Michael Koch <konqueror@gmx.de> * Makefile.am (lib_gnu_java_awt_peer_gtk_la_LINK): Added. * Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86360 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-20 Michael Koch <konqueror@gmx.de>mkoch2004-08-202-19/+24
| | | | | | | | * configure.ac: Replaced all AC_TRY_COMPILE macros with AC_COMPILE_IFELSE macros. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86333 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-20 Michael Koch <konqueror@gmx.de>mkoch2004-08-208-8/+15
| | | | | | | | | | * configure.in: Renamed to configure.ac. * configure.ac: New file. * configure, Makefile.in, gcj/Makefile.in, include/Makefile.in include/config.h.in, testsuite/Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86326 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-20 Michael Koch <konqueror@gmx.de>mkoch2004-08-204-40/+32
| | | | | | | | * configure.in: Rewrote some obsolete stuff for autoconf 2.59. * aclocal.m4, configure: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86322 138bc75d-0d04-0410-961f-82ee72b054a4
* Correct ChangeLog formatting.bryce2004-08-191-9/+3
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86260 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-19 Thomas Fitzsimmons <fitzsim@redhat.com>mkoch2004-08-1910-4128/+22376
| | | | | | | | | | | | | | | | | | | Michael Koch <konqueror@gmx.de> * configure.in, Makefile.am: Ported to automake 1.9. * Makefile.in: aclocal.m4 configure gcj/Makefile.in include/Makefile.in testsuite/Makefile.in include/config.h.in: Regenerated. * gcc/doc/install.texi: Update entry about automake for libjava. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86258 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-19 Tom Tromey <tromey@redhat.com>mkoch2004-08-192-1/+5
| | | | | | | * java/net/DatagramSocket.java: Fixed typo. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86244 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-18 Bryce McKinlay <mckinlay@redhat.com>bryce2004-08-182-17/+41
| | | | | | | | | | | | PR libgcj/17081 * java/net/URI.java (string): New field. Make all other fields transient. (readObject): Implemented. (writeObject): Implemented. (URI): Set 'string'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86197 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-18 Bryce McKinlay <mckinlay@redhat.com>bryce2004-08-182-1/+7
| | | | | | | | | PR libgcj/17079 * java/util/logging/Handler.java (isLoggable): Accept record if its log level equals the threshold level. From Robin Green. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86187 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-18 David Daney <ddaney@avtrex.com>daney2004-08-182-7/+14
| | | | | | | | * java/lang/natPosixProcess.cc (waitForSignal): Use sigsuspend instead of sigwait. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86186 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-17 Michael Koch <konqueror@gmx.de>mkoch2004-08-173-11/+31
| | | | | | | | * Makefile.am (AM_CXXFLAGS): Reformatted to make it more ease to read. * Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86130 138bc75d-0d04-0410-961f-82ee72b054a4
* PR java/8473:tromey2004-08-162-1/+5
| | | | | | | * testsuite/libjava.jacks/jacks.xfail: Removed passing test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86086 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-16 Michael Koch <konqueror@gmx.de>mkoch2004-08-166-22/+36
| | | | | | | | | | | | | * Makefile.am (math_c_files): Renamed from c_files. (math_c_source_files): Renamed from c_source_files. * Makefile.in, gcj/Makefile.in, include/Makefile.in, testsuite/Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86080 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-16 Bryce McKinlay <mckinlay@redhat.com>bryce2004-08-163-3/+9
| | | | | | | | | * configure.in (AC_CONF_SUBDIRS): Use literal for ltdl directory to avoid autoconf warning. * configure: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86072 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-14 Andreas Tobler <a.tobler@schweiz.ch>andreast2004-08-143-4/+10
| | | | | | | | | * java/net/natInetAddressPosix.cc (lookup): Reflect rename of localhostAddress to loopbackAddress. * java/net/natInetAddressWin32.cc (lookup): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85982 138bc75d-0d04-0410-961f-82ee72b054a4
* libjava:bryce2004-08-134-9/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2004-08-13 Bryce McKinlay <mckinlay@redhat.com> * configure.in (GCINCS): Don't use "boehm-cflags". Instead, -I boehm-gc's include dirs. * configure: Rebuilt. * include/boehm-gc.h: Include gc_config.h. boehm-gc: 2004-08-13 Bryce McKinlay <mckinlay@redhat.com> * configure.ac (gc_cflags): Add -Iinclude. (AC_CONFIG_HEADERS): New. Configure gc_config.h header. Don't write DEFS to boehm-cflags file. * configure: Rebuilt. * gcj_mlc.c: Check #ifdef GC_GCJ_SUPPORT after including headers. * specific.c: Check #ifdef GC_LINUX_THREADS after including headers. * include/gc_config_macros.h: Remove backward-compatibility redefinitions of GC_ names. * include/gc.h: Include <gc_config.h>. 2004-08-13 Bryce McKinlay <mckinlay@redhat.com> Import Boehm GC version 6.3. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85972 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-13 Bryce McKinlay <mckinlay@redhat.com>bryce2004-08-133-18/+33
| | | | | | | | | | | | | | * java/net/InetAddress.java (loopbackAddress): Renamed from localhostAddress. (getByName): Return loopback address for null hostname, without security check. Use lookup(), not getAllByName. (getAllByName): Return loopback address for null hostname, without security check. * java/net/natInetAddressPosix.cc (lookup): Don't perform security check here. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85967 138bc75d-0d04-0410-961f-82ee72b054a4
* PR libgcj/17020bryce2004-08-132-11/+18
| | | | | | | | | | Reported by Robin Green. * defineclass.cc (handleField): Don't throw exception on unrecognised modifier. Add FIXME comments for spec compliance. (handleMethod): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85952 138bc75d-0d04-0410-961f-82ee72b054a4
* PR libgcj/16662hboehm2004-08-122-21/+139
| | | | | | | | | | | | | | | * java/lang/natObject.cc (LOCK_LOG, LOG): Add debug tracing. (Almost everywhere): add LOG calls, fix, add comments. (_Jv_MonitorEnter): Replace masking of LOCKED bit with assertion. Add explicit check for LOCKED bit in slow case (PR 16662). (_Jv_MonitorExit): Add casts in debug-only code. Always release LOCKED bit before throwing exception. (_Jv_ObjectCheckMonitor): Lock may be held if lightweight lock isn't. Handle easy cases without lock acquisition. (Object::wait): Use NotifyAll for lock inflation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85884 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-03 David Daney <ddaney@avtrex.com>daney2004-08-1213-0/+286
| | | | | | | | | | | | | | | | | | * testsuite/libjava.lang/Process_1.java: New test. * testsuite/libjava.lang/Process_2.java: New test. * testsuite/libjava.lang/Process_3.java: New test. * testsuite/libjava.lang/Process_4.java: New test. * testsuite/libjava.lang/Process_5.java: New test. * testsuite/libjava.lang/Process_6.java: New test. * testsuite/libjava.lang/Process_1.out: Expected result. * testsuite/libjava.lang/Process_2.out: Expected result. * testsuite/libjava.lang/Process_3.out: Expected result. * testsuite/libjava.lang/Process_4.out: Expected result. * testsuite/libjava.lang/Process_5.out: Expected result. * testsuite/libjava.lang/Process_6.out: Expected result. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85881 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-12 David Daney <ddaney@avtrex.com>daney2004-08-1213-508/+1098
| | | | | | | | | | | | | | | | | | | | | | PR libgcj/11801 * java/lang/PosixProcess.java: Rewrote. * java/lang/natPosixProcess.cc: Rewrote. * java/lang/Runtime.java (execInternal): Declare throws IOException. * gcj/javaprims.h (ConcreteProcess$ProcessManager): Declare. * posix-threads.cc (block_sigchld) New function. (_Jv_ThreadRegister) Use it. (_Jv_ThreadStart) Use it. * configure.in (PLATFORM_INNER_NAT_HDRS): New AC_SUBST() used in... * Makefile.am: ... to specify extra native headers. * configure: Regenerated. * include/config.h: Regenerated. * Makefile.in: Regenerated. * gcj/Makefile.in: Regenerated. * include/Makefile.in: Regenerated. * testsuite/Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85880 138bc75d-0d04-0410-961f-82ee72b054a4
* PR tree-optimization/16867dnovillo2004-08-123-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * tree.c (is_global_var): New function. (needs_to_live_in_memory): Check for TREE_ADDRESSABLE. Call is_global_var. * tree.h (DECL_NEEDS_TO_LIVE_IN_MEMORY_INTERNAL): Remove. Update all users. (is_global_var): Declare. * tree-dfa.c (dump_variable): Display global and addressable attributes. (add_referenced_var): Clarify documentation when marking variables call-clobbered. * tree-flow-inline.h (is_call_clobbered): Call is_global_var instead of needs_to_live_in_memory. (mark_call_clobbered): If the variable is a tag, mark it DECL_EXTERNAL. * tree-gimple.c (is_gimple_reg): Don't check for TREE_ADDRESSABLE. (is_gimple_non_addressable): Likewise. * tree-ssa-alias.c (get_nmt_for): Always check whether the tag needs to be marked call-clobbered. (setup_pointers_and_addressables): Call is_global_var instead of needs_to_live_in_memory. * tree-ssa-dce.c (need_to_preserve_store): Remove. Update all users with is_global_var. (mark_stmt_if_obviously_necessary): Fix processing of aliased stores. Don't check the virtual definitions. Rather, check whether the store is going into global memory. (find_obviously_necessary_stmts): Get the symbol from the PHI result. * tree-ssa-operands.c (get_call_expr_operands): Do not add clobbering may-defs if the call does not have side effects. libjava/ChangeLog PR tree-optimization/16867 * testsuite/libjava.lang/PR16867.java: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85874 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcj/javaprims.h (_Jv_Utf8Const): Change struct to a class,bothner2004-08-1214-117/+163
| | | | | | | | | | | | | | | | | | | | | | | | with private fields and access methods. (_Jv_NewStringUTF, _Jv_hashUtf8String): New function declarations. * gcj/cni.h (_Jv_NewStringUTF): Move to javaprims.h. * prims.cc (_Jv_Utf8COnst::init): New method implementation. ( _Jv_makeUtf8Const): Rewrite using new constructors. (hashUtf8String): Rename to +_Jv_hashUtf8String and make non-static. * defineclass.cc: Use new _Utf8Const access/convenience methods. * jni.cc: Likewise. * resolve.cc: Likewise. * gcj/field.h: Likewise. * include/jvm.h: Likewise. * java/lang/Class.h: Likewise. * java/lang/natClass.cc: Likwise. * java/lang/natClassLoader.cc: Likewise * java/lang/reflect/natMethod.cc: Likewise * verify.cc: Likewise. (_Jv_BytecodeVerifier::make_utf8_const): Optimize. (~_Jv_BytecodeVerifier): Don't need second _Jv_Free call. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85854 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-10 Andrew Haley <aph@redhat.com>aph2004-08-101-0/+5
| | | | | | | | * testsuite/libjava.lang/err14.java: New file. * testsuite/libjava.lang/err14.out: New file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85754 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-10 Andrew Haley <aph@redhat.com>aph2004-08-102-0/+22
| | | | | | | | * testsuite/libjava.lang/err14.java: New file. * testsuite/libjava.lang/err14.out: New file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85752 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-05 Andreas Tobler <a.tobler@schweiz.ch>andreast2004-08-053-2/+8
| | | | | | | | | * Makefile.am: Fix missing rename from x_nat_headers to xlib_nat_headers. * Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85612 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-04 Andrew Haley <aph@redhat.com>aph2004-08-052-9/+11
| | | | | | | * java/security/BasicPermission.java: Don't check wildcards. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85608 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-04 Thomas Fitzsimmons <fitzsim@redhat.com>mkoch2004-08-045-157/+62
| | | | | | | | | | | | | Michael Koch <konqueror@gmx.de> * acinclude.m4: Correctly quote PKG_CHECK_MODULES. * configure.in: Replaced all usages of AC_LINK_FILES by AC_CONFIG_LINKS. * aclocal.m4, configure: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85569 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-04 Thomas Fitzsimmons <fitzsim@redhat.com>mkoch2004-08-044-50/+57
| | | | | | | | | | | | Michael Koch <konqueror@gmx.de> * acconfig.h: Removed. * Makefile.am: Rename variables for xlib peer to include xlib and gtk_c_headers to gtk_jni_headers. * Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85566 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-04 Andrew Haley <aph@redhat.com>aph2004-08-042-2/+7
| | | | | | | | * testsuite/lib/libjava.exp (bytecompile_file): Byte compile with debugging. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85565 138bc75d-0d04-0410-961f-82ee72b054a4
* Reverted renaming of configure.in to configure.ac, has to waitbonzini2004-08-042-5/+0
| | | | | | | for updating of automake. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85555 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-04 Paolo Bonzini <bonzini@gnu.org>bonzini2004-08-042-0/+5
| | | | | | | | * configure.ac: New name of... * configure.in: ... this file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85551 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure.in: Eliminate uses of changequote (mostly by quoting []).neroden2004-08-043-137/+191
| | | | | | | | | | Replace most top level 'dnl' comments with '#' comments, conforming to new autoconf style. Use AS_HELP_STRING throughout; improve a few help strings. * configure: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85540 138bc75d-0d04-0410-961f-82ee72b054a4
* * acinclude.m4: Include no-executables.m4.neroden2004-08-039-4943/+12271
| | | | | | | | | | | | | | * aclocal.m4: Rebuild. * configure.in: Convert to the autoconf 2.59 version of of the no-executables hack, and also of the nonstandard CXX hack and the multilibbed CC and CXX hack. Change prerequisite to autoconf 2.59. * configure: Rebuild with autoconf 2.59. (Woo-hoo!) * Makefile.in, gcj/Makefile.in, include/Makefile.in, testsuite/Makefile.in: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85495 138bc75d-0d04-0410-961f-82ee72b054a4
* * jni.cc: Reindented.tromey2004-08-032-37/+41
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85491 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-02 Bryce McKinlay <mckinlay@redhat.com>bryce2004-08-032-1/+9
| | | | | | | | * java/sql/Timestamp.java (valueOf): Synchronize access to dateFormat. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85460 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-02 Bryce McKinlay <mckinlay@redhat.com>bryce2004-08-022-0/+14
| | | | | | | | | | | | | PR java/16701 * parse.y (fold_constant_for_init): Call resolve_field_access with correct current_class context. 2004-08-02 Bryce McKinlay <mckinlay@redhat.com> * testsuite/libjava.compile/PR16701.java: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85453 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-08-01 Andrew John Hughes <gnu_andrew@member.fsf.org>mkoch2004-08-017-6/+111
| | | | | | | | | | * java/util/Collection.java, java/util/List.java, java/util/Map.java, java/util/Set.java, java/util/SortedMap.java, java/util/SortedSet.java: Added additional exceptions to documentation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85403 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure.in [host *mingw*] (SYSTEMSPEC): Remove -lwsock32.dannysmith2004-08-015-3/+14
| | | | | | | | | | * configure. Regenerate. * include/win32.h: Explicitly include winsock2.h * win32.cc (_Jv_platform_initialize): Require version 2.2 of Winsock api. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85401 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-07-30 Michael Koch <konqueror@gmx.de>mkoch2004-07-305-12/+30
| | | | | | | | | | | | | | | | | * java/util/zip/GZIPInputStream.java (GZIPInputStream): Increase buffer size to 4k. * java/util/zip/GZIPOutputStream.java (GZIPOutputStream): Likewise. * java/util/zip/Inflater.java (setInput): Merged formating with GNU classpath. * java/util/zip/InflaterInputStream.java (InflaterInputStream): Increase buffer size to 4k. (fill): Throw exception if stream ends early. (read): Merged endless-loop with GNU classpath. (skip): Increase buffer size to 2k. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85340 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-07-30 Michael Koch <konqueror@gmx.de>mkoch2004-07-302-1/+11
| | | | | | | | | * gnu/java/awt/EmbeddedWindow.java (addNotify): Use AccessController to allow execution of privileged code. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85337 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-07-29 Michael Koch <konqueror@gmx.de>mkoch2004-07-292-2/+9
| | | | | | | | | * gnu/java/lang/MainThread.java: Explicitely import used classes. (args): Make it type String[]. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85299 138bc75d-0d04-0410-961f-82ee72b054a4
OpenPOWER on IntegriCloud