OSDN Git Service

74ebbac58a1b84bc51e9854c0f0241deb5d5f86f
[pf3gnuchains/gcc-fork.git] / libjava / ChangeLog
1 2007-01-19  Keith Seitz  <keiths@redhat.com>
2
3         * gnu/classpath/jdwp/natVMVirtualMachine.cc: Mark unused parameters
4         in methods and reformat.
5
6         * gnu/classpath/jdwp/natVMFrame.cc: Mark unused parameters with
7         MAYBE_UNUSED.
8
9 2007-01-18  Keith Seitz  <keiths@redhat.com>
10
11         From Macro Trudel <mtrudel@gmx.ch>:
12         * gnu/classpath/jdwp/natVMVirtualMachine.cc (jdwpVMInitCB):
13         Use JNICALL.
14
15 2007-01-18  Marco Trudel  <mtrudel@gmx.ch>
16
17         * jni.cc (_Jv_JNI_FindClass): Initialize class.
18         * testsuite/libjava.jni/findclass2.jar: New file.
19         * testsuite/libjava.jni/findclass2.h: New file.
20         * testsuite/libjava.jni/findclass2.java: New file
21         * testsuite/libjava.jni/findclass2.c: New file.
22         * testsuite/libjava.jni/findclass2.out: New file.
23
24 2007-01-18  Tom Tromey  <tromey@redhat.com>
25
26         * configure: Rebuilt.
27         * configure.ac: Use multi_basedir instead of libgcj_basedir.
28
29 2007-01-18  Gary Benson  <gbenson@redhat.com>
30
31         * gnu/java/nio/natVMPipeEcos.cc:
32         Renamed from gnu/java/nio/natPipeImplEcos.cc.
33         * gnu/java/nio/natVMPipePosix.cc:
34         Renamed from gnu/java/nio/natPipeImplPosix.cc.
35         * gnu/java/nio/natVMPipeWin32.cc:
36         Renamed from gnu/java/nio/natPipeImplWin32.cc.
37         * gnu/java/nio/natVMSelectorEcos.cc:
38         Renamed from gnu/java/nio/natSelectorImplEcos.cc.
39         * gnu/java/nio/natVMSelectorPosix.cc:
40         Renamed from gnu/java/nio/natSelectorImplPosix.cc.
41         * gnu/java/nio/natVMSelectorWin32.cc:
42         Renamed from gnu/java/nio/natSelectorImplWin32.cc.
43         * java/io/natVMObjectInputStream.cc:
44         Renamed from java/io/natObjectInputStream.cc.
45         * java/lang/natVMDouble.cc:
46         Renamed from java/lang/natDouble.cc.
47         * java/lang/natVMFloat.cc:
48         Renamed from java/lang/natFloat.cc.     
49         * Makefile.am, configure.ac: Reflect the above.
50         * Makefile.in, configure: Rebuilt.
51
52 2007-01-17  Andrew Haley  <aph@redhat.com>
53
54         * Makefile.in: Rebuilt.
55         * Makefile.am (ecjx_LDFLAGS): Pass -fbootclasspath.
56
57 2007-01-17  Keith Seitz  <keiths@redhat.com>
58
59         * java/lang/natThread.cc (finish_): Add JVMTI ThreadEnd notification.
60         (_Jv_NotifyThreadStart): Add JVMTI ThreadStart notification.
61
62 2007-01-16  Jack Howarth  <howarth@bromo.med.uc.edu>
63
64         * configure.ac: Use multi.m4 from aclocal rather than custom
65         code.  Use multi_basedir instead libgcj_basedir.  Test for
66         /proc/self/exe when not cross-compiling.
67         * aclocal.m4: Regenerate.
68         * configure: Regenerate.
69         * Makefile.in: Regenerate.
70
71 2007-01-17  Gary Benson  <gbenson@redhat.com>
72
73         * java/nio/natVMDirectByteBufferImpl.cc:
74         Renamed from java/nio/natDirectByteBufferImpl.cc.
75         * Makefile.am: Reflect the above.
76         * Makefile.in: Rebuilt.
77         
78 2007-01-17  Marco Trudel  <mtrudel@gmx.ch>
79
80         * jvmti.cc (_Jv_JVMTI_GetAllThreads): Now static.  Use JNICALL.
81         Fixed indentation.  Removed unused variable.
82
83 2007-01-16  Tom Tromey  <tromey@redhat.com>
84
85         * java/lang/natThread.cc (finalize_native): Remove cast.
86         (_Jv_GetCurrentJNIEnv): Likewise.
87         * include/jvm.h (struct natThread) <jni_env>: Declare as
88         _Jv_JNIEnv*.
89
90 2007-01-16  Keith Seitz  <keiths@redhat.com>
91
92         * testsuite/libjava.jvmti/natevents.cc (FieldModificationCB): Use
93         %#llx instead of %d for new_value.
94         * testsuite/libjava.jvmti/events.out: Update expected output.
95         * testsuite/libjava.jvmti/events.jar: Regenerate.
96
97 2007-01-16  Keith Seitz  <keiths@redhat.com>
98
99         * gnu/classpath/jdwp/natVMVirtualMachine.cc (DEFINE_CALLBACK):
100         New macro.
101         (ENABLE_EVENT): New macro.
102         (initialize): Define and enable JVMTI VM_INIT callback.
103         (jdwpVMInitCB): New function.
104
105 2007-01-16  Kyle Galloway  <kgallowa@redhat.com>
106
107         * jvmti.cc (_Jv_JVMTI_GetAllThreads): New function.
108         * testsuite/libjava.jvmti/getallthreads.java: New test.
109         * testsuite/libjava.jvmti/natgetallthreads.cc: Ditto.
110         * testsuite/libjava.jvmti/getallthreads.out: Ditto.
111         * testsuite/libjava.jvmti/getallthreads.h: Ditto.
112         * testsuite/libjava.jvmti/getallthreads.jar: Ditto. 
113
114 2007-01-15  Keith Seitz  <keiths@redhat.com>
115
116         * gnu/classpath/jdwp/natVMVirtualMachine.cc (suspendThread): Use
117         java.lang.StringBuilder instead of java.lang.StringBuffer.
118         (resumeThread): Likewise.
119
120 2007-01-15  Gary Benson  <gbenson@redhat.com>
121
122         * java/nio/MappedByteBuffer.java: Removed.
123         * sources.am, Makefile.in: Rebuilt.
124
125 2007-01-15  Gary Benson  <gbenson@redhat.com>
126
127         * java/net/URLClassLoader.java: Removed.
128         * gnu/java/net/loader/Load_gcjlib.java: New file.
129         * gnu/gcj/runtime/BootClassLoader.java: Ensure core
130         URL handler is present in static executables.
131         * sources.am, Makefile.in: Rebuilt.
132
133 2007-01-14  H.J. Lu  <hongjiu.lu@intel.com>
134
135         * Makefile.am (libgcj_la_LDFLAGS): Add
136         $(LIBGCJ_LD_SYMBOLIC_FUNCTIONS).
137         (libgcj_tools_la_LDFLAGS): Likewise.
138         (libgcj_bc_la_LDFLAGS): Likewise.
139         * Makefile.in: Regenerated.
140
141         * configure.ac: Use ACX_PROG_LD_GNU_SYMBOLIC.  Set
142         LIBGCJ_LD_SYMBOLIC_FUNCTIONS to $SYMBOLIC_LDFLAGS.  Set
143         libgcj_ld_symbolic to $SYMBOLIC_LDFLAGS if it isn't set.
144         Substitute LIBGCJ_LD_SYMBOLIC_FUNCTIONS.
145         * configure: Regenerated.
146         * aclocal.m4: Likewise.
147         * gcj/Makefile.in: Likewise.
148         * include/Makefile.in: Likewise.
149         * testsuite/Makefile.in: Likewise.
150
151 2007-01-12  Kaz Kojima  <kkojima@gcc.gnu.org>
152
153         * sysdep/sh/locks.h (read_barrier): New.
154         (write_barrier): Likewise.
155
156 2007-01-12  Andrew Haley  <aph@redhat.com>
157
158         * include/i386-signal.h: Rewrite to use rt_sigaction.
159
160 2007-01-11  Andrew Haley  <aph@redhat.com>
161
162         * prims.cc (jdwpOptions) Fix deprecated cast from char[] constant
163         to char*.
164         * include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): Rewrite to fix
165         aliasing violation.
166
167 2007-01-10  Tom Tromey  <tromey@redhat.com>
168
169         * gnu/gcj/xlib/*.h: New files.
170         * gnu/awt/xlib/*.h: Likewise.
171         * classpath/lib/gnu/gcj/xlib: New class files.
172         * classpath/lib/gnu/awt/xlib: Likewise.
173
174 2007-01-10  Tom Tromey  <tromey@redhat.com>
175
176         * HACKING: Various updates.
177
178 2007-01-10  Tom Tromey  <tromey@redhat.com>
179
180         * java/lang/natDouble.cc (toString): Added parens.
181         * gnu/gcj/io/shs.h (PROTO): Define.
182         * link.cc (resolve_pool_entry): Added missing braces.
183
184 2007-01-10  H.J. Lu  <hongjiu.lu@intel.com>
185
186         PR libgcj/30424
187         * sysdep/ia64/locks.h (read_barrier): New.
188         (write_barrier): New.
189
190 2007-01-10  Gary Benson  <gbenson@redhat.com>
191
192         * java/net/URL.java: Removed.
193         * sources.am, Makefile.in: Rebuilt.
194
195 2007-01-10  Matthias Klose  <doko@debian.org>
196
197         * Makefile.am (install-exec-hook): Support $(DESTDIR).
198         * Makefile.in: Regenerated.
199
200 2007-01-05  Tom Tromey  <tromey@redhat.com>
201
202         * testsuite/libjava.loader/loader.exp (gcj_loader_run): Find
203         dummy.class in srcdir.
204
205 2007-01-03  Tom Tromey  <tromey@redhat.com>
206
207         * testsuite/libjava.cni/cni.exp (gcj_cni_compile_cxx_to_o): Add -I
208         for srcdir.
209
210 2007-01-03  Tom Tromey  <tromey@redhat.com>
211
212         * testsuite/*: Added many .jar and .h files.
213         * testsuite/libjava.special/special.exp
214         (gcj_special_try_compiler): New proc.
215         * testsuite/libjava.loader/loader.exp (gcj_loader_run): Don't
216         bytecompile source.  Search for .jar files.
217         (gcj_loader_test_one): Don't look for MyLoader.java.
218         * testsuite/libjava.jvmti/jvmti.exp (gcj_jvmti_test_one): Don't
219         bytecompile sources or build headers.
220         (gcj_jvmti_run): Look for .jar files.
221         * testsuite/libjava.jni/jni.exp (gcj_jni_run): Compile .jar
222         files.
223         (gcj_jni_test_one): Don't bytecompile sources or build headers.
224         Set classpath when invoking gij.
225         (gcj_jni_invocation_test_one): Likewise.
226         * testsuite/libjava.cni/cni.exp (gcj_cni_test_one): Don't build
227         headers or bytecompile sources.
228         (gcj_cni_run): Use .jar files, not .java files.
229         * testsuite/libjava.lang/lang.exp: Compile .jar files.
230
231 2007-01-02  Tom Tromey  <tromey@redhat.com>
232
233         * configure: Rebuilt.
234         * configure.ac: Check for gjar.
235
236 2007-01-02  Tom Tromey  <tromey@redhat.com>
237
238         * testsuite/libjava.jacks/jacks.exp: Removed.
239         * testsuite/libjava.jacks/jacks.xfail: Removed.
240