aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/libjava/ChangeLog-1999
blob: 540531b97b1203f9bc950b71b1e34c23e5dae900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
1999-12-21  Per Bothner  <per@bothner.com>

	* java/lang/natClass.cc (getDeclaredMethods): Correctly compute
	offset in new Method.

1999-12-22  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/lang/natObject.cc (notify): Throw message with
	IllegalMonitorStateException.
	(notifyAll): Ditto.
	(wait): Ditto.
	* java/lang/Thread.java (isInterrupted): Don't clear interrupt_flag.
	(isInterrupted_): New function, which does clear interrupt_flag.
	(interrupt): Use `isInterrupted_'.
	* java/lang/natThread.cc (interrupt): Add comment.
	(join): Set `prev' in joiner loop.
	Change various calls to `isInterrupted' to use `isInterrupted_'.
	* posix-threads.cc (_Jv_CondWait): Allways use pthread_cond_timedwait
	on linux. Set result to 0 on an interrupt. Test interrupted status
	of java Thread object directly. 
	FLAG_INTERRUPTED: removed.
	(_Jv_ThreadStart): Throw OutOfMemoryError if pthread_create fails.
	(_Jv_ThreadInterrupt): Don't set FLAG_INTERRUPTED.
	(_Jv_InitThreads): Don't block SIGINT.
	(_Jv_ThreadWait): Don't configure SIGINT handler.

1999-12-21  Tom Tromey  <tromey@cygnus.com>

	* mauve-libgcj: Added java.lang.reflect.Modifier.toString12.

1999-12-20  Tom Tromey  <tromey@cygnus.com>

	* java/lang/reflect/Modifier.java (STRICT): New constant.
	(isStrict): New method.
	(toString): Added `strict'.

1999-12-23  Anthony Green  <green@cygnus.com>

	* configure: Rebuilt.
	* configure.in (LIBDATASTARTSPEC): Force data_start in with
	linker trick.

1999-12-19  Anthony Green  <green@cygnus.com>

	* libgcjdata.c: New file.
	* libgcj.spec.in: Use @LIBDATASTARTSPEC@ in startfile.
	* configure: Rebuilt.
	* configure.in (LIBDATASTARTSPEC): Force data with a known name
	into the program.
	* Makefile.in: Rebuilt.
	* Makefile.am: Build libgcjdata.a.

	* libgcj.spec.in: Use @FORCELIBGCCSPEC@ in startfile.
	* configure: Rebuilt.
	* configure.in (FORCELIBGCCSPEC): Force important parts of libgcc
	into every program.

1999-12-17  Tom Tromey  <tromey@cygnus.com>

	* java/lang/reflect/Method.java (toString): Call getType if
	required.  Partial fix for PR libgcj/111.  From Per Bothner.

	* java/lang/natPosixProcess.cc (startProcess): Don't use sprintf.

1999-12-16  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/lang/Boolean.java (Boolean(String)): Set `value' to false on a 
	null String constructor parameter.
	* java/net/natPlainSocketImpl.cc: Remove unneccessary sprintf calls
	for exception messages.
	BooleanClass: declare.
	(setOption): Use BooleanClass instead of Class.forName() for
	instanceof test.
	(bind): Cast 4th parameter of setsockopt to `char *' for
	compatibility with older Solaris headers.
	* java/net/natPlainDatagramSocketImpl.cc: Remove unneccessary
	sprintf calls for exception messages.
	BooleanClass, IntegerClass: declare.
	(setOption): Use BooleanClass and IntegerClass, not Class.forName()
	for instanceof test.

1999-12-15  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natSystem.cc (init_properties): Don't set user.name or
	user.home if NO_GETUID defined.  Only set user.dir if getcwd
	exists.

	* include/config.h.in: Rebuilt.
	* acconfig.h (NO_GETUID): New define.
	* configure.in: Rebuilt.
	* configure.in: Define NO_GETUID in cross case.  Check for getcwd
	in native case.

1999-12-08  Tom Tromey  <tromey@cygnus.com>

	* include/posix-threads.h (_Jv_PthreadCheckMonitor): Handle case
	where no recursive mutexes exist.  Fixes PR libgcj/117.

1999-12-05  Anthony Green  <green@cygnus.com>

	* include/jvm.h: Declare many functions with
	__attribute__((__malloc__)).
	* gcj/javaprims.h: Ditto.

Thu Dec  2 17:26:47 1999  Anthony Green  <green@cygnus.com>

	* THANKS: Giving credit where credit is due.

1999-12-02  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/net/ServerSocket.java (ServerSocket): Bind to any interface 
	if bindAddr is null.
	* java/lang/natString.cc (equalsIgnoreCase): return false if
	anotherString is null.
	* java/lang/Boolean.java (valueOf): return FALSE if argument is
	null.

1999-11-30  Tom Tromey  <tromey@cygnus.com>

	* posix-threads.cc (_Jv_MutexInit): Use _Jv_PthreadGetMutex to get
	mutex to initialize.  Initialize `count' if required.
	Fixes PR libgcj/98.

1999-11-27  Per Bothner  <per@bothner.com>

	* exception.cc:  Remove prototype declarations for malloc and free.
	These clash with recent versions of glibc, which specifies `throws ()'
	when __cplusplus is defined.  Instead, #include <stdlib.h>.

1999-11-24  Tom Tromey  <tromey@cygnus.com>

	* prims.cc (_Jv_NewObjectArray): Use
	_Jv_GetArrayElementFromElementType.
	(_Jv_NewPrimArray): Likewise.
	* java/lang/natObject.cc (clone): Use
	_Jv_GetArrayElementFromElementType instead of sizeof.
	* java/lang/natSystem.cc (arraycopy): Use
	_Jv_GetArrayElementFromElementType.
	* include/jvm.h (_Jv_GetArrayElementFromElementType): New
	function.

1999-11-23  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/net/natPlainSocketImpl.cc: Fix potential buffer overruns in
	Exception messages. PR java.net/57.
	(bind): set SO_REUSEADDR before bind.
	* java/net/natPlainDatagramSocketImpl.cc: Fix potential buffer
	overruns. PR java.net/57.

1999-11-19  Tom Tromey  <tromey@cygnus.com>

	* Makefile.am (DIVIDESPEC): Removed.
	(EXCEPTIONSPEC): Removed.

1999-11-19  Andrew Haley  <aph@cygnus.com>

	* Makefile.am (JCFLAGS): Add -L$(here)
	(JC1FLAGS): Ditto.
	* Makefile.in: Rebuild.

1999-11-18  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natDouble.cc: Include <config.h>.

	* include/config.h.in: Rebuilt.
	* acconfig.h (SJLJ_EXCEPTIONS): Undefine.
	* configure.host: Force -fsjlj-exceptions on non-sparc, non-x86
	targets.
	* configure: Rebuilt.
	* configure.in (EXCEPTIONSPEC): Allow -fsjlj-exceptions to be
	requested by configure.host.  Don't put `-D' option into
	libgcj.spec; instead, define SJLJ_EXCEPTIONS with AC_DEFINE.

	* configure: Rebuilt.
	* configure.in (EXCEPTIONSPEC): Changed `_' to `-' in
	sjlj-exceptions.

1999-11-18  Andrew Haley  <aph@cygnus.com>

	* Makefile.am: rename SJLJ_EXCEPTIONS to EXCEPTIONSPEC.
	(AM_CFLAGS): remove SJLJ_EXCEPTIONS.
	(JC1FLAGS): Ditto.
	* Makefile.in: Rebuild
	* acconfig.h: remove SJLJ_EXCEPTIONS
	* configure.in: rename SJLJ_EXCEPTIONS to EXCEPTIONSPEC.
	Do not AC_DEFINE SJLJ_EXCEPTIONS.
	* libgcj.spec.in: Add EXCEPTIONSPEC to jc1.
	* gcj/Makefile.in, include/Makefile.in: rebuild.
	* include/config.h.in: remove SJLJ_EXCEPTIONS.
		
1999-11-18  Andrew Haley  <aph@cygnus.com>

	* gij.cc (main): Rename label to prevent conflict.

	* exception.cc (_Jv_type_matcher): Don't check the table if we're
	using setjmp/longjmp exceptions: there isn't one.

1999-11-17  Andrew Haley  <aph@cygnus.com>

	* exception.cc (_Jv_type_matcher): Ignore null exception tables.
	(_Jv_Throw ): Add SJLJ_EXCEPTIONS.
	(__sjthrow): Add declaration.
	* Makefile.am (JCFLAGS): Add SJLJ_EXCEPTIONS
	(JC1FLAGS): Ditto
	(AM_CFLAGS): Ditto
	(AM_CXXFLAGS): Ditto
	* Makefile.in: Rebuild
	* acconfig.h: Add SJLJ_EXCEPTIONS
	* configure.in: Add SJLJ_EXCEPTIONS
	* configure: Rebuild.
	* gcj/Makefile.in: Rebuild.
	* gcj/cni.h: Add support for sjlj-exceptions.
	* gcj/javaprims.h: Add _Jv_Sjlj_Throw.
	* include/Makefile.in: Rebuild.
	* include/default-signal.h: Add support for sjlj-exceptions.

1999-11-18  Tom Tromey  <tromey@cygnus.com>

	* no-threads.cc (_Jv_ThreadStart): Use JvFail and not JvAssert.

	* java/lang/natClass.cc (MCACHE_SIZE): Define as a power of 2
	minus 1.
	(method_cache): Made larger.

1999-11-11  Tom Tromey  <tromey@cygnus.com>

	* posix-threads.cc (_Jv_MutexInit): Use _Jv_PthreadGetMutex when
	initializing mutex.  Initialize `count' when required.

1999-11-07  Anthony Green  <green@trip.cygnus.com>

	* java/util/zip/ZipFile.java: Compute the offset of the ZipEntry
	data correctly.

1999-11-05  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natThread.cc (destroy): Removed incorrect comment.

1999-11-05  Jeff Sturm  <jsturm@sigma6.com>

	* boehm.cc (_Jv_GCSetInitialHeapSize): Swapped size & current.
	* prims.cc (parse_heap_size): Use end, not spec.  Use 1024
	multipler for `k'.

1999-11-05  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natThread.cc (stop): Removed argument name.

	* java/lang/ThreadGroup.java (ThreadGroup(int)): No longer
	`private'; now has default access.
	* Makefile.in: Rebuilt.
	* Makefile.am (java/lang/ThreadGroup.h): Removed.

1999-11-04  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natClass.cc (method_cache_count): Removed.
	(_Jv_FindMethodInCache): Don't loop looking for the hash entry.
	(_Jv_AddMethodToCache): Don't loop.

	* configure.in: Removed `qt' threads case.
	* include/quick-threads.h: Removed.
	* quick-threads.cc: Removed.

	* include/quick-threads.h (_Jv_ThreadCancel): Removed.
	(_Jv_ThreadDestroy): Likewise.
	* include/no-threads.h (_Jv_ThreadCancel): Removed.
	(_Jv_ThreadDestroy): Likewise.
	* include/posix-threads.h (struct _Jv_Thread_t): Removed
	`exception' field.
	(_Jv_ThreadCancel): Removed decl.
	(_Jv_ThreadDestroy): Removed.
	* posix-threads.cc (_Jv_ThreadCancel): Removed.
	(throw_cleanup): Removed.
	(really_start): Don't push or pop cleanup.
	(_Jv_ThreadInitData): Don't initialize `exception' field.
	* java/lang/Thread.java (stop): Officially unimplemented.
	* java/lang/natThread.cc (stop): Officially unimplemented.

1999-11-02  Bryce McKinlay  <bryce@albatross.co.nz>

	* posix-threads.cc: Don't include boehm-config.h. Include gcconfig.h 
	instead.

1999-11-02  Tom Tromey  <tromey@cygnus.com>

	* boehm.cc: Don't include boehm-config.h.

1999-11-01  Tom Tromey  <tromey@cygnus.com>

	* boehm.cc (_Jv_InitGC): Set GC_java_finalization.
	(sum_blocks): Removed.
	(_Jv_GCFreeMemory): Use GC_get_free_bytes.

1999-11-01  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/io/PrintStream (PrintStream): Fix illegal usage of "this" 
	  before "super".
	* java/io/OutputStreamWriter (OutputStreamWriter): ditto.
	* java/io/InputStreamReader (InputStreamReader): ditto.

1999-10-22  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (java/lang/ClassLoader.h): New target.
	* java/lang/natClassLoader.cc (_Jv_FindClass): Removed reference
	to `redirect'.

	* include/java-props.h (_Jv_Compiler_Properties): Changed
	declaration.
	* gcj/array.h (JvRunMain, _Jv_RunMain): Don't declare.
	* include/jvm.h (_Jv_GCSetInitialHeapSize,
	_Jv_GCSetMaximumHeapSize): Declare.
	(JvRunMain, _Jv_RunMain): Declare.
	(_Jv_SetMaximumHeapSize, _Jv_SetInitialHeapSize): Declare.
	* nogc.cc (_Jv_GCSetInitialHeapSize): New function.
	(_Jv_GCSetMaximumHeapSize): Likewise.
	* boehm.cc (_Jv_GCSetInitialHeapSize): New function.
	(_Jv_GCSetMaximumHeapSize): Likewise.
	* prims.cc (parse_heap_size): New function.
	(_Jv_SetInitialHeapSize): Likewise.
	(_Jv_SetMaximumHeapSize): Likewise.
	(_Jv_Compiler_Properties): New global.
	* gij.cc (help): New function.
	(version): Likewise.
	(heap_size): Likewise.
	(heap_max_size): Likewise.
	(main): Parse arguments.  Set _Jv_Compiler_Properties.
	Include <config.h>, <java-props.h>.
	(_Jv_Compiler_Properties): Removed.

1999-10-18  Tom Tromey  <tromey@cygnus.com>

	* gnu/gcj/runtime/VMClassLoader.java (getVMClassLoader): New
	method.
	(redirect): New static field.
	* java/lang/ClassLoader.java (getSystemClassLoader): Now
	native
	(getVMClassLoader0): Removed.
	* java/lang/natClassLoader.cc (getVMClassLoader0): Removed.
	(redirect): Removed.
	(getSystemClassLoader): Implemented.

1999-10-16  Anthony Green  <green@cygnus.com>

	* java/lang/ClassLoader.java (getSystemResource): Use
	getSystemClassLoader instead of ClassLoader.system.
	(getSystemResourceAsStream): Ditto.

	* java/lang/natClassLoader.cc (redirect): Make static and
	remove #ifdef INTERPRETER so it is always defined.
	(getVMClassLoader0): Remove #ifdef INTERPRETER so it always
	returns a VMClassLoader.

	* java/util/ResourceBundle.java (trySomeGetBundle): Create a
	PropertyResourceBundle if a properties file is found before a
	ResourceBundle class.

1999-10-15  Tom Tromey  <tromey@cygnus.com>

	* gij.cc (main): Formatting fixes.
	(_Jv_Compiler_Properties): Define.
	* java/lang/natSystem.cc (_Jv_Environment_Properties): Don't
	declare.
	(init_properties): Set properites from _Jv_Compiler_Properties.
	* include/java-props.h (_Jv_Compiler_Properties,
	_Jv_Environment_Properties): Declare.

	* include/java-props.h: Added copyright.

1999-10-13  Anthony Green  <green@cygnus.com>

	* libtool-version: Catch up by incrementing current.

	* configure.host: Disable use of GCJ_PROPERTIES for mips-tx39.
	* configure, include/config.h.in: Rebuilt.
	* acconfig.h (DISABLE_GETENV_PROPERTIES): Undefine.
	* configure.in: Added --disable-getenv-properties and new define
	`DISABLE_GETENV_PROPERTIES'.

	* prims.cc (PROCESS_GCJ_PROPERTIES): Define.
	(next_property_key): New function.
	(next_property_value): New function.
	(process_gcj_properties): New function.
	(JvRunMain): Call process_gcj_properties.
	(_JvRunMain): Ditto.

	* java/lang/natSystem.cc (init_properties): Set properties defined
	in GCJ_PROPERTIES.

	* include/java-props.h: New file.

	* java/lang/natSystem.cc (init_properties): Add new properties to
	conform with Java Product Versioning Specification.

1999-10-12  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Fixed test for --disable-java-net.

1999-10-06  Tom Tromey  <tromey@cygnus.com>

	* configure.in (GCJ): Define as "target-gcj", not "target/gcj"
	when building Canadian cross.
	(NATIVE): Don't define when cross-compiling.

1999-10-04  Tom Tromey  <tromey@cygnus.com>

	* java/net/natPlainSocketImpl.cc: Don't include headers if
	java.net is disabled.

	* Makefile.in: Rebuilt.
	* Makefile.am (ZINCS): Removed.  This is defined in configure.in
	when needed, and must be left empty when not needed.

1999-10-01  Anthony Green  <green@cygnus.com>

	* THANKS: Refreshed from htdocs version.

1999-10-01  Steve Chamberlain  <sac@pobox.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (ZINCS): Define

	* configure: Rebuilt.
	* configure.in (ZLIBSPEC): Spell -lzgcj correctly.

	* java/lang/ieeefp.h: Add definitions for picoJava.

1999-10-01  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Set classpath when invoking gcj.  Use changequote
	around sed invocation.

	* java/net/natPlainSocketImpl.cc: Stub native functions if
	DISABLE_JAVA_NET is defined.
	* java/net/natPlainDatagramSocketImpl.cc (setTimeToLive): Fixed
	typo in exception string.
	(getTimeToLive): Likewise.
	Stub native functions if DISABLE_JAVA_NET is defined.
	* java/net/natInetAddress.cc: Stub native functions if
	DISABLE_JAVA_NET is defined.
	* configure.host: Disable java.net for mips-tx39.
	* configure, include/config.h.in: Rebuilt.
	* acconfig.h (DISABLE_JAVA_NET): Undefine.
	* configure.in: Added --disable-java-net and new define
	`DISABLE_JAVA_NET'.

1999-09-30  Tom Tromey  <tromey@cygnus.com>

	* java/net/natPlainDatagramSocketImpl.cc: Indentation fix.

1999-09-29  Bryce McKinlay  <bryce@albatross.co.nz>

	* README: New file.

1999-09-28  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in (PROCESS): In POSIX case, only set if not already
	set.
	* configure.host (PROCESS): Set in mips-tx39 case.

	* aclocal.m4, configure: Rebuilt.
	* acinclude.m4 (LIB_AC_PROG_CC, LIB_AC_PROG_CXX): Provide
	appropriate AC_PROG_ symbol.

1999-09-24  Tom Tromey  <tromey@cygnus.com>

	* include/sparc-signal.h (SIGNAL_HANDLER): Third argument now a
	`void *'.
	(MAKE_THROW_FRAME): Cast third argument back to `ucontext_t *'.

	Fix for PR java.util/47:
	* configure, include/config.h: Rebuilt.
	* configure.in: Don't look for ctime or ctime_r.
	* Makefile.in: Rebuilt.
	* Makefile.am (nat_source_files): Don't mention natDate.cc.
	* java/util/natDate.cc: Removed.
	* java/util/TimeZone.java (tzIDs, rawOffsets, timeZones): New
	static fields.
	(getAvailableIDs): Rewrote.
	(getTimeZone): Rewrote.
	* java/util/Date.java (toGMTString): New method.
	(toLocaleString): New method.
	(toString): Rewrote.

1999-09-23  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Print message when checking to see if gcj can
	handle -fuse-divide-subroutine.

	* java/lang/natFirstThread.cc (run): Renamed from `run0'.  Removed
	dead code.
	* java/lang/FirstThread.java (run0): Renamed to `run'.
	(run): Removed.

	* prims.cc (main_init): New function.
	(JvRunMain): Call it.
	(_Jv_RunMain): Likewise.
	Include <signal.h>.
	(main_init): Ignore SIGPIPE.  Fixes PR 51.

1999-09-22  Tom Tromey  <tromey@cygnus.com>

	* libgcj.spec.in: Use `jc1' spec, not `cc1' spec.

1999-09-16  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/text/MessageFormat.java (MessageFormat(String)): Set the
	default locale.
	* java/text/NumberFormat.java: Check that object is a Number. If
	not, throw IllegialArgumentException.

1999-09-21  Tom Tromey  <tromey@cygnus.com>

	* gnu/gcj/convert/Output_UTF8.java (write): Don't exit loop unless
        both `inlength' and `bytes_todo' are 0.  Simplified 2-byte case.

	* include/posix-threads.h (_Jv_MutexDestroy): Use
	_Jv_PthreadGetMutex.
	(_Jv_MutexLock): Likewise.
	(_Jv_MutexUnlock): Likewise.

	* java/io/OutputStreamWriter.java (OutputStreamWriter): Reverted
	previous patch; it too was incorrect.
	* java/io/PrintStream.java (PrintStream): Likewise.

	* java/io/OutputStreamWriter.java (OutputStreamWriter): Don't
	refer to `this' before calling superclass constructor.
	* java/io/PrintStream.java (PrintStream): Don't refer to `this'
	before calling superclass constructor.

1999-09-20  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Send output of `-fuse-divide-subroutine' test
	compilation to /dev/null.

1999-09-14  Tom Tromey  <tromey@cygnus.com>

	* include/java-insns.h: Turned constants into an enum.  Added
	multiple-inclusion protection.

1999-09-10  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Build include/Makefile.
	* Makefile.in: Rebuilt.
	* Makefile.am (SUBDIRS): Added gcj and include.
	(install-data-local): New target.
	(extra_headers): New macro.
	* include/Makefile.in: New file.
	* include/Makefile.am: New file.

	* interpret.cc: Don't include gcj/field.h or gcj/cni.h.
	* java/lang/reflect/natField.cc: Don't include gcj/field.h or
	gcj/cni.h.
	* boehm.cc: Don't include java-threads.h or gcj/field.h.
	* resolve.cc: Include config.h.
	* defineclass.cc: Include config.h.
	* include/java-interp.h: Don't include config.h.
	* include/jvm.h: Include java-threads.h, Object.h, java-gc.h,
	cni.h.

	* gcj/javaprims.h: Regenerated namespace decls.
	* classes.pl (scan): Don't put `;' after closing brace.

	* Makefile.in: Rebuilt.
	* Makefile.am (INCLUDES): Added -I for top_srcdir.
	* configure.in: Create gcj/Makefile.
	* gcj/Makefile.in: New file.
	* gcj/Makefile.am: New file.
	* java/lang/Object.h: Don't include any other headers.
	* gcj/array.h: Renamed from include/java-array.h.
	* gcj/field.h: Renamed from include/java-field.h.
	* gcj/method.h: Renamed from include/java-method.h.
	* gcj/cni.h, gcj/javaprims.h: Moved from include/.
	Updated all files to reflect new include structure.

1999-09-09  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Fixed typo; variable is THREADSPEC and not
	THREADSPECS.

1999-09-08  Tom Tromey  <tromey@cygnus.com>

	* include/posix-threads.h (_Jv_PthreadCheckMonitor): Reverted
	previous change and implemented a correct test in the __m_count
	case.

	* include/posix-threads.h (_Jv_PthreadCheckMonitor): Changed test
	in __m_count case.

1999-09-07  Tom Tromey  <tromey@cygnus.com>

	* posix-threads.cc (_Jv_CondWait): pthread_ calls return error
	code and don't set errno.

	* posix-threads.cc (_Jv_CondWait): Check `errno' against EINTR,
	not `r'.  Changed `done_sleeping' to a `bool'.

1999-09-07  Matt Welsh <mdw@cs.berkeley.edu>

	* libjava/posix-threads.cc: Added _Jv_ThreadDataKey.
	Added FLAG_INTERRUPTED to indicate that a thread was interrupted
	by another thread, rather than by the GC.
	(_Jv_CondWait): Prevent premature thread wakeup by GC.
	(_Jv_InitThreads): Initialize _Jv_ThreadDataKey.
	* libjava/include/posix-threads.h (_Jv_ThreadCurrentData): New 
	function.

1999-09-03  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Check for fstat function.
	* java/io/natFileDescriptorPosix.cc (available): Use fstat() if
	FIONREAD fails.

1999-09-02  Tom Tromey  <tromey@cygnus.com>

	* include/java-array.h (jobjectArrayjchar): Removed unused
	declaration.

	* java/lang/natClassLoader.cc (_Jv_WaitForState): Call
	_Jv_PrepareCompiledClass while holding class mutex.

1999-09-01  Tom Tromey  <tromey@cygnus.com>

	* include/posix-threads.h (PTHREAD_MUTEX_IS_STRUCT): New define.
	(_Jv_PthreadGetMutex): Use it.
	(_Jv_PthreadCheckMonitor): Use new M_COUNT macros.
	(_Jv_MutexInit): Use PTHREAD_MUTEX_IS_STRUCT.
	(_Jv_MutexLock): Likewise.
	(_Jv_MutexUnlock): Likewise.
	* include/config.h.in: Rebuilt.
	* acconfig.h (PTHREAD_MUTEX_HAVE_M_COUNT,
	PTHREAD_MUTEX_HAVE___M_COUNT): New undefs.
	* configure: Rebuilt.
	* libgcj.spec.in: Don't mention INTERPSPEC.
	* configure.in (INTERPSPEC): Removed.
	Only run pthreads-related checks when using POSIX threads.  Check
	for m_count and __m_count in mutex structure.

1999-09-01  Matt Welsh <mdw@cs.berkeley.edu>

	* java/lang/natClass.cc: Fixed notification of threads
	when class initialization is complete.

1999-09-01  Tom Tromey  <tromey@cygnus.com>

	* java/lang/reflect/Modifier.java (ALL_FLAGS): New constant.
	* resolve.cc: Removed constants defined by
	java.lang.reflect.Modifier.
	Include <java/lang/reflect/Modifier.h>.
	(_Jv_ResolvePoolEntry): Use values from Modifier.
	(_Jv_DetermineVTableIndex): Likewise.
	(_Jv_PrepareClass): Likewise.
	(ncode): Likewise.
	* defineclass.cc (_Jv_ClassReader): Removed constants defined by
	java.lang.reflect.Modifier.
	Include <java/lang/reflect/Modifier.h>.
	(checkExtends): Use values from Modifier.
	(checkImplements): Likewise.
	(handleField): Likewise.
	(handleConstantValueAttribute): Likewise.
	(handleFieldsEnd): Likewise.
	(handleMethod ): Likewise.
	(handleMethodsEnd): Likewise.
	(handleClassBegin): Likewise.
	* interpret.cc: Removed constants defined by
	java.lang.reflect.Modifier.
	(continue1): Use values from Modifier.
	* java/lang/natClassLoader.cc: Removed constants defined by
	java.lang.reflect.Modifier.

	* java/lang/natClassLoader.cc (_Jv_NewClass): Use
	JV_STATE_NOTHING, not `0'.
	* java/lang/Class.h: Replaced JV_STATE_ defines with enum.

	* posix-threads.cc (_Jv_CondWait): Use _Jv_PthreadGetMutex.
	* include/posix-threads.h (_Jv_Mutex_t): Define as structure,
	except on Linux.
	(_Jv_PthreadGetMutex): New function.
	(_Jv_PthreadCheckMonitor): Use it.
	(_Jv_MutexInit): Likewise.  ALso, initialize `count'.
	(_Jv_MutexLock): Update `count'.
	(_Jv_MutexUnlock): Likewise.
	(_Jv_PthreadCheckMonitor): Use Linux-specific knowledge when
	appropriate.

1999-09-01  Kresten Krab Thorup  <krab@gnu.org>

	* Makefile.am (.java.lo): Add rule.

	* Makefile.in: Rebuilt.

1999-09-01  Tom Tromey  <tromey@cygnus.com>

	* posix-threads.cc (_Jv_CondWait): Call _Jv_PthreadCheckMonitor.
	* include/posix-threads.h (_Jv_PthreadCheckMonitor): New
	function.
	(_Jv_CondNotify): Use it.
	(_Jv_CondNotifyAll): Likewise.

	* java/lang/Class.h (JV_STATE_NOTHING): Correct misspelling.

1999-08-31  Tom Tromey  <tromey@cygnus.com>

	* include/jvm.h (_Jv_makeUtf8TypeConst): Removed unused
	declaration.

1999-08-24  Bryce McKinlay  <bryce@albatross.co.nz>

	* posix-threads.cc: Include <errno.h>.

1999-08-23  Tom Tromey  <tromey@cygnus.com>

	* boehm.cc: Undefine TRUE and FALSE.

	* posix-threads.cc (_Jv_CondWait): Use ETIMEDOUT, not ETIME.

1999-08-21  Tom Tromey  <tromey@cygnus.com>

	* posix-threads.cc (_Jv_CondWait): Treat a timeout as a normal
	result.  PR 40.

1999-08-21  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* configure.in: Check for in_addr_t in netinet/in.h too.  Check
	for ip_mreq too.
	* acconfig.h: Define HAVE_IN_ADDR_T instead of in_addr_t.
	(HAVE_STRUCT_IP_MREQ): Added.
	* configure, include/config.h.in: Rebuilt.
	* java/net/natInetAddress.cc (aton): Typedef in_addr_t to jint
	if needed.
	* java/net/natPlainDatagramSocketImpl.cc (McastReq, mcastGrp):
	Disable if ip_mreq is not available.
	
	* configure.in: Check types ssize_t and in_addr_t.
	* acconfig.h: Undefine them.
	* configure, include/config.h.in: Rebuilt.

	* java/lang/natSystem.cc (getpwuid_adaptor): New overloaded
	function that detects the signature of getpwuid_r.
	(init_properties): Use it.
	* java/util/natDate.cc (ctime_adaptor): Likewise for ctime_r.
	(toString): Use it.

1999-08-20  Kresten Krab Thorup  <krab@samam.daimi.au.dk>

	* interpret.cc (continue1): Implement explicit dispatch table.
	insn_target: Explicit interpreter switch table.  
	SAVE_PC: New macro, moves pc saving code into instructions that
	require so.
	NEXT_INSN: New macro, replaces `goto next_insn' in all insns.
	PC_REGISTER_ASM: New macro.
	INLINE_SWITCH: New macro.  Constrols dispatching strategy.
	opcode: Remove local variable.
	{i,l,f,d}{load,store}_{0,1,2,3}: Expand definitions.
	(POKEI): Use _Jv_word.
	(iinc): Use _Jv_word.
	(dupx): Change reference argument (sp) to pointer.  
	(jvdump): Remove
	
	* interpret.cc: Remove instruction timing instrumentation.  

	* java/lang/natClassLoader.cc (_Jv_PrepareCompiledClass): Changed
	comment.  Don't use _Jv_ClassNameSamePackage. 

	* gnu/gcj/util/path/{SearchPath,ZipFileEntry,DirectoryPathEntry,
	URLPathEntry, CacheEntry}: Removed.
	
	* Makefile.am (ordinary_java_source_files): Remove gnu/gcj/util/path
	package.
	(.java.lo): Rule removed.

	* Makefile.in: Rebuilt.

1999-08-19  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natThread.cc (class locker): New class.
	(join): Use a locker around _Jv_CondWait.
	(sleep): Likewise.

1999-08-18  Tom Tromey  <tromey@cygnus.com>

	* java/lang/ThreadGroup.java: Fixed now-erroneous comment.
	* java/lang/natThread.cc (finish_): Call ThreadGroup.remove.

1999-08-18  Tom Tromey  <tromey@cygnus.com>

	* include/javaprims.h ("Java"): Regenerated namespace decls.

1999-08-18  Kresten Krab Thorup  <krab@gnu.org>

	* java/lang/natClassLoader.cc (_Jv_PrepareCompiledClass): Renamed
	from _Jv_InternClassStrings.   

	* prims.cc (_Jv_RunMain): New function.
	(JvRunMain): Remove gij-support.

	* gij.cc (main): Use _Jv_RunMain.

	* java/util/zip/ZipFile.java: Call readDirectory in constructor.

	* interpret.cc (PUSHA, PUSHI, PUSHF, PUSHL, PUSHD): Don't store
	argument in temp variable.
	(continue1): For all op_x2y insns, use temp variable for
	intermediate value.  Also remove some comments.

	* java/lang/natClass.cc (newInstance): Call _Jv_InitClass.
	(forName): Don't call _Jv_InitClass.

	* java/lang/Class.java (getResource,getResourceAsStream): Implement.

	* java/util/zip/ZipEntry.java (ZipEntry(ZipEntry)): New construcor.

	* java/util/jar/JarInputStream.java: New file.

	* java/util/jar/JarEntry.java: New file.

	* java/util/jar/JarFile.java: New file.

	* java/net/URLClassLoader.java: New file.

	* java/net/JarURLConnection.java: New file.

	* gnu/gcj/protocol/jar/Handler.java: New file.

	* gnu/gcj/protocol/jar/Connection.java: New file.

	* java/security/SecureClassLoader.java: New file.

	* java/lang/ClassLoader.java (parent): New variable.
	(ClassLoader (ClassLoader)): new constructor.  
	(findClass): New method.
	(loadClass): Add default 1.2 implementation.
	(getSystemResourceAsBytes, getResourceAsBytes): Removed.
	(readfully): Removed.

	* gnu/gcj/runtime/VMClassLoader.java: Moved from java/lang. 
	(findSystemClass): New method.
	(VMClassLoader): Constructor rewritten.
	(init): New method.
	All other methods removed.
	
	* java/lang/natClassLoader.cc: Change use of java::lang::VMClassLoader
	to gnu::gcj::runtime::VMClassLoader. 
	(_Jv_InternClassStrings): Use _Jv_ResolvePoolEntry.  Also handle
	class entries.   
	(VMClassLoader::findSystemClass): renamed from findBootClass.

	* Makefile.am: Add new files.
	(FirstThread.h, ThreadGroup.h): Add _Jv_Main friend.

	* Makefile.in: Rebuilt.

1999-08-17  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natThread.cc (sleep): Turn 0 millis and 0 nanos into 1
	nano.
	* include/quick-threads.h (_Jv_CondWait): Don't round to 0
	inappropriately.

1999-08-16  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Set DIVIDESPEC to empty string if compiler does
	not support -fuse-divide-subroutine.

1999-08-14  Per Bothner  <per@bothner.com>

	* resolve.cc (_Jv_PrepareClass): Use ClassLoader::resolveClass0.
	* java/lang/natClass.cc (initializeClass): Likewise.
	* java/lang/ClassLoader.java (resolveClass0): New static method.
	(resolveClass): Call resolveClass0.
	(findSystemClass): No longer static.

1999-08-12  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* include/javaprims.h (TRUE, FALSE): Redefine as themselves.

1999-08-11  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/util/BitSet.java (set, clear, hashCode): specify "1" constant
	as long.

Mon Aug  9 18:33:38 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>

        * Makefile: Rebuilt.
	* Makefile.am (toolexeclibdir): Add $(MULTISUBDIR) even for native
	builds.

	* java/net/natPlainSocketImpl.cc: Include <sys/select.h> only if
	present.

	* configure: Rebuilt.
	* configure.in: Properly align --help output, fix capitalization
	and punctuation.
	* acinclude.m4: Likewise.

1999-08-09  Kresten Krab Thorup  <krab@gnu.org>

	* include/javaprims.h (_Jv_word, _Jv_word2): New types.

	* include/java-interp.h (_Jv_InterpMethodInvocation): Use _Jv_word.
	(_Jv_callInterpretedMethod): Unused. Remove.
	(_Jv_InterpMethod::run,run_normal,run_synch_object,run_synch_class):
	Use ffi_raw.
	* include/java-cpool.h (_Jv_get, _Jv_put): Remove.
	(_Jv_{store,load}{Indexes,Int,Float,Long,Double}): Use _Jv_word.
	* boehm.cc (_Jv_MarkObj): Use _Jv_word.
	* interpret.cc: use _Jv_word.
	* defineclass.cc: use_Jv_word.
	* resolve.cc: Use _Jv_word.
	(_Jv_ResolvePoolEntry): Return _Jv_word.
	* java/lang/Class.h (_Jv_Constants): Use _Jv_word for cpool.
	* java/lang/natClassLoader.cc (_Jv_InternClassStrings): Use _Jv_word.

	* interpret.cc (gnu::gcj::runtime::MethodInvocation::continue1): 
	Change comment.

Mon Aug  9 18:33:38 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>

	* configure: Rebuilt.
	* configure.in (sched_yield): Try librt first, then libposix4.
	Add -lrt, -lposix4 to THREADSPEC.

1999-08-08  Anthony Green  <green@cygnus.com>

	* gnu/gcj/util/path/SearchPath.java: Comment out verbose output.

1999-08-08  Anthony Green  <green@cygnus.com>

	* defineclass.cc (_Jv_VerifyClassName): Verify array names
	correctly.

1999-08-08  Anthony Green  <green@cygnus.com>

	* gij.cc: New file.

	* include/config.h.in: Rebuilt.
	* acconfig.h: Add INTERPRETER.

	* Makefile.in: Rebuilt.
	* Makefile.am (libffi_files): Identify the libffi object files for
	inclusion in libgcj.
	(LIBFFIINCS): Define.

	* interpret.cc (gnu::gcj::runtime::MethodInvocation::continue1):
	Dummy definition for configurations without an interpreter.
	
	* java/net/natPlainSocketImpl.cc (getOption): Disamiguate call to
	java::lang::Boolean constructor.

	* include/java-interp.h: Always include java-cpool.h.

	* java/lang/natClassLoader.cc (getVMClassLoader0): Always return 0
	when INTERPRETER not defined.

	* java/lang/Class.h (finalize): Define.

	* gnu/gcj/util/path/DirectoryPathEntry.java (getURL): Catch
	IOException from File.getCanonicalPath.
	(getStream): Likewise.

	* NEWS: More news.
	* THANKS: More thanks.

1999-08-08  Kresten Krab Thorup  <krab@gnu.org>

	* resolve.cc (get_ffi_type_from_signature): Generate uint16 for
	jchar type.
	(_Jv_PrepareClass): Allow non-abstract classes to
	have abstract subclasses.
	(_Jv_ResolvePoolEntry): Revert subclass check for protected
	fields and methods.
	* interpret.cc (continue1/perform_invoke): Don't sign extend
	uint16 return val. 
	(continue1/lshl,lshr): Push long, not int.
	(continue1/ulshr): Use UINT64, not long long.
 	* defineclass.cc (handleFieldsEnd): Handle case when all fields
	are static.
	* java/lang/natClass.cc (forName): Add call to _Jv_InitClass.
 	* java/lang/FirstThread.java (run): Add top-level exception
	handler. 
	(run0): Renamed from run.

1999-08-08  Kresten Krab Thorup  <krab@gnu.org>
 
 	* configure.in (--with-interpreter): Added.
 	* include/config.h.in (INTERPRETER): Added.
 
 	* java/lang/ClassLoader.java: File replaced.
 	* java/lang/VMClassLoader.java: New file.
 	* java/lang/natClassLoader.cc: New file.
 	* gnu/gcj/runtime/MethodInvocation.java: New file.
 	* gnu/gcj/util/path/SearchPath.java: New file.
 	* gnu/gcj/util/path/PathEntry.java: New file.
 	* gnu/gcj/util/path/DirectoryPathEntry.java: New file.
 	* gnu/gcj/util/path/ZipPathEntry.java: New file.
 	* gnu/gcj/util/path/URLPathEntry.java: New file.
 	* gnu/gcj/util/path/CacheEntry.java: New file. 
 	* include/java-interp.h: New file.
 	* include/java-cpool.h: New file.
 	* include/java-insns.h: New file.
 	* defineclass.cc: New file.
 	* interpret.cc: New file.
 	* resolve.cc: New file.
 
 	* java/lang/natClass.cc (loaded_classes, _Jv_RegisterClass,
 	_Jv_RegisterClasses, _Jv_FindClassInCache, _Jv_FindClass,
 	_Jv_NewClass, _Jv_FindArrayClass): Moved to natClassLoader.cc.
 	(finalize): New.
 	(STATE_NOTHING, STATE_RESOLVED, STATE_IN_PROGRESS, STATE_DONE,
 	STATE_ERROR): Moved to java/lang/Class.h and renamed with JV_
 	prefix. 
 	(initializeClass): Use new JV_ prefixed names.  Also, call
 	ClassLoader::resolveClass instead of _Jv_ResolveClass.
 		
 	* java/lang/Class.h (JV_STATE_PRELOADING, JV_STATE_LOADING,
 	JV_STATE_LOADED, JV_STATE_COMPILED, JV_STATE_PREPARED,
 	JV_STATE_LINKED): New.
 	(_Jv_WaitForState, _Jv_RegisterInitiatingLoader,
 	_Jv_UnregisterClass, _Jv_InternClassStrings): New friends.
 	(_Jv_IsInterpretedClass, _Jv_InitField, _Jv_LookupDeclaredMethod,
 	_Jv_DetermineVTableIndex, _Jv_ResolvePoolEntry, _Jv_PrepareClass,
 	_Jv_ClassReader, _Jv_InterpClass, _Jv_InterpMethod,
 	_Jv_InterpMethodInvocation): New friends for interpreter.
 	(finalize): New.
 	(CONSTANT_Class, CONSTANT_String, etc.): Moved to
 	include/java-cpool.h and renamed with JV_ prefix.
 	
 	* include/jvm.h (_Jv_makeUtf8Const, _Jv_makeUtf8TypeConst): New
 	decls.
 	(_Jv_UnregisterClass): New decl.
 
 	* java/lang/natClassLoader.cc (_Jv_FindArrayClass): Added
 	class loader argument. 
 	(_Jv_FindClass): Use class loader.
 	
 	* prims.cc (_Jv_makeUtf8Const): New function.
 	(_Jv_NewObjectArray): Change use of _Jv_FindArrayClass.
 	(_Jv_NewPrimArray): Ditto.
 	(_Jv_FindClassFromSignature): Ditto.
 	* java/lang/reflect/natArray.cc (newInstance): Ditto.
 	* java/lang/reflect/natMethod.cc (getType): Ditto.
 
 	* include/java-field.h (_Jv_Field::isRef): Make robust for
 	non-resolved contexts. 
 
 	* boehm.cc (_Jv_MarkObj): Mark interpreter-related fields. 
 	Also, don't mark class->next field.
 
 	* java/lang/VirtualMachineError.java: Added FIXME note.
 
 	* configure.in (INTERPSPEC): New spec.
 	* libgcj.spec.in: Added INTERPSPEC.
 	* Makefile.am: Added gcjh friends for java/lang/VMClassLoader and
 	gnu/gcj/runtime/MethodInvocation.
 	(libgcj_la_SOURCES): Added resolve.cc defineclass.cc interpret.cc.
 	(ordinary_java_source_files): Added above mentioned java classes.
 
 	* configure: Rebuilt.
 	* Makefile.in: Rebuilt.

1999-08-06  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Look for sched_yield in -lrt.

1999-08-06  Mojo Jojo <mojojojo@pacbell.net>

	* java/util/Locale.java, CHINESE, ENGLISH, FRENCH, GERMAN,
	ITALIAN, JAPANESE, KOREAN, CANADA_FRENCH, GERMANY, ITALY, KOREA,
	SIMPLIFIED_CHINESE, TRADITIONAL_CHINESE, PRC, TAIWAN, CHINA): New
	locales.
	(toString): Print correctly when `country' is empty.

1999-08-04  Per Bothner <per@bothner.com>

	* configure.in:  Also do AC_SUBST for DIVIDESPEC.

1999-08-02  Tom Tromey  <tromey@cygnus.com>

	* aclocal.m4, configure: Rebuilt for new libtool.

1999-08-02  Bryce McKinlay  <bryce@albatross.co.nz>

	* boehm.cc (_Jv_RegisterFinalizer): Cast `meth' to GC_PTR.
	* exception.cc (_Jv_Throw): Cast `_Jv_type_matcher' to __eh_matcher.
	* java/net/ServerSocket.java: Define ANY_IF.
	(ServerSocket (int,int)): Use ANY_IF instead of null to bind to
	all network interfaces.
	* java/net/DatagramSocket.java (DatagramSocket): ditto.
	* java/net/natPlainSocketImpl.cc (bind): Expect `0.0.0.0' instead of
	null.
	* java/net/natPlainDatagramSocketImpl (bind): Expect `0.0.0.0'
	instead of null.
	* java/io/natFile.cc (performMkdir): Remove FIXME.
	* java/io/natFileDescriptorPosix.cc (open): Use 0644 file mode.

1999-08-01  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* configure.in: Check for bstring.h.
	* configure, include/config.h.in: Rebuilt.
	* java/net/natPlainDatagramSocketImpl.cc: #include bstring.h.
	* java/net/natPlainSocketImpl.cc: Likewise.

1999-07-31  Tom Tromey  <tromey@cygnus.com>

	* NEWS: Likewise.
	* THANKS: New file.

1999-07-31  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* configure.in: Check for struct hostent_data and need for
	-D_REENTRANT for gethostbyname_r declaration.
	* java/net/natInetAddress.cc: Define _REENTRANT if needed.
	(lookup): Use hostent_data for fixed_buffer.
	* configure, include/config.h.in: Rebuilt.

1999-07-31  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* java/lang/natSystem.cc (arraycopy): Use bcopy if memmove is not
	available.  Don't cast memmove args to (void*).
	* configure.in: Do not abort if memmove is not available.

1999-07-22  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/lang/natString.cc (substring): optimize where substring is
	entire String.
	* java/io/File.java (getName): don't return separator with file name.
	* java/io/natFile.cc (attr): fix overflow.

Sun Jul 25 01:43:34 1999  Anthony Green  <green@cygnus.com>

	* mauve-libgcj: Disable Object Serialization tests.

1999-07-20  Warren Levy  <warrenl@cygnus.com>

	* java/net/DatagramSocket.java (DatagramSocket(int, InetAddress)):
	Default to using PlainDatagramSocketImpl.
	* java/net/PlainDatagramSocketImpl.java (close): Catch IOException.

1999-07-19  Tom Tromey  <tromey@cygnus.com>

	* include/stamp-h.in: New file.

1999-07-12  Tom Tromey  <tromey@cygnus.com>

	* java/lang/mprec.h: Protect definition of uint32_t with #ifndef
	_UINT32_T.

1999-07-07  Andrew Haley  <aph@cygnus.com>

        * include/i386-signal.h (MAKE_THROW_FRAME): Advance EIP by two
	bytes to make it point after the instruction where the trap
	occurred.
	(HANDLE_DIVIDE_OVERFLOW): Ditto.

1999-07-07  Tom Tromey  <tromey@cygnus.com>

	* mauve-libgcj: Explicitly enable formerly disabled java.text
	tests.

	* mauve-libgcj: Turn off ClassTest test.  Enable java.text tests
	again.

Mon Jul  5 12:01:35 1999  Anthony Green  <green@cygnus.com>

	* java/net/URL.java (equals): Compare strings using String.equals.
	* java/net/URL.java (sameFile): Ditto.

1999-07-02  Warren Levy  <warrenl@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Added inet_ntoa to AC_CHECK_FUNCS.
	* include/config.h.in: Rebuilt.
	* java/net/natPlainDatagramSocketImpl.cc: Added header checking.
	(mcastGrp): Updated FIXME comments.
	(setOption): Fixed typo.
	(getOption):Implemented IP_MULTICAST_IF.

1999-07-02  Warren Levy  <warrenl@cygnus.com>

	* java/net/PlainDatagramSocketImpl.java (ttl): Removed.
	* java/net/natPlainDatagramSocketImpl.cc (setTimeToLive): Implemented.
	(getTimeToLive): Implemented.
	(setOption): Implemented IP_MULTICAST_IF.

1999-07-01  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/lang/String.java (toString): Check for this == null and throw
	NullPointerException.

1999-07-01  Warren Levy  <warrenl@cygnus.com>

	* gnu/gcj/convert/BytesToUnicode.java (read): Changed outlength
	to count and revised comments to match.
	* gnu/gcj/convert/Input_EUCJIS.java (read): Same as Input_8859_1.java.
	* gnu/gcj/convert/Input_JavaSrc.java (read): ditto.
	* gnu/gcj/convert/Input_SJIS.java (read): ditto.
	* gnu/gcj/convert/Input_UTF8.java (read): ditto.
	* gnu/gcj/convert/natInput_EUCJIS.cc (read): ditto.
	* gnu/gcj/convert/natInput_SJIS.cc (read): ditto.

1999-07-01  John-Marc Chandonia  <jmc@cmpharm.ucsf.edu>

	* gnu/gcj/convert/Input_8859_1.java (read): Use 3rd parameter
	properly as count rather than outlength.
	* java/io/BufferedOutputStream.java (write(byte[],int,int): Flush
	output on overflow rather than buffer fill.
	* java/io/BufferedReader.java (fill): Don't clear out the buffer
	if markPos is 0 and there is still room in the buffer.

1999-07-01  Andrew Haley  <aph@cygnus.com>

	* include/i386-signal.h: Replace sigaction () with __sigaction ().
	This is a workaround for a bug in glibc's pthreads package which
	doesn't deliver any sigcontext information to a signal handler.

1999-06-24  Tom Tromey  <tromey@cygnus.com>

	* java/lang/e_asin.c: Don't use __int32_t or __uint32_t.
	* java/lang/fdlibm.h (HUGE): Conditionally define.

Fri May 28 22:20:03 1999  Anthony Green  <green@cygnus.com>

	* java/lang/fdlibm.h: Don't use __uint32_t.  Include mprec.h.
	* java/lang/e_log.c: Don't use __uint32_t.

1999-05-27  Eric Christopher <echristo@cygnus.com>

	* configure: Rebuilt
	* configure.in: Fixed ISO C9X and namespace collision with __uint32_t
	* acconfig.h: Rebuilt
	* include/config.h.in: Rebuilt

	* java/lang/mprec.h, java/lang/e_acos.c, java/lang/e_asin.c,
 	java/lang/e_atan2.c, java/lang/e_exp.c, java/lang/e_fmod.c,
 	e_log.c, java/lang/e_pow.c, java/lang/e_rem_pio2.c,
 	java/lang/e_remainder.c, java/lang/e_sqrt.c, java/lang/fdlibm.h,
 	k_tan.c, java/lang/mprec.h, java/lang/s_atan.c,
 	java/lang/s_ceil.c, java/lang/s_copysign.c, java/lang/s_fabs.c,
 	s_floor.c, java/lang/s_rint.c, java/lang/sf_rint.c: Fixed ISO C9X
 	and namespace collision with __uint32_t

1999-06-23  Tom Tromey  <tromey@cygnus.com>

	* java/util/zip/InflaterInputStream.java (read): Throw
	ZipException if inflater throws a DataFormatException.

1999-06-23  Warren Levy  <warrenl@cygnus.com>

	* java/net/DatagramSocketImpl.java (localPort): Fixed typo to match JDK.
	* java/net/natPlainDatagramSocketImpl.cc (bind): ditto.
	* java/text/ChoiceFormat.java (nextDouble(double, boolean)): Method
	is not final per JDK.
	* java/util/PropertyResourceBundle.java (handleGetObject): Method is
	public per JDK.
	* java/util/zip/DataFormatException.java: Class extends Exception.
	* java/util/zip/Deflater.java (finalize): Method is protected per JDK.
	* java/util/zip/ZipEntry.java: Class implements ZipConstants.
	* java/util/zip/ZipInputStream.java: ditto.
	(closeEntry): Changed method name to match JDK spec.

1999-06-21  Tom Tromey  <tromey@cygnus.com>

	* java/lang/ieeefp.h (__IEEE_LITTLE_ENDIAN): Define for alpha.
	From Jeff Sturm.

	* Makefile.in: Rebuilt.
	* Makefile.am (toolexeclibdir): Define as libdir when
	appropriate.
	* configure: Rebuilt.
	* configure.in (USE_LIBDIR): New conditional.

1999-06-18  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/net/natInetAddress.cc (lookup): Preserve caller-supplied
	hostname in returned InetAddress objects.
	(getLocalHostname): Fix typo.
	* java/net/InetAddress.java (getByName): Set hostname on return
	object.
	(getLocalHost): Call lookup directly to ensure that a fully-qualified
	name is returned.

1999-06-17  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/net/natPlainSocketImpl.cc (bind): Bind to any/all network
	interfaces if host==NULL. 
	(accept): Throw message with InterruptedIOException.
	(getOption): Cache localAddress.
	* java/net/natPlainDatagramSocketImpl.cc (bind): Don't need
	'address' for DatagramSocket.
	(setTimeToLive): Fix compiler warnings.
	(getOption): Cache localAddress.
	* java/net/Socket.java (getLocalAddress): Don't need local
	InetAddress object. Add FIXME comment about calling checkConnect().
	* java/net/ServerSocket.java (ServerSocket(int)): Initialize
	connection queue to 50 as per JDK 1.2 docs.
	(ServerSocket(int,int)): Listen on all network interfaces by
	default, per JDK 1.2 docs.
	* java/net/PlainDatagramSocketImpl.java: Don't need 'address'.
	Add localAddress caching. 

1999-06-15  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/io/FilterOutputStream.java (write(byte[])): Rewrite according
	to JDK 1.2 docs.
	(write(byte[],int,int)): ditto.

1999-06-14  Bryce McKinlay  <bryce@albatross.co.nz>

	* posix-threads.cc (_Jv_CondWait): Fix currentTimeMillis() overflow.

1999-06-11  Warren Levy  <warrenl@cygnus.com>

	* mauve-libgcj: Activated java.net Mauve tests.

1999-06-10  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/net/natInetAddress.cc (aton): Fix typos.
	(lookup): Use a bigger buffer size for gethostbyname_r on all
	versions of glibc. Updated FIXME comment explaining this.
	Modified while loops to not set herr = ERANGE to work around glibc 
	problems. Use user specified hostname in InetAddress result when
	available (consistent with JDK).

1999-06-10  Warren Levy  <warrenl@cygnus.com>

	* java/io/FileDescriptor.java (FileDescriptor(String, int)):
	Throw FileNotFoundException instead of IOException.
	(open): ditto.
	* java/io/FileInputStream.java (FileInputStream): Doesn't throw
	IOException.
	* java/text/Collator.java (CANONICAL_DECOMPOSITION): Fixed typo
	in static field name.
	* java/text/DecimalFormat.java: Throw IllegalArgumentException
	throughout rather than ParseException.

1999-06-09  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/lang/Runtime.java (exec): Convert prog name and arguments
	to string array.
	* java/lang/natPosixProcess.cc (startProcess): Fix typo in
	environment array conversion. Preserve current environment if envp
	not passed. Preserve PATH unless explicitly specified.
	* java/io/DataInputStream.java (readLine): Fix case where '\r' is
	followed by EOF. Set a flag when a line is terminated by '\r' and
	ignore following '\n' if set.

1999-06-02  Warren Levy  <warrenl@cygnus.com>

	* java/net/URL.java (URL(URL,String)): Initialize port to -1.
	Ignore context if spec is an absolute URL.  Fix braindead
	string comparison.
	(hashCode): Use JDK 1.2 style algorithm.
	* java/net/URLStreamHandler.java (parseURL): Reimplement to handle
	context URL properly.

1999-05-30  Anthony Green  <green@cygnus.com>

	* java/net/URLStreamHandler.java (parseURL): Parse relative URLs
	correctly.  Clean up "/../" and "/./" path fragments.

1999-05-28  Warren Levy  <warrenl@cygnus.com>

	* java/net/DatagramSocket.java (laddr): Removed.
	(DatagramSocket): Removed attempts to get or set laddr if null.
	(getLocalAddress): Reimplemented per spec.
	* java/net/MulticastSocket.java (setTimeToLive): Throw exception
	when ttl is 0.
	(joinGroup): Throw NullPointerException if any argument is null.
	(leaveGroup): ditto.
	* java/net/PlainDatagramSocketImpl.java: Updated comments.
	* java/net/PlainSocketImpl.java (timeout): Added.
	(getInputStream): Added FIXME comment on how to support timeouts
	for TCP.
	* java/net/ServerSocket.java (ServerSocket): Added FIXME comment.
	* java/net/Socket.java: Added FIXME comments to identify
	conflicting specs between the JCL and JDK 1.2 documents.
	* java/net/natPlainDatagramSocketImpl.cc (bind): Use INADDR_ANY
	if host is null.  Get localport value resolved by kernel if bind
	lport is 0.
	(receive): Implemented support for timeouts in UDP.
	(setOption): Implemented based on natPlainSocketImpl version.
	(getOption): ditto.
	* java/net/natPlainSocketImpl.cc (bind): Get localport value
	resolved by kernel if bind lport is 0.
	(connect): Get localport value resolved by kernel if bind wasn't
	done to set localport.
	(accept): Implemented support for timeouts for ServerSocket.
	(setOption): Save value for SO_TIMEOUT.
	(getOption): Return timeout for SO_TIMEOUT.

1999-05-26  Bryce McKinlay <bryce@albatross.co.nz>

	* java/net/DatagramSocket.java (getSoTimeout): Verify class type.
	* java/net/DatagramSocketImpl.java (getOption): Made abstract.
	(setOption): Made abstract.
	* java/net/PlainDatagramSocketImpl.java: Mirror SocketOptions fields
	to avoid cpp conflicts in native code.
	* java/net/PlainSocketImpl.java: Mirror SocketOptions fields to avoid
	cpp conflicts in native code.
	* java/net/ServerSocket.java (toString): Prepended "ServerSocket".
	* java/net/Socket.java (getLocalAddress): Implemented.
	(setTcpNoDelay): Implemented.
	(getTcpNoDelay): Implemented.
	(setSoLinger): Implemented.
	(getSoLinger): Implemented.
	(getSoTimeout): Verify class type.
	(setSendBufferSize): Implemented.
	(getSendBufferSize): Implemented.
	(setReceiveBufferSize): Implemented.
	(getReceiveBufferSize): Implemented.
	(toString): Prepended "Socket".
	* java/net/SocketImpl.java (toString): Rewritten.
	(getOption): Made abstract.
	(setOption): Made abstract.
	* java/net/natPlainSocketImpl.cc (connect): Set localport properly.
	(setOption): Implemented.
	(getOption): Implemented.

1999-05-26  Warren Levy  <warrenl@cygnus.com>

	* java/net/DatagramSocket.java (DatagramSocket): Get local host
	address when null.  Set SO_REUSEADDR for multicasts.
	(getSoTimeout): Implemented.
	(setSoTimeout): Implemented.
	* java/net/DatagramSocketImpl.java: Implement SocketOptions interface.
	* java/net/MulticastSocket.java (getInterface): Implemented.
	(setInterface): Implemented.
	(setTimeToLive): Check for invalid ttl.
	(joinGroup): Verify multicast address and security.
	(leaveGroup): Verify multicast address and security.
	(send): Implemented.
	* java/net/PlainDatagramSocketImpl.java (timeout): Added.
	(iface): Added.
	(ttl): Added.
	(setOption): Added.
	(getOption): Added.
	(mcastGrp): Added.
	(getTTL): Implemented as non-native.
	(setTTL): ditto.
	(join): ditto.
	(leave): ditto.
	* java/net/ServerSocket.java (setSoTimeout): Implemented.
	(getSoTimeout): Implemented.
	(setSocketFactory): Made synchronized.
	* java/net/Socket.java (setSoTimeout): Implemented.
	(getSoTimeout): Implemented.
	(close): Made synchronized.
	(setSocketImplFactory): Made synchronized.
	* java/net/SocketImpl.java: Implement SocketOptions interface.
	* java/net/natInetAddress.cc: Corrected module name at top of file.
	* java/net/natPlainDatagramSocketImpl.cc (McastReq): Added union.
	(bind): Added FIXME.
	(peek): Implemented.
	(setTTL): Removed.
	(getTTL): Removed.
	(join): Removed.
	(leave): Removed.
	(mcastGrp): Added.
	(setOption): Implemented for SO_REUSEADDR.
	(getOption): Implemented for SO_REUSEADDR.

1999-05-24  Tom Tromey  <tromey@cygnus.com>

	* java/util/ResourceBundle.java (getBundle): Throw
	NullPointerException if baseName is null.

1999-05-22  Tom Tromey  <tromey@cygnus.com>

	* java/util/zip/ZipInputStream.java (fill): New method.
	(compressed_len): New instance variable.
	(getNextStream): Set it.
	(read): Reset inflater on EOF.  Only read via `super' if entry is
	deflated.
	(skip): Only skip via `super' if entry is deflated.
	* java/util/zip/Deflater.java (last_input_count): Removed.
	* java/util/zip/natDeflater.cc (deflate): Return 0 if input array
	is length 0.
	(needsInput): Don't use last_input_count.
	(setInput): Don't set last_input_count.
	* java/util/zip/natInflater.cc (getRemaining): Return correct
	result.
	(inflate): Return 0 if input array is length 0.
	(setInput): Don't set last_input_count.
	* java/util/zip/Inflater.java (last_input_count): Removed.

1999-05-21  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (INCLUDES): Added $(ZINCS).
	* configure: Rebuilt.
	* configure.in (ZINCS): New subst.

1999-05-21  Andrew Haley  <aph@cygnus.com>

	* include/sparc-signal.h (INIT_FPE, INIT_SEGV): SA_NODEFER added
	to signal options to allow the same exceptions to be rethrown
	later.

1999-05-20  Andrew Haley  <aph@cygnus.com>

	* libjava/prims.cc (catch_fpe): Call to HANDLE_DIVIDE_OVERFLOW
	added.
	* include/i386-signal.h (HANDLE_DIVIDE_OVERFLOW): New macro.
	(INIT_FPE): Exception string made more informative.
	* include/sparc-signal.h (INIT_FPE): Exception string made more
	informative.
	* testsuite/libjava.lang/Divide_1.java: New file.
	* testsuite/libjava.lang/Divide_1.out: New file.

1999-05-19  Tom Tromey  <tromey@cygnus.com>

	* aclocal.m4, configure: Rebuilt.
	* acinclude.m4 (version): New variable; pass to AM_INIT_AUTOMAKE.

	* java/util/zip/GZIPOutputStream.java (write(byte[])): New
	method.

	* java/util/zip/natInflater.cc (inflate): Cast `len' to unsigned.
	Include <stdlib.h>.
	* java/util/zip/natDeflater.cc (deflate): Cast `len' to unsigned.
	Include <stdlib.h>.
	(update): Fail in default case.  Always initialize `strat'.

	* mauve-libgcj: Enable java.util.zip.

1999-05-18  Warren Levy  <warrenl@cygnus.com>

	* Makefile.am (ordinary_java_source_files): Added DatagramPacket.java,
	DatagramSocket.java, DatagramSocketImpl.java, MulticastSocket.java,
	PlainDatagramSocketImpl.java, and SocketOptions.java.
	(nat_source_files): Added natPlainDatagramSocketImpl.cc.
	* Makefile.in: Rebuilt.

	* java/net/DatagramPacket.java: New file.
	* java/net/DatagramSocket.java: New file.
	* java/net/DatagramSocketImpl.java: New file.
	* java/net/MulticastSocket.java: New file.
	* java/net/PlainDatagramSocketImpl.java: New file.
	* java/net/SocketOptions.java: New file.
	* java/net/natPlainDatagramSocketImpl.cc: New file.

1999-05-18  Tom Tromey  <tromey@cygnus.com>

	* java/util/zip/ZipOutputStream.java (level): Initial value is
	Deflater.DEFAULT_COMPRESSION.
	(close): New method.
	(closeEntry): Likewise.
	(finish): Likewise.
	(put_version): Likewise.
	(write_entry): Likewise.
	(put2, put4): Now return `int'.
	(comment): Default to empty string.
	(bytes_written): New instance variable.
	(chain): Likewise.
	* java/util/zip/ZipEntry.java (setComment): Limit length of
	comment string.
	(setCrc): Check CRC validity.
	(setExtra): Check argument validity.
	(setMethod): Likewise.
	(setSize): Likewise.
	(ZipEntry): Likewise.
	* include/javaprims.h: Updated namespace declarations.
	* Makefile.in: Rebuilt.
	* Makefile.am (ordinary_java_source_files): Mention new files.
	(nat_source_files): Likewise.
	* java/util/zip/ZipFile.java (readu2): Throw ZipException, not
	EOFException.
	(read4): Likewise.
	(getInputStream): Handle compressed entries.
	* java/util/zip/GZIPOutputStream.java: New file.
	* java/util/zip/GZIPInputStream.java: New file.
	* java/util/zip/DataFormatException.java: New file.
	* java/util/zip/CheckedInputStream.java: New file.
	* java/util/zip/CheckedOutputStream.java: New file.
	* java/util/zip/InflaterInputStream.java: Implemented.
	* java/util/zip/natInflater.cc: New file.
	* java/util/zip/Deflater.java: Implemented.
	* java/util/zip/natDeflater.cc: New file.
	* java/util/zip/DeflaterOutputStream.java: Implemented.

	* java/util/zip/ZipInputStream.java (closeZipEntry): Throw
	ZipException, not IOException.
	* java/util/zip/ZipFile.java (readDirectory): Throw ZipException,
	not IOException.

1999-05-17  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natSystem.cc (init_properties): URL now points to
	sourceware.

1999-05-12  Per Bothner  <bothner@cygnus.com>

	* java/util/Calendar.java (set):  First call computeFields if needed.
	* java/util/natGregorianCalendar.cc (computeTime):  Cast 1000 to jlong.
	
1999-05-12  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Look for -ldl when using the Boehm collector.
	Look for sched_yield in -lposix4.

1999-05-12  Per Bothner  <bothner@cygnus.com>

	* java/io/File.java (mkdirs):  Handle a null parent directory.

1999-05-12  Tom Tromey  <tromey@cygnus.com>

	* include/javaprims.h: Updated namespace declarations.
	* classes.pl (scan): Uniquify class list.
	* Makefile.in, configure: Rebuilt.
	* Makefile.am (nat_source_files): Added natConcreteProcess.cc.
	(built_java_source_files): New macro.
	(nat_headers): Added built_java_source_files.
	(javao_files): Likewise.
	(EXTRA_libgcj_la_SOURCES): Likewise.
	(libgcj.zip): Create built class files.
	($(built_java_source_files:.java=.class)): New target.
	(jv_convert_LDADD): Added -L$(here)/.libs.
	* configure.in: Create links for ConcreteProcess.java and
	natConcreteProcess.cc.
	* java/lang/Runtime.java (exec): Create a ConcreteProcess.
	* java/lang/natEcosProcess.cc: New file.
	* java/lang/EcosProcess.java: New file.
	* java/lang/PosixProcess.java: New file.
	* java/lang/natPosixProcess.cc: New file.

1999-05-12  Warren Levy  <warrenl@cygnus.com>

	* java/net/PlainSocketImpl.java: Corrected copyright & header comments.
	* java/net/SocketImpl.java: Added marker for JDK 1.2 work.
	* java/net/natPlainSocketImpl.cc (bind): Throw BindException.
	(connect): Throw ConnectException.

1999-05-11  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (jv_convert_DEPENDENCIES): Include libgcj.spec.
	* libgcj.spec.in: Don't use `+'.  Instead, put old lib spec after
	our libraries.

	* Makefile.in: Rebuilt.
	* Makefile.am (jv_convert_LDADD): Removed `-L.'; it is not needed
	and it causes problems with libtool.

	* Makefile.in, configure: Rebuilt.
	* Makefile.am (jv_convert_LDFLAGS): Removed -nodefaultlibs.
	(jv_convert_LDADD): Added ZLIBS.  Removed -lm, -lc, -lgcc.
	(jv_convert_DEPENDENCIES): Added ZDEPS.
	* configure.in (GCSPEC): Added `-L' to point to boehm-gc build
	directory.
	(THREADSPEC): Added `-L' to point to qthreads build directory.
	(ZLIBS): New subst.
	(ZDEPS): New subst.

	* configure, Makefile.in: Rebuilt.
	* Makefile.am (toolexeclib_DATA): New macro.
	* configure.in: Create libgcj.spec.  Look for -lsocket and -lnsl.
	Recognize --with-system-zlib.
	(GCSPEC): New subst.
	(THREADSPEC): New subst.
	(SYSTEMSPEC): New subst.
	(ZLIBSPEC): New subst.
	* libgcj.spec.in: New file.

1999-05-10  Tom Tromey  <tromey@cygnus.com>

	* java/io/InputStreamReader.java (read): If length is 0, return
	0.  Reset `wpos' and `wcount' when buffer has been filled and
	emptied.

	* java/util/Properties.java (save): Removed `FIXME' comment.
	(load): Invalid characters in \u now treated as terminators.
	Make sure to append character resulting from `\' handling.
	Cast to `char' when appending to key or value.
	(skip_ws): Inverted test for whitespace.

	* java/io/RandomAccessFile.java (RandomAccessFile): Removed
	`FIXME' comment.
	(readLine): Likewise.
	(readFully): Implemented.

	* java/lang/natObject.cc (sync_init): Use _Jv_AllocBytesChecked.

	* java/awt/natToolkit.cc: Added copyright header.
	* java/util/zip/InflaterInputStream.java: Added copyright header.

	* java/io/FilterWriter.java (FilterWriter): Removed `FIXME'
	comment.
	* java/io/SequenceInputStream.java (SequenceInputStream): Removed
	`FIXME' comment.
	(getNextStream): Likewise.

	* java/util/ResourceBundle.java (partialGetBundle): Explicitly use
	locale.toString().
	(getBundle): Don't explicitly throw null pointer exception.

	* gnu/gcj/RawData.java: Added copyright header.

	* include/jni.h (_Jv_va_list): Always define as va_list.

1999-05-9  Anthony Green  <green@cygnus.com>

	* java/text/DateFormat.java (computeInstance): Separate time
	and date styles.
	(getDateTimeInstance): Ditto.
	(getDateTimeInstance(int,int)): New method.

        * Makefile.in: Rebuilt.
	* Makefile.am (ordinary_java_source_files): Add new classes.

	* java/util/PropertyResourceBundle.java: New file.
	* gnu/gcj/util/EnumerationChain.java: New file.

1999-05-07  Tom Tromey  <tromey@cygnus.com>

	* acconfig.h (GCJVERSION): New undef.
	* java/lang/natSystem.cc (init_properties): Define java.version,
	java.class.version, os.name, os.arch, os.version.
	Include <sys/utsname.h> if required.
	* configure: Rebuilt.
	* configure.in: Compute and define GCJVERSION.

	* java/lang/natSystem.cc (default_file_encoding): Now static.

	* java/lang/natCharacter.cc (isLowerCase): Use a binary search.

	* libtool-version: New file.
	* Makefile.in: Rebuilt.
	* Makefile.am (libgcj_la_LDFLAGS): Use -version-info, not
	-release.

	* mauve-libgcj: Don't omit Utf8Encoding or StringTest.
	Comment out FieldPosition, ParsePosition, and SimpleDateFormat
	again (oops).

	* mauve-libgcj: Test more from java.text.  Don't mention 1.1 tests
	(we pick those up already).

1999-05-05  Per Bothner  <bothner@cygnus.com>

	* java/awt/*:  Check a bunch of classes, a few complete, but mostly
	stub classes.  (This is enough to get Kawa to compile against libgcj.)

	* gnu/gcj/RawData.java:  New class.
	* doc/cni.sgml:  Document RawData.

	* java/util/zip/InflaterInputStream.java:  New stub class.
	* java/util/zip/ZipInputStream.java:  New class.  Partly works.
	* java/util/zip/ZipConstants.java:  Add two (internal) constants.
	* java/util/zip/ZipEntry.java (timeFromDOS):  New static method.
	* java/util/zip/ZipFile.java:  Now mostly works (unless compressed).
	* java/util/zip/ZipOutputStream.java:  Start implementation.
	
	* java/lang/natSystem.cc (DEFAULT_FILE_ENCODING):  New macro.
	(default_file_encoding):  New global, initial value is above macro.
	(init_properties):  Default file.encoding to default_file_encoding.
	
	* Makefile.am:  Add new classes.

1999-05-05  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (CLEANFILES): Don't mention $(class_files).
	(clean-local): New target

	* java/lang/natRuntime.cc: Include <ltdl.h> if required.
	(load, loadLibrary): Now native.
	(init): New method.
	* java/lang/Runtime.java (load, loadLibrary): Now native.
	(init): New native method.
	(Runtime): Use init.
	* prims.cc: Include <ltdl.h> if required.
	(JvRunMain): Call LTDL_SET_PRELOADED_SYMBOLS.

1999-05-05  Gilles Zunino  <Gilles.Zunino@hei.fr>

	* configure.in: Switch from irix threads to posix threads
	* configure: Regenerate.

1999-04-30  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (jv_convert_LDADD): Added -lgcc.

1999-04-29  Tom Tromey  <tromey@cygnus.com>

	* java/lang/StringBuffer.java (ensureCapacity): Don't resize
	vector when shared.

	* java/util/Locale.java (Locale(String,String)): Implement in
	terms of 3-argument version; variant now defaults to empty
	string.
	(toString): Assume variant is not null.
	(equals): Assume all strings are not null.
	(Locale): Throw NullPointerException if any argument is null.

	* java/util/ResourceBundle.java (getBundle): Don't try the base
	name; now implicit in partialGetBundle call.
	(trySomeGetBundle): Search for parent bundles and call setParent
	as required.
	(partialGetBundle): Added `langStop' argument.  Use
	`Locale.toString' to compute bundleName.
	(resource_cache): New static field.
	(partialGetBundle): Cache the returned resource bundle.  Now
	synchronized.

	* gnu/gcj/text/LocaleData_en.java (contents): [collatorRule] Added
	missing `<'.

	* mauve-libgcj: Enable Collator and RuleBasedCollator.
	* java/text/natCollator.cc (decomposeCharacter): `base' now
	`const'.
	* Makefile.in: Rebuilt.
	* Makefile.am (ordinary_java_source_files): Added
	CollationElementIterator, CollationKey, Collator,
	RuleBasedCollator.
	(nat_source_files): Added natCollator.cc.
	* java/text/RuleBasedCollator.java (ceiNext): No longer static.
	(compare): Pass `this' to CollationElementIterator constructor.
	(getCollationElementIterator): Likewise.
	(ceiNext): Fix off-by-one error when finding initial substring.
	(next): Correctly mask off bits when computing return value.
	Fixed return values when one string is shorter than the other.
	* java/text/CollationElementIterator.java (collator): New field.
	(CollationElementIterator): Added collator argument.
	(next): Call ceiNext on collator object.

1999-04-26  Tom Tromey  <tromey@cygnus.com>

	* natCollator.cc: New file.

	* java/util/GregorianCalendar.java (setDefaultTime): New method.
	(GregorianCalendar): Use it in all constructors.
	* java/util/Calendar.java (Calendar): Changed argument name to
	`zone' to match code.

	* gnu/gcj/text/LocaleData_en.java: Added collatorRule element.
	* java/text/CollationKey.java: New file.
	* java/text/CollationElementIterator.java: New file.
	* java/text/Collator.java: New file.
	* java/text/RuleBasedCollator.java: New file.

	* Makefile.in: Rebuilt.
	* Makefile.am (jv_convert_LDFLAGS): Added -nodefaultlibs.
	(jv_convert_LDADD): Explicltly add -lm -lc.

1999-04-26  Tom Tromey  <tromey@cygnus.com>

	* configure, Makefile.in: Rebuilt.
	* configure.in: Added AM_PROG_LIBTOOL.
	(GCOBJS): Use `.lo' form of files.
	(THREADOBJS): Likewise.
	(GCDEPS): Use `.la' form of library.
	(GCLIBS): Set to be the same as GCDEPS.
	(THREADDEPS): Use `.la' form of library.
	(THREADLIBS): Set to be the same as THREADDEPS.
	* Makefile.am (toolexeclib_LTLIBRARIES): Renamed from
	toolexeclib_LIBRARIES.
	(libgcj_la_SOURCES): Renamed for libtoolization.
	(EXTRA_libgcj_la_SOURCES): Likewise.
	(libgcj_la_DEPENDENCIES): Likewise.
	(libgcj_la_LIBADD): Likewise.
	($(nat_files)): Use LTCXXCOMPILE.
	($(c_files)): Use LTCOMPILE.
	(GCJCOMPILE): New macro.
	(.class.o): Use it.
	(.java.o): Likewise.
	($(javao_files)): Likewise.
	(jv_convert_LINK): Use LIBTOOL.
	(nat_files): Use `.lo' files.
	(c_files): Likewise.
	(javao_files): Likewise.
	(.class.lo): Renamed.
	(.java.lo): Likewise.
	($(nat_files)): Depend on %.lo.
	($(c_files)): Likewise.
	($(javao_files)): Likewise.
	(jv_convert_LDADD): Link against .lo files.
	(jv_convert_DEPENDENCIES): Depend on .lo files.
	(maintainer-check): Depend on libgcj.la, but examine .a file.
	(jv_convert_DEPENDENCIES): Depend on libgcj.la.
	(libgcj_la_LDFLAGS): New macro.

1999-04-23  Warren Levy  <warrenl@cygnus.com>

	* Makefile.am: Added URLDecoder and URLEncoder.
	* Makefile.in: Rebuilt.

	* java/net/ServerSocket.java (setSocketFactory): Renamed from
	setSocketImplFactory to match spec.
	* java/net/Socket.java (getSoLinger): Changed return type to
	match spec.

	* java/net/URLDecoder.java: New file.
	* java/net/URLEncoder.java: New file.

1999-04-21  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natString.cc (getBytes): Reverted earlier change and
	applied correct fix from Per Bothner.

	* java/lang/String.java: Don't throw
	UnsupportedEncodingException.

	* java/lang/natString.cc (getBytes): Correctly size result
	buffer.  From Bryce McKinlay <bryce@albatross.co.nz>.

1999-04-20  Andrew Haley  <aph@cygnus.com>

	* include/sparc-signal.h: new file.
	* configure.in: include/sparc-signal.h added.
	* configure: regenerated.
	* prims.cc (JvRunMain): signal handling code rewritten to be more
	portable.
	(catch_segv): ditto.
	(catch_fpe): ditto.
	* include/i386-signal.h: reorganized.
	* include/default-signal.h: reorganized.

1999-04-19  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natSystem.cc (init_properties): Only declare pwd_entry
	once.  From Anthony Green.

1999-04-19  Andrew Haley  <aph@cygnus.com>

	* Makefile.in: Processed with new automake.

1999-04-19  Tom Tromey  <tromey@cygnus.com>

	* include/javaprims.h: Removed security namespace.

1999-04-20  Anthony Green  <green@cygnus.com>

	* java/io/PrintStream.java (println): Remove extra println.

1999-04-19  Anthony Green  <green@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (ordinary_java_source_files): Add new security files.

	* java/security/NoSuchAlgorithmException.java,
	java/security/MessageDigest.java: New files.

	* include/javaprims.h: Add security namespace.

1999-04-16  Per Bothner  <bothner@cygnus.com>

	* gnu/gcj/convert/JIS0201.h:  New file, generated from Unicode table.
	* gnu/gcj/convert/Input_JavaSrc.java: New BytesToUnicode class.
	* gnu/gcj/convert/Input_SJIS.java: New BytesToUnicode class.
	* gnu/gcj/convert/Output_EUCJIS.java:  New UnicodeToBytes class.
	* gnu/gcj/convert/Output_SJIS.java:  New UnicodeToBytes class.
	* gnu/gcj/convert/natInput_EUCJIS.cc:  New file.
	* gnu/gcj/convert/natInput_SJIS.cc:  New file.
	* gnu/gcj/convert/natOutput_EUCJIS.cc:  New file.
	* gnu/gcj/convert/natOutput_SJIS.cc:  New file.
	* gnu/gcj/convert/make-trie.c:  New file: functions to make a trie.
	* gnu/gcj/convert/gen-from-JIS.c:  Invoke make-trie for output.
	* gnu/gcj/convert/Unicode_to_JIS.cc:  New generated trie table.
	* Makefile.am:  Various changes for new files and conversions.

	* gnu/gcj/convert/UnicodeToBytes.java (write(String,int,int,char[])):
	New overloading, allows greater efficiency.
	* gnu/gcj/convert/Output_8859_1.java (write(String,int,int,char[])):
	New overloading (for efficiency - avoids copying).

	* gnu/gcj/convert/Output_UTF8.java:  Fix typo: 0xC0 -> 0c3F.
	* gnu/gcj/convert/Input_UTF8.java:  Fix typos in bit masks.

	* java/io/InputStreamReader.java (<init>):  Set super.in correctly.
	* java/io/OutputStreamWriter.java (<init>):  Set super.in correctly.
	(writeChars):  Don't be quite so eager to flush.
	* java/io/PrintStream.java:  Rewrite.  Now more similar to
	OutputStreamWriter, using explicit UnicodeToBytes converter.
	Also, autoflush does not need to flush so often.
	* java/lang/natString.cc (getBytes):  More efficient algorithm.
 	(init(jbyteArray,jint,jint,jstring)):  More efficient.
	
1999-04-15  Warren Levy  <warrenl@cygnus.com>

	* Makefile.am (ordinary_java_source_files): Added new Connection 
	and Handler classes in gnu.gcj.protocol.file package.
	* Makefile.in: Rebuilt.

	* gnu/gcj/protocol/file/Connection.java: New file.
	* gnu/gcj/protocol/file/Handler.java: New file.
	* gnu/gcj/protocol/http/Connection.java (getInputStream): Check
	if doInput allows input.
	(getOutputStream): Check if doOutput allows output.
	* java/net/URLStreamHandler.java (parseURL): Fix indentation.

1999-04-14  Tom Tromey  <tromey@cygnus.com>

	* java/net/natInetAddress.cc (lookup): On glibc2.0 systems, make
	buffer larger to work around bug.
	From Bryce McKinlay <bryce@albatross.co.nz>.

1999-04-14  Andrew Haley  <aph@cygnus.com>

 	* java/lang/natDouble.java (doubleToLongBits): ensure that all
 	NaNs are always converted to the same long value.  
 	* java/lang/natFloat.java (floatToIntBits): ditto, but for float
 	converted to int.

1999-04-13  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natSystem.cc (arraycopy): Don't always use jbyteArray;
	instead switch on actual element type.

	* Makefile.in: Rebuilt.
	* Makefile.am (AM_MAKEFLAGS): Added JC1FLAGS.

1999-04-13  Andrew Haley  <aph@cygnus.com>

        * include/i386-signal.h, include/default-signal.h: New files.   
        * prims.cc (catch_segv): Call MAKE_THROW_FRAME in exception
        handler.
        (catch_fpe): New function.      
        * configure.in: Make link to appropriate include/java-signal.h.
        * configure: Rebuilt.
        * Makefile.am: include/java-signal.h added to dependency list.
        * Makefile.in: Rebuilt.

1999-04-12  Urban Widmark <urban@svenskatest.se>

	* java/io/DataInputStream.java (readLine): Corrected handling of
	empty lines, from null to "".

1999-04-12  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (libgcj.zip): Put `gnu' classes into zip file.

	* java/lang/natSystem.cc (SystemClass): New define.
	(init_properties): Synchronize.

1999-04-08  Geoff Berry  <gcb@gnu.org>

	* natInetAddress.cc (lookup): Fix typo (AF_INET16 -> AF_INET6).
	* natPlainSocketImpl.cc (accept): Add missing else if check
	for AF_INET6.

1999-04-08  Tom Tromey  <tromey@cygnus.com>

	* java/lang/Long.java (parseLong): Corrected overflow detection
	code.
	* java/lang/Integer.java (parseInt): Corrected overflow detection
	code.

	* java/io/PrintStream.java (print): Handle null string argument.
	(println): Likewise.

1999-04-07  Warren Levy  <warrenl@cygnus.com>

	* java/lang/natString.cc (init(jbyteArray,jint,jint,jstring)):
	Set count to 0 when InputStreamReader returns -1 for EOF.

1999-04-07  Tom Tromey  <tromey@cygnus.com>

	* mauve-libgcj: Omit java.text.Collator,
	java.text.RuleBasedCollator.

1999-04-06  Tom Tromey  <tromey@cygnus.com>

	* gnu/gcj/protocol/http/Connection.java (getHeaderField): Catch
	IOException from getHttpHeaders().
	(getHeaderFieldKey): Likewise.

	* include/javaprims.h: Regenerated declarations.

	* Makefile.in: Rebuilt.
	* Makefile.am (ordinary_java_source_files): Updated for removed
	files.

1999-04-06  Per Bothner  <bothner@cygnus.com>

	* java/util/zip/Adler32.java:  New class.
	* java/util/zip/CRC32.java:  Add working method bodies.
	* Makefile.am (ordinary_java_source_files):  Add new Adler32 class.
	* Makefile.in:  Re-generate.

Tue Apr  6 18:28:42 1999  Warren Levy  <warrenl@cygnus.com>

	* gnu/gcj/protocol/http/Connection.java: New file.  Rewritten
	from version in removed www hierarchy.
	* gnu/gcj/protocol/http/Handler.java: New file.  Copied from
	version in removed www hierarchy.

	* gnu/gcj/www/protocol/http/Connection.java: Removed.
	* gnu/gcj/www/protocol/http/Handler.java: Removed.
	* gnu/gcj/www/protocol/http: Removed dir.
	* gnu/gcj/www/protocol: Removed dir.
	* gnu/gcj/www: Removed dir.

	* java/net/HttpURLConnection.java: Revised comments to indicate
	missing JDK 1.2 methods.

	* java/net/URL.java (setURLStreamHandler): Look in gnu/gcj/protocol
	hierarchy rather than the gnu/gcj/www/protocol one.
	* java/net/URLConnection.java: Updated status comments.
	(setContentHandler): Look in gnu/gcj/content hierarchy rather than
	the gnu/gcj/www/content one.

1999-04-06  Per Bothner  <bothner@cygnus.com>

	* Makefile.am (JIS0208_to_Unicode.cc, JIS0212_to_Unicode.cc):
	The gen-from-JIS program is in $(CONVERT_DIR).

1999-04-06  Tom Tromey  <tromey@cygnus.com>

	* mauve-libgcj: Renamed from mauve-libjava.

Tue Apr  6 03:18:38 1999  Warren Levy  <warrenl@cygnus.com>

	* java/net/HttpURLConnection.java (getResponseCode): Implemented.
	(getResponseMessage): Implemented.
	(getResponseVals): New private method.

	* java/net/URLConnection.java (getContent): Implemented.
	(setContentHandler): Convert non-alphabetic/numeric chars per spec.

1999-04-05  Tom Tromey  <tromey@cygnus.com>

	* Makefile.am (bin_PROGRAMS): Renamed convert to jv-convert.
	(jv_convert_SOURCES): Renamed.
	(EXTRA_jv_convert_SOURCES): Likewise.
	(jv_convert_LDFLAGS): Likewise.
	(jv_convert_LINK): Likewise.
	(jv_convert_LDADD): Likewise.
	(jv_convert_DEPENDENCIES): Likewise.

	* Makefile.in: Rebuilt.
	* Makefile.am (toolexeclibdir): Reference toolexecdir, not
	tooldir.

Mon Apr  5 02:14:35 1999  Warren Levy  <warrenl@cygnus.com>

	* java/net/HttpURLConnection.java (setRequestMethod): Use String.equals
	method for comparison.

	* java/net/URLConnection.java (getContentLength): Implemented.
	(getContentType): Implemented.
	(getContentEncoding): Implemented.
	(getExpiration): Implemented.
	(getDate): Implemented.
	(getLastModified): Implemented.
	(getHeaderFieldInt): Implemented.
	(getHeaderFieldDate): Implemented.

Fri Apr  2 18:04:52 1999  Warren Levy  <warrenl@cygnus.com>

	* java/net/URLConnection.java (toString): Implemented.
	(setContentHandlerFactory): Implemented.
	(setContentHandler): Wrote new private helper method.

1999-04-01  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am ($(java_source_files:.java=.class): Reverted change
	of 1999-03-31; we always want to build all the .class files.
	Depend on java_source_files, not libgcj.zip.
	(nat_headers): Define in terms of ordinary_java_source_files.

1999-03-31  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (special_java_source_files): New macro.
	(java_source_files): Use it.
	(ordinary_java_source_files): New macro.
	(java_source_files): Use it.
	($(ordinary_java_source_files:.java=.class)): Renamed to avoid
	creating headers for those files with hand-maintained headers.

	* include/javaprims.h: Regenerated namespace declarations.
	* classes.pl (scan): Include [0-9] in regexp for matching class
	names; for java.util.zip.CRC32.

	* Makefile.in: Rebuilt.
	* Makefile.am (nat_headers): Redefined to generate all possible
	header files.

	* java/util/zip/ZipException.java: In package java.util.zip, not
	java.net.

1999-03-30  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in (EH_COMMON_INCLUDE): Look in ../compat-include for
	eh-common.h when not building in tree with gcc.

	* Makefile.in: Rebuilt.
	* Makefile.am ($(nat_files) $(GCOBJS) $(THREADOBJS)
	$(libgcj_a_OBJECTS)): Changed how we list files that depend on
	nat_headers.
	($(java_source_files:.java=.class)): New target.

	* Makefile.in: Rebuilt.
	* Makefile.am (java_source_files): Added
	java/net/HttpURLConnection.java and
	gnu/gcj/www/protocol/http/Connection.java.

Tue Mar 30 15:20:45 1999  Warren Levy  <warrenl@cygnus.com>

	* gnu/gcj/www/protocol/http/Connection.java: New file.
	* gnu/gcj/www/protocol/http/Handler.java (openConnection): Implemented.
	* java/net/HttpURLConnection.java: New file.
	* java/net/URLConnection.java (getHeaderField): Implemented default.
	(getHeaderFieldKey): Implemented default method.

1999-03-30  Tom Tromey  <tromey@cygnus.com>

	* gnu/gcj/convert/JIS0212.h, gnu/gcj/convert/JIS0208.h: Rebuilt.

	* java/util/zip/Deflater.java: Added copyright header.
	* java/util/zip/CRC32.java: Added copyright header.

	* Makefile.am ($(srcdir)/$(CONVERT_DIR)/JIS0208.h): Note in file
	that it is automatically generated.
	($(srcdir)/$(CONVERT_DIR)/JIS0212.h): Likewise.

	* gnu/gcj/convert/BytesToUnicode.java,
	gnu/gcj/convert/Convert.java, gnu/gcj/convert/Input_8859_1.java,
	gnu/gcj/convert/Input_EUCJIS.java,
	gnu/gcj/convert/Input_UTF8.java,
	gnu/gcj/convert/JIS0208_to_Unicode.cc,
	gnu/gcj/convert/JIS0212_to_Unicode.cc,
	gnu/gcj/convert/Output_8859_1.java,
	gnu/gcj/convert/Output_JavaSrc.java,
	gnu/gcj/convert/Output_UTF8.java,
	gnu/gcj/convert/UnicodeToBytes.java,
	gnu/gcj/convert/natInput_EUCJIS.cc: Added copyright headers.

	* gnu/gcj/convert/gen-from-JIS.c (main): Fixed incorrect fprintf.

	* Makefile.in, configure: Rebuilt.
	* configure.in (TESTSUBDIR): Enable if testsuite subdir exists,
	not if test subdir exists.
	(--enable-gcj-classes): Removed; gcj always used to generate
	.class files.
	(JAVA, JAVAC): Removed.
	(--enable-single-compilation, --enable-source-compilation):
	Removed.
	(here): New subst.
	(NATIVE): New conditional.
	* Makefile.am (toolexecdir): Renamed from tooldir to allow
	`install-exec' to work.
	(toolexeclibdir): Likewise.
	(toollib_LIBRARIES): Likewise.
	(AM_MAKEFLAGS): Don't pass tooldir.
	(JAVAC): New macro.
	(javao_files): Redefined.
	(java_source_files): New macro.
	(c_source_files): New macro.
	(c_files): Redefined in terms of c_source_files.
	(java_io_files, java_lang_files, java_net_files, java_text_files,
	java_util_files, gnu_files, java_files): Removed.
	(class_io_files, class_lang_files, class_net_files,
	class_text_files, class_util_files, class_gnu_files, class_files):
	Removed.
	(nat_source_files): New macro.
	(nat_files): Redefined in terms of nat_source_files.
	(EXTRA_libgcj_a_SOURCES): Added c_source_files,
	java_source_files.  Removed no-such-file.c.
	(here): Removed.
	(ETAGS_ARGS): Removed.
	(TAGS_DEPENDENCIES): Likewise.
	(libgcj.zip): Depend on java_source_files.  Use $(here) and not
	pwd in rule.
	(src_io_files, src_lang_files, src_text_files, src_util_files,
	src_gnu_files): Removed.
	Removed ALL_AT_ONCE and COMPILE_FROM_CLASS code.
	(BUILT_SOURCES): Removed.
	(header-check): New target.
	(javadir): Removed.
	(noinst_PROGRAMS): New macro.
	($(srcdir)/$(CONVERT_DIR)/JIS0208_to_Unicode.cc): Conditionalize
	on MAINTAINER_MODE.
	($(srcdir)/$(CONVERT_DIR)/JIS0212_to_Unicode.cc): Likewise.
	(gen-from-JIS): Build in top directory.
	(convert_source_files): New macro.
	(convert_SOURCES): New macro.
	(convert_LDFLAGS): Likewise.
	(convert_LINK): Likewise.
	(convert_LDADD): Likewise.
	(convert_DEPENDENCIES): Likewise.
	(convert): Removed.
	(gen-from-JIS): Removed.
	(gen_from_JIS_SOURCES): New macro.
	(gen_from_JIS_LDADD): Likewise.
	(gen_from_JIS_DEPENDENCIES): Likewise.

	* configure: Rebuilt.
	* configure.in (CANADIAN): Set to `yes', not `canadian'.
	(NULL_TARGET): Initialize to `no'.  Correctly examine $NULL_TARGET
	when defining conditional.

Tue Mar 30 10:36:27 1999  Per Bothner  <bothner@cygnus.com>

	* gnu/gcj/convert/{JIS0208.TXT,JIS0212.TXT}:  Remove these files.
	The Unicode Consortium does not permit their re-distribution.
	* Makefile.am, Makefile.in:  Add comments with URLs for removed files.
	(JIS0208.h, JIS0212.h):  Do not depend on removed files.

Mon Mar 29 18:58:13 1999  Per Bothner  <bothner@cygnus.com>

	* natSystem.c (init_properties):  Use malloc, realloc, free after all.

Mon Mar 29 13:41:02 1999  Per Bothner  <bothner@cygnus.com>

	* gnu/gcj/convert/{JIS0208.TXT,JIS0212.TXT}:  New mapping tables
	from Unicode Consortium.
	* gnu/gcj/convert/{JIS0208.h,JIS0212.h}:  New generated headers.
	* gnu/gcj/convert/gen-from-JIS.c:  New utility for maintainers only.
	* gnu/gcj/convert/{JIS0208_to_Unicode.cc,JIS0212_to_Unicode.cc}:
	New tables, generated using gen-from-JIS.
	* gnu/gcj/convert/Output_JavaSrc.java:  New UnicodeToBytes class.
	* gnu/gcj/convert/Output_UTF8.java:  Fix bug.
	* gnu/gcj/convert/Input_EUCJIS.java:  New BytesToUnicode class.
	* gnu/gcj/convert/natInput_EUCJIS.cc:  Native methods for new class.

	* gnu/gcj/convert/Convert.java:  New application.
	* Makefile.am, Makefile.in (convert):  New program, using Convert.
	Build the various JIS conversion tables (in maintainer mode).

Fri Mar 26 16:51:30 1999  Warren Levy  <warrenl@cygnus.com>

	* gnu/gcj/www/protocol/http/Handler.java: New file - stubbed.

	* java/net/URL.java (URL): Deal with null property value.  Use "."
	as separator in building class name.
	* java/net/URLConnection.java: Implemented majority of stubbed methods.
	* java/net/URLStreamHandler.java (parseURL): Use "" in string
	manipulations instead of 'null'.  Comment cleanup.  Use 0 for the
	beginning of the substring rather than 'start'.

1999-03-26  Tom Tromey  <tromey@cygnus.com>

	* include/java-chartables.h: Rebuilt.
	* include/java-chardecomp.h: New file.
	* chartables.pl: Generate output files directly.  Added support
	for generating decomposition header.
	(canonical_decomposition, full_decomposition): New globals.
	(DECOMPOSITION): New constant.
	(process_char): Call add_decomposition.
	(add_decomposition): New sub.
	(write_decompositions): New sub.

1999-03-25  Tom Tromey  <tromey@cygnus.com>

	* java/text/CollationElementIterator.java: New file.

	* mauve-libjava: Omit StringTest.

Wed Mar 24 15:17:49 1999  Warren Levy  <warrenl@cygnus.com>

	* java/net/URL.java (URL(URL, String, URLStreamHandler)): Allow URLs
	without a '/' when parsing protocol.  Handle ref outside of parseURL.
	(hashCode): Implemented.
	(set): Don't expand -1 to default port.
	(getDefaultPort): Removed.

	* java/net/URLStreamHandler.java (parseURL): Implemented.
	(toExternalForm): Implemented.

1999-03-23  Tom Tromey  <tromey@cygnus.com>

	* java/text/BreakIterator.java (getSentenceInstance):
	Implemented.
	* gnu/gcj/text/SentenceBreakIterator.java: New file.

	* Makefile.in: Rebuilt.
	* Makefile.am (nat_headers): Added IllegalAccessException.
	* java/lang/natClass.cc (newInstance): Throw
	IllegalAccessException, not IllegalAccessError.
	Include IllegalAccessException.h.

1999-03-22  Tom Tromey  <tromey@cygnus.com>

	* gnu/gcj/text/LineBreakIterator.java: New file.
	* java/text/BreakIterator.java (getLineInstance): Implemented.

	* gnu/gcj/text/WordBreakIterator.java (WordBreakIterator): Made
	copy constructor private.
	(previous, next): Removed erroneous comment about line
	separators.
	(previous): Correctly recognize break between non-letter on the
	left and letter on the right.  Handle apostrophes correctly.

	* java/text/BreakIterator.java (getWordInstance): Implemented.
	* gnu/gcj/text/WordBreakIterator.java: New file.
	* gnu/gcj/text/CharacterBreakIterator.java: Extend
	BaseBreakIterator.
	* gnu/gcj/text/BaseBreakIterator.java: New file.

1999-03-19  Tom Tromey  <tromey@cygnus.com>

	* java/text/BreakIterator.java: New file (partially stubbed out).
	* gnu/gcj/text/CharacterBreakIterator.java: New file.

	* include/config.h.in: Rebuilt.
	* acconfig.h (STRUCT_TM_HAS_GMTOFF): New define.
	(HAVE_TIMEZONE): Likewise.
	* configure: Rebuilt.
	* configure.in: Added timezone checks.
	* java/util/natGregorianCalendar.cc (computeTime): Adjust for
	timezone.

Fri Mar 19 15:26:35 1999  Per Bothner  <bothner@cygnus.com>

	* gnu/gcj/convert/BytesToUnicode.java:  New abstract class.
	* gnu/gcj/convert/UnicodeToBytes.java:  New abstract class.
	* gnu/gcj/convert/Input_8859_1.java:  New BytesToUnicode sub-class.
	* gnu/gcj/convert/Input_UTF8.java:  New BytesToUnicode sub-class.
	* gnu/gcj/convert/Output_8859_1.java:  New UnicodeToBytes sub-class.
	* gnu/gcj/convert/Output_UTF8.java:  New UnicodeToBytes sub-class.
	* java/io/InputStreamReader.java:  Rewrite to use BytesToUnicode.
	* java/io/OutputStreamWriter.java:  Rewrite to use UnicodeToBytes.

	* java/io/natFileDescriptorPosix.cc (open):  Use O_BINARY flag.
	(BSD_COMP):  Kludge needed for Solaris2.

Fri Mar 19 01:49:46 1999  Warren Levy  <warrenl@cygnus.com>

	* java/net/URL.java (URL(java.net.URL, string): Moved code to
	URL(java.net.URL, string, URLStreamHandler) and call it with a
	null handler.  In latter constructor, added SecurityManager check.
	(set): Expect null handler on bad protocol rather than an exception.
	(setURLStreamHandler): Simplified exception handling; return null
	on invalid protocol.

1999-03-18  Tom Tromey  <tromey@cygnus.com>

	* java/text/DecimalFormat.java (format(long,...)): Rewrote.

	* java/lang/natSystem.cc (setOut, setIn, setErr): New native
	methods.
	Include PrintStream.h, InputStream.h.
	* java/lang/System.java (ForwardingInputStream,
	ForwardingOutputStream): Removed.
	(setErr, setIn, setOut): Now native.

	Reverted patch from 1999-02-12 to work around problem in
	libgcc2.c.
	* exception.cc (_Jv_eh_alloc): Use malloc, not _Jv_AllocBytes.
	(_Jv_eh_free): Use free.

	* java/io/natFileDescriptorPosix.cc (open): Allocate enough space
	for path name.  Minor formatting fixes.

	* boehm.cc (_Jv_MarkObj): Always mark `methods' field.

	* prims.cc (fail_on_finalization): New function.
	(_Jv_GCWatch): Likewise.

	* prims.cc (JvRunMain): Initialize `nullp'.
	(nullp): New global.
	(catch_segv): Throw nullp.

	* Makefile.in: Rebuilt.
	* Makefile.am (ZIP): In "null target" case, zip is found in the
	build tree.

	* prims.cc (_Jv_PrimClass): Initialize all elements of class
	object.
	Include Modifier.h.

	* java/lang/StringBuffer.java (StringBuffer): Don't use
	ensureCapacity to set initial capacity.
	(capacity): Subtract `length' from return result.

Thu Mar 18 01:53:35 1999  Warren Levy  <warrenl@cygnus.com>

	* java/io/natFileDescriptorPosix.cc (open): Throw
	FileNotFoundException, but with filename and errno in msg.

Wed Mar 17 11:09:30 1999  Warren Levy  <warrenl@cygnus.com>

	* gnu/gcj/www/protocol/URLStreamHandlerFactory.java: Removed;
	functionality folded into java/net/URL.java per spec.
	
	* java/io/natFileDescriptorPosix.cc (open): Check for ENOENT rather
	than EEXIST for throwing FileNotFoundException.
	
	* java/net/URL.java: Folded in default URLStreamHandlerFactory 
	algorithm per JDK 1.2 doc.  Added SecurityManager checks.
	
	* java/net/URLStreamHandler.java (parseURL): Added stub.

1999-03-15  Andrew Haley  <aph@cygnus.com>

	* java/text/ChoiceFormat.java (nextDouble): Simplify and fix off
	by one errors.

1999-03-15  Andrew Haley  <aph@cygnus.com>

	* java/lang/natSystem.cc (currentTimeMillis): Restore eCos clock
	support.

1999-03-12  Tom Tromey  <tromey@cygnus.com>

	* prims.cc (catch_segv): New function.
	Include <signal.h> if HANDLE_SEGV defined.  Include
	NullPointerException.h.
	(JvRunMain): If HANDLE_SEGV defined, install catch_segv as SIGSEGV
	handler.

	* java/text/SimpleDateFormat.java (equals): Ensure that object is
	a SimpleDateFormat, not just a DateFormat.
	(defaultCenturyStart, formatData, pattern): Now private.
	(append): Now `final'.  Use `NumberFormat.format'.
	(parse): Wrote.
	(SimpleDateFormat): Turn off groupin in NumberFormat object.

	* java/lang/natString.cc (indexOf): Add `fromIndex' to successful
	result.

	* java/text/MessageFormat.java (format): Use default MessageFormat
	constructor.
	(parse, parseObject): Wrote.

	* java/text/SimpleDateFormat.java (SimpleDateFormat): Wrote no-arg
	constructor.

1999-03-12  Andrew Haley  <aph@cygnus.com>

	* java/lang/String.java (indexOf): Replace with native method for
	better performance.
	* java/lang/natString.cc (IndexOf): As above.

	* java/lang/natString.cc (init(jbyteArray,jint,jint,jint)):
	Argument check corrected.
	(init(jbyteArray,jint,jint,jstring)): Likewise.
	
	* java/lang/StringBuffer.java (ensureCapacity): Replace with JDK
	1.2 compliant method.
 
	* java/lang/Double.java (byteValue, shortValue): JDK 1.1 methods
	added.
	* java/lang/Float.java (byteValue, shortValue): Likewise.

1999-03-11  Tom Tromey  <tromey@cygnus.com>

	* java/text/DecimalFormat.java (parse): Wrote.

	* java/text/ChoiceFormat.java (parse): Set error index on
	ParsePosition object.

	* java/lang/Integer.java (parseInt): Throw exception on overflow
	when intermediate result is most negative number.  Changed
	overflow detection as well.
	* java/lang/Long.java (parseLong): Likewise.

	* configure, Makefile.in: Rebuilt.
	* configure.in (NULL_TARGET, CANADIAN): New conditionals.  Set
	CANADIAN when building in source tree that doesn't include gcc.
	* Makefile.am (ZIP, GCJ, GCJH): Use automake conditionals to
	define.

	* java/text/ChoiceFormat.java (nextDouble): Correct some
	off-by-one errors when masking or adding.

	* java/text/DecimalFormat.java (format): Fill in FieldPosition
	parameter, if given.  Use `%', not IEEEremainder.
	(scanFix): Throw error if multiplier already set.
	(computePattern): Wrote.

1999-03-11  Andrew Haley  <aph@cygnus.com>

	* java/text/ChoiceFormat.java (mantissaBits): Use correct value of
	52.
	(nextDouble): Corrected masking logic.  Handle interaction between
	`next' and negative numbers.

Wed Mar 10 18:58:37 1999  Warren Levy  <warrenl@cygnus.com>

	* gnu/gcj/www/protocol/URLStreamHandlerFactory.java: Created.
	* java/net/URL.java: Added general comments.

1999-03-10  Tom Tromey  <tromey@cygnus.com>

	* java/text/ChoiceFormat.java (parse): Wrote.

	* java/text/ChoiceFormat.java (toPattern): Use `#', not `<'.

	* java/text/MessageFormat.java (MessageFormatElement.setLocale):
	Create ChoiceFormat objects.
	(format): Special-case ChoiceFormat.
	(scanFormatElement): Include { and } in generated style string.

1999-03-09  Tom Tromey  <tromey@cygnus.com>

	* java/text/ChoiceFormat.java: New file.

Tue Mar  9 17:09:18 1999  Warren Levy  <warrenl@cygnus.com>

	* java/net/BindException.java: Created.
	* java/net/ConnectException.java: Created.
	* java/net/ContentHandler.java: Created.
	* java/net/ContentHandlerFactory.java: Created.
	* java/net/FileNameMap.java: Created.
	* java/net/MalformedURLException.java: Created.
	* java/net/NoRouteToHostException.java: Created.
	* java/net/ProtocolException.java: Created.
	* java/net/ServerSocket.java (@author): Fixed typo.
	* java/net/Socket.java (@author): Fixed typo.
	* java/net/SocketImpl.java (@author): Fixed typo.
	* java/net/SocketImplFactory.java (@author): Fixed typo.
	* java/net/URL.java: Created - nearly complete.
	* java/net/URLConnection.java: Created - near-empty stub.
	* java/net/URLStreamHandler.java: Created - incomplete stub.
	* java/net/URLStreamHandlerFactory.java: Created.
	* java/net/UnknownServiceException.java: Created.

1999-03-09  Tom Tromey  <tromey@cygnus.com>

	* java/lang/System.java (ForwardingInputStream): New class.
	(ForwardingOutputStream): Likewise.
	(in, out, err): Now `final' forwarding streams.
	(setIn, setOut, setErr): Use appropriate method on forwarding
	streams.

	* java/text/MessageFormat.java (MessageFormatElement): Now `final'
	class.

Tue Mar  9 12:16:53 1999  Per Bothner  <bothner@cygnus.com>

	* java/util/zip/CRC32.java:  New class (just an incomplete stub).
	* java/util/zip/Checksum.java:  New interface (complete).
	* java/util/zip/Deflater.java:  New class (near-empty stub).
	* java/util/zip/DeflaterOutputStream.java: New class (incomplete stub).
	* java/util/zip/ZipConstants.java:  New interface (near-empty stub).
	* java/util/zip/ZipEntry.java:  New class (complete).
	* java/util/zip/ZipException.java:  New class (complete).
	* java/util/zip/ZipFile.java:  New class (incomplete stub).
	* java/util/zip/ZipOutputStream.java:  New class (incomplete stub).

1999-03-09  Tom Tromey  <tromey@cygnus.com>

	* java/text/MessageFormat.java (MessageFormatElement): Removed
	`public' specifiers.

	* java/text/DecimalFormat.java (scanFormat): Increment index
	before processing exponential format.  Fixed a couple typos in
	exception messages.
	(format): Correct normalization of exponent.

1999-03-08  Tom Tromey  <tromey@cygnus.com>

	* java/text/SimpleDateFormat.java (parse): Throw
	IllegalArgumentException, not ParseException.

1999-03-05  Tom Tromey  <tromey@cygnus.com>

	* java/text/SimpleDateFormat.java (SimpleDateFormat): Use locale
	when constructing DateFormatSymbols.  Initialize numberFormat
	field of superclass.

	* java/text/DateFormat.java (equals): Rewrote.
	(getAvailableLocales): New method.
	(getDateInstance): New methods.
	(getDateTimeInstance): Likewise.
	(getTimeInstance): Likewise.
	(getInstance): New method.
	(computeInstance): New method.

	* java/text/DateFormatSymbols.java (zoneStringsDefault): Completed
	for US.
	(safeGetResource): New method.
	(DateFormatSymbols): Use Locale paramater.
	(equals): Now protected.
	Made instance variables private.

1999-03-04  Tom Tromey  <tromey@cygnus.com>

	* java/text/DecimalFormat.java: New file.

	* java/text/NumberFormat.java (groupingUsed,
	maximumFractionDigits, maximumIntegerDigits,
	minimumFractionDigits, minimumIntegerDigits, parseIntegerOnly):
	New fields.
	(setDecimalSeparatorAlwaysShown, setMultiplier,
	setPositivePrefix): Removed.
	(setMinimumFractionDigits, setMaximumFractionDigits):
	Implemented.
	(format): Now final.
	Added many new methods.

	* Makefile.in: Rebuilt.
	* Makefile.am (gnu_files): New macro.
	(java_files): Added gnu_files.
	(class_gnu_files): New macro.
	(class_files): Use it.
	(src_gnu_files): New macro.
	(gnu.o): New target.
	(javao_files): Added gnu.o.

	* gnu/gcj/text/LocaleData_en_US.java: New file.
	* gnu/gcj/text/LocaleData_en.java: New file.
	* java/text/DecimalFormatSymbols.java: Import ResourceBundle.
	(DecimalFormatSymbols): Use ResourceBundle to find resources.
	(safeGetString): New method.
	(safeGetChar): Likewise.

1999-03-03  Tom Tromey  <tromey@cygnus.com>

	* java/text/NumberFormat.java (INTEGER_FIELD, FRACTION_FIELD): New
	constants.

	* java/text/FieldPosition.java (equals): Don't check for null
	object; instanceof does this.

	* java/util/Locale.java (clone): New method.
	(equals): Likewise.

Wed Mar  3 17:20:15 1999  Anthony Green  <green@cygnus.com>

	* doc/cni.sgml: New file.

1999-03-03  Tom Tromey  <tromey@cygnus.com>

	* prims.cc (_Jv_Abort): Mention libgcj, not libjava.

	* java/text/DecimalFormatSymbols.java: New file.

1999-03-02  Tom Tromey  <tromey@cygnus.com>

	* java/io/natFileDescriptorPosix.cc: Include sys/filio.h if it
	exists.
	* configure: Rebuilt.
	* configure.in: Check for sys/filio.h.

	* java/lang/Runtime.java (checkLink): Throw NullPointerException
	if required.
	(load): Always throw UnsatisfiedLinkError.
	(loadLibrary): Likewise.

1999-03-02  Anthony Green  <green@cygnus.com>

	* LIBGCJ_LICENSE: New file.
	* LIBJAVA_LICENSE: Removed.
	* Many files: libjava now libgcj.
	
1999-03-02  Tom Tromey  <tromey@cygnus.com>

	* include/java-chartables.h: Rebuilt.
	* chartables.pl (print_block): Make table `const'.
	(print_numerics): Likewise.
	(print_single_map): Likewise.
	(print_all_block): Likewise.
	(print_case_table): Likewise.
	(print_fast_tables): Likewise.
	* java/lang/natCharacter.cc (table_search): `table' argument now
	const.

1999-03-01  Tom Tromey  <tromey@cygnus.com>

	* java/util/Date.java (before, after): Inverted logic.

	* java/util/Date.java (parse): Handle case where first character
	in string is open parenthesis.
	(skipParens): Rewrote.

	* java/lang/reflect/natArray.cc: Include <stdlib.h>.
	* java/lang/reflect/natField.cc: Include <stdlib.h>.

	* java/util/Date.java (parse): Correctly compute beginning of
	punctuation.

	* java/util/Hashtable.java (get): Throw NullPointerException if
	key is null.
	(containsKey): Likewise.

	* java/util/Properties.java (list): Truncate value to 37
	characters and add `...'.

	* java/lang/Byte.java (parseByte): Pass `radix' to
	Integer.parseInt.

	* prims.cc (_Jv_Abort): In non-DEBUG case, use System.err, not
	fprintf.
	Include System.h, PrintStream.h.

	* java/lang/natSystem.cc (init_properties): Don't use malloc,
	realloc, or free.

	* java/lang/natSystem.cc (init_properties): Use getpwuid_r if it
	exists.
	* configure: Rebuilt.
	* configure.in: Check for getpwuid_r.  Look for `pwd.h', not
	`pwd.d'.

	* mauve-libjava: Omit AttibutedCharacterIterator, ACIAttribute.

	* java/lang/SecurityManager.java: Import java.net.*.
	(checkMulticast): New methods.

Fri Feb 26 14:54:52 1999  Per Bothner  <bothner@cygnus.com>

	* Makefile.am, Makefile.in (java/lang/reflect/Method.h):  New rule.
	(nat_files):  Add java/lang/reflect/natArray.o.
	(nat_headers):  Add Field.h and NoSuchFieldException.h.
	
	* include/java-field.h (_Jv_GetStaticLongField, _Jv_GetStaticIntField,
	_Jv_GetStaticShortField, _Jv_GetStaticByteField):  New inline methods.
	(_Jv_FromReflectedField):  Fix buglet.
	* include/jvm.h (_Jv_NewMultiArray):  New declaration.
	* include/java-assert.h (JvFail):  Pass message string to _Jv_Abort.
	* prims.cc (_Jv_Abort):  Include message in print-out.

	* prims.cc (_Jv_equal):  New method (compare Utf8Const and jstring).
	(new_multi_array):  Rename to _Jv_NewMultiArray.  Make non-static.
	* include/jvm.h (_Jv_NewMultiArray, _Jv_equal):  New declarations.

	* configure.in (AC_CHECK_HEADERS), configure:  Add pwd.h.
	* include/config.h.in (HAVE_PWD_H):  New feature macro.
	* java/lang/natSystem.cc (init_properties):  Set file.encoding,
	user.name, user.home, user.dir.

	* java/lang/reflect/Array.java:  New class.
	* java/lang/reflect/natArray.cc:  New native methods.
	* include/javaprims.h:  Declare java::lang::reflect::Array.

	* java/lang/Class.h (getField):  New private method.  Add friends.
	* java/lang/Class.java (getField):  Add private overload.
	* java/lang/natClass.cc (getField, getField, getDeclaredField,
	getDeclaredMethods):  Add working implementations.
	* java/lang/reflect/Field.java, java/lang/reflect/natField.cc:
	Finish implementation, except for access control.

	* java/lang/reflect/Modifier.java (toString):  New overload.
	* include/java-method.h:  New file.
	* java/lang/reflect/Method.java (index):  Replaced by offset field.
	Remove various private fields - get them from _Jv_Field instead.
	* java/lang/reflect/natMethod.cc (getModifiers, getName, getType):
	New method implementations.

	* java/text/NumberFormat.java:  Add a bunch of methods.

Mon Feb 22 17:52:34 1999  Per Bothner  <bothner@cygnus.com>

	* java/lang/StringBuffer.java (getChars):  Fix bounds checks.

1999-02-26  Tom Tromey  <tromey@cygnus.com>

	* include/config.h.in: Rebuilt.
	* acconfig.h (GETHOSTBYNAME_R_RETURNS_INT,
	GETHOSTBYADDR_R_RETURNS_INT, HAVE_GETHOSTBYNAME_R,
	HAVE_GETHOSTBYADDR_R): New defines.
	* java/net/natInetAddress.cc (lookup): Use gethostbyname_r and
	gethostbyaddr_r if available.
	Include <errno.h>.
	* configure: Rebuilt.
	* configure.in: Check for gethostbyname_r, gethostbyaddr_r.

	* java/net/natInetAddress.cc (aton): Use _Jv_AllocBytesChecked.
	Don't use JvFree.
	(lookup): Likewise.
	Include <jvm.h>.
	* include/jvm.h (_Jv_AllocBytesChecked): Declare.
	* prims.cc (_Jv_AllocBytesChecked): New function.

	* Makefile.in: Rebuilt.
	* Makefile.am (SUBDIRS): Removed `test'.
	* configure: Rebuilt.
	* configure.in: Don't build test/Makefile.
	* test/*: Removed all files.

Thu Feb 25 17:27:37 1999  Warren Levy  <warrenl@cygnus.com>

	* java/lang/reflect/Constructor.java: Make class final to match spec.
	* java/lang/reflect/Method.java: Ditto.

1999-02-25  Tom Tromey  <tromey@cygnus.com>

	* java/net/natInetAddress.cc: Include <sys/types.h> before
	<sys/socket.h>.
	* java/net/natPlainSocketImpl.cc: Include <sys/types.h> before
	<sys/socket.h>.

	* java/net/natInetAddress.cc: Declare gethostname if required.
	* include/config.h.in: Rebuilt.
	* acconfig.h (HAVE_GETHOSTNAME_DECL): New define.
	* configure: Rebuilt.
	* configure.in: Define HAVE_GETHOSTNAME_DECL when gethostname is
	declared in unistd.h.

1999-02-24  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (java/io/FileDescriptor.h): Removed target.
	* java/io/FileDescriptor.java (FileDescriptor): Changed protection
	from private to "none".

	* include/javaprims.h: Regenerated class declarations with new
	classes.pl.
	* classes.pl (scan): Only generate decls for java.lang, java.io,
	and java.util.

1999-02-24  Tom Tromey  <tromey@cygnus.com>

	* posix-threads.cc (_Jv_InitThreads): Mask SIGINT in all threads.
	(_Jv_ThreadWait): Allow SIGINT to be delivered to waiting thread.

1999-02-23  Tom Tromey  <tromey@cygnus.com>

	* java/util/natGregorianCalendar.cc (_REENTRANT): Only define if
	not already defined.
	* java/io/natFile.cc (_REENTRANT): Only define if not already
	defined.
	* include/config.h.in: Rebuilt.
	* acconfig.h (HAVE_BOEHM_GC): New define.
	* configure: Rebuilt.
	* configure.in: Define HAVE_BOEHM_GC if using it.
	* posix-threads.cc: Include boehm-config.h and gc.h if
	HAVE_BOEHM_GC.
	* include/posix-threads.h: Added explanatory note about Boehm GC.

	* java/io/BufferedReader.java (readLine): Only return null when
	EOF seen before any characters read.  (In particular, an empty
	line should not return null.)

	* java/io/BufferedInputStream.java (read): Only refill once per
	invocation.

	* mauve-libjava: Added java.text.StringCharacterIterator.iter,
	java.lang.Character.classify12, java.lang.String.hash,
	java.text.FieldPosition.Test, java.text.ParsePosition.Test,
	java.text.SimpleDateFormat.getAndSet2DigitYearStart

	* java/text/StringCharacterIterator.java (setIndex): No error if
	index == end.
	(next): Check for `pos == end', not `end - 1'.
	(StringCharacterIterator): Allow `pos == end'.  Explicitly check
	for null text in each constructor.
	(clone): Fixed order of arguments to constructor.

1999-02-22  Tom Tromey  <tromey@cygnus.com>

	* include/config.h.in: Rebuilt.
	* acconfig.h (HAVE_INET6): New define.
	(HAVE_SOCKLEN_T): Likewise.
	* java/net/PlainSocketImpl.java: Added copyright header.
	* java/net/natPlainSocketImpl.cc: Added copyright header.
	(union SockAddr): Use HAVE_INET6, not AF_INET6.
	(bind): Likewise.
	(connect): Likewise.
	(accept): Likewise.
	(socklen_t): New typedef.
	(accept): Use socklen_t.
	* java/net/natInetAddress.cc: Added copyright header.
	(HAVE_GETHOSTNAME): Don't define.
	(HAVE_INET_ADDR): Likewise.
	(lookup): Fixed typo.
	(aton): Don't use `address' as name of local variable.
	(lookup): Use HAVE_INET6, not AF_INET6.

	* configure: Rebuilt.
	* configure.in: Look for functions inet_aton, inet_addr,
	gethostname, inet_pton, uname.  Check for sockaddr_in6 structure.
	Check for socklen_t typedef.

	* exception.cc (__throw): Declare as __noreturn__.

Mon Feb 22 15:27:35 1999  Per Bothner  <bothner@cygnus.com>

	* Makefile.am, Makefile.in:  Also build java/net.
	(java/io/FileDescriptor.h):  Add friend java::net::PlainSocketImpl.

	* java/io/natFile.cc: #define _POSIX_PTHREAD_SEMANTICS and _REENTRANT.
	* java/util/natGregorianCalendar.cc:  #define _REENTRANT.

	* prims.cc (_Jv_malloc, _Jv_Free):  New functions.
	* include/cni.h (JvMalloc, JvFree):  New inline functions.
	(JvThrow):  Add __noreturn__ attribute.
	* include/javaprims.h (_Jv_Malloc, _Jv_Free):  New declarations.
	(_Jv_Throw):  Add __noreturn__ attribute.

	* java/net/PlainSocketImpl.java:  Init fnum to -1.
	* java/net/ServerSocket.java:  Add missing throws clauses.
	* java/lang/Socket.java:  For the constructor taking a SocketImpl,
	don't call create on the latter.  Instead, other constructors
	have to explicitly call SocketImpl.create.
	* java/net/natPlainSocketImpl.cc (accept):  Change variable addrlen
	from size_t to int, to match ::accept prototype.
	* java/net/natInetAddress.cc:  Use JvFree rather than free.


1999-02-22  Tom Tromey  <tromey@cygnus.com>

	* include/javaprims.h: Added new classes.
	* java/text/StringCharacterIterator.java: New file.
	* java/text/CharacterIterator.java: New file.

	* java/text/ParseException.java (errorOffset): Now private.

Mon Feb 22 12:54:53 1999  Per Bothner  <bothner@cygnus.com>

	* java/net:  New package.
	* java/net/{InetAddress.java,PlainSocketImpl.java,ServerSocket.java,
	Socket.java,SocketException.java,SocketImpl.java,
	SocketImplFactory.java,UnknownHostException.java,natInetAddress.cc,
	natPlainSocketImpl.cc}:  New classes.

	* configure.in (AC_CHECK_HEADERS):  Also check for <sys/socket.h>,
	<netinet.in.h>, <arpa/inet.h> and <netdb.h>.
	* include/config.h.in:  Add place-holders for HAVE_ARPA_INET_H,
	HAVE_NETDB_H, HAVE_NETINET_IN_H, and HAVE_SYS_SOCKET_H.

	* classes.pl:  Translate package into "namespace", not "class".
	* include/javaprims.h:  Update class list, using "namespace".

1999-02-21  Tom Tromey  <tromey@cygnus.com>

	* java/util/natGregorianCalendar.cc (_POSIX_PTHREAD_SEMANTICS):
	Define when appropriate.

1999-02-20  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natString.cc (_Jv_GetStringUTFRegion): Encode \u007f
	as a single byte and \u07ff as two bytes.
	(_Jv_GetStringUTFLength): Likewise.
	* include/jvm.h (UTF8_GET): Mask first byte of 3-byte encoding
	with 0x0f, not 0x1f.

1999-02-19  Tom Tromey  <tromey@cygnus.com>

	* java/io/DataOutputStream.java (writeUTF): When encoding
	character as 3 bytes, `or' first byte with 0xe0, not 0xc0.
	* java/io/DataInputStream.java (readUTF): Mask second byte of
	3-byte character with 0x3f, not 0x1f.

	* java/io/DataInputStream.java (readLong): Cast result of
	readUnsignedByte to long before using.

	* java/io/FileInputStream.java (finalize): Only finalize `fd' if
	it is not null.

	* mauve-libjava: Re-enabled java.io.DataInputOutput.
	* include/no-threads.h (_Jv_ThreadInterrupt): Removed name of
	argument to avoid warning.
	* include/quick-threads.h (_Jv_ThreadInterrupt): Removed name of
	argument to avoid warning.

1999-02-18  Tom Tromey  <tromey@cygnus.com>

	* mauve-libjava: Omit java.io.DataInputOutput and
	java.io.Utf8Encoding.

1999-02-17  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (nat_headers): Added InterruptedIOException.h.
	* java/io/natFileDescriptorPosix.cc: Include
	InterruptedIOException.h, Thread.h.
	(write): Throw InterruptedIOException when required.
	(read): Likewise.
	* posix-threads.cc: Include <signal.h>.
	(_Jv_ThreadInterrupt): New function.
	(INTR): New define.
	(handle_intr): New function.
	(_Jv_InitThreads): Register handle_intr via sigaction.
	* java/lang/natThread.cc (interrupt): Call _Jv_ThreadInterrupt.
	* include/posix-threads.h (_Jv_ThreadInterrupt): Declare.
	* include/quick-threads.h (_Jv_ThreadInterrupt): New function.
	* include/no-threads.h (_Jv_ThreadInterrupt): New function.

1999-02-19  Andrew Haley  <aph@cygnus.com>

	* java/lang/ThreadGroup (setMaxPriority): Set the maximum priority
	of subgroups.
	(ThreadGroup (int)): Set the maximum priority of the initial
	ThreadGroup.

1999-02-18  Andrew Haley  <aph@cygnus.com>

	* java/lang/natClass.cc (forName): Check for the case where a
	classname is the name of an array and call FindClassFromSignature
	to find the Class.

1999-02-18  Andrew Haley  <aph@cygnus.com>

	* java/lang/StringBuffer (insert (int, String)): Move up any
	characters above the insert position and increase the length of
	the string buffer by the length of the argument.
	(insert (int, char[])): Likewise.
	(insert (int, char)): Likewise.
	(StringBuffer (String)): The initial capacity of the string buffer
	is 16 plus the length of the argument.
	(getChars): Add a JDK 1.2 FIXME.

1999-02-18  Andrew Haley  <aph@cygnus.com>

	* java/lang/Short.java (parseShort(String, int)): Pass radix to
	Integer.parseInt.

1999-02-18  Andrew Haley  <aph@cygnus.com>

	* java/lang/Double.java (equals): Use a bit-by-bit comparision
	instead of floating-point equality.  This is necessary for
	correct floating-point Hashtables.
	* java/lang/Float.java (equals): Ditto.

1999-02-16  Tom Tromey  <tromey@cygnus.com>

	* java/util/Properties.java (list): Truncate value to 37
	characters and add "...".

1999-02-16  Tom Tromey  <tromey@cygnus.com>

	* java/util/Vector.java (Vector): Throw IllegalArgumentException
	if initCap is negative.
	(contains): Implement JDK1.2-style handling of null argument.
	(removeElement): Likewise.
	(indexOf): Likewise.  Also, correctly handle case where idx is
	negative.
	(lastIndexOf): Likewise.

1999-02-16  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natString.cc (init): Increment source pointer in
	loop.

1999-02-16  Tom Tromey  <tromey@cygnus.com>

	* exception.cc: Include NullPointerException.h.
	(_Jv_Throw): If `value' is NULL, throw a NullPointerException.

1999-02-16  Tom Tromey  <tromey@cygnus.com>

	* Makefile.in: Rebuilt.
	* Makefile.am (AUTOMAKE_OPTIONS): Added `no-installinfo.

Sat Feb 13 20:25:09 1999  Bonzo Armstrong  <bonzo@cygnus.com>

	* configure.in: Don't undefine EH_COMMON_INCLUDE just because
	we're compiling canadian.
	* configure: Regenerated.

1999-02-12  Andrew Haley  <aph@cygnus.com>
 
	* java/lang/sf_rint.c: Resurrected.  This file shouldn't have been
	deleted from libgcj.

1999-02-12  Tom Tromey  <tromey@cygnus.com>

	* exception.cc (_Jv_eh_alloc): Use _Jv_AllocBytes, not malloc.
	(_Jv_eh_free): Don't call free.
	Don't declare malloc or free.

1999-02-11  Tom Tromey  <tromey@cygnus.com>

	* configure.host: Use `libgcj', not `libjava'.  Removed `echo'.

1999-02-11  Andrew Haley  <aph@cygnus.com>

	* ef_fmod.c, sf_ceil.c, sf_fabs.c, sf_floor.c, sf_rint.c,
	wf_fmod.c: Deleted.  These are all files from fdlibm which aren't
	needed by java.lang.*.
	* Makefile.am: ef_fmod.o, sf_ceil.o, sf_fabs.o, sf_floor.o, sf_rint.o,
	wf_fmod.o: Removed from libjava.a.

1999-02-11  Tom Tromey  <tromey@cygnus.com>

	* include/javaprims.h: Reverted previous change; with it
	exception.cc can't compile.

	* include/javaprims.h (_Jv_Throw): Mark as noreturn.

	* include/config.h.in: Rebuilt.
	* include/posix-threads.h (_Jv_ThreadYield): Conditionalize on
	HAVE_SCHED_YIELD.
	* configure: Rebuilt.
	* configure.in: Check for sched_yield.  Look in thread library for
	all thread functions.

	* posix-threads.cc (_Jv_MutexInit): Handle case where system has
	no recursive mutexes.
	(_Jv_MutexDestroy): Define when required.
	(_Jv_MutexLock): Likewise.
	(_Jv_MutexUnlock): Likewise.
	(_Jv_CondWait): Conditionalize on HAVE_RECURSIVE_MUTEX.
	* include/posix-threads.h (HAVE_RECURSIVE_MUTEX): New define.
	(_Jv_Mutex_t): New structure.
	(_Jv_MutexDestroy): Only define if recursive mutexes available.
	(_Jv_MutexLock): Likewise.
	(_Jv_MutexUnlock): Likewise.

1999-02-10  Tom Tromey  <tromey@cygnus.com>

	* aclocal.m4, configure, Makefile.in: Rebuilt.
	* acinclude.m4: Renamed libjava to libgcj.  Updated to use
	automake 1.4.
	* configure.in: Changed to track library changes.
	* Makefile.am (toollib_LIBRARIES): Renamed libjava to libgcj.
	(AM_CXXFLAGS): Likewise.
	(data_DATA): Likewise.
	(AM_CFLAGS): Likewise.
	(JC1FLAGS): Likewise.
	(libgcj_a_SOURCES): Likewise.
	(EXTRA_libgcj_a_SOURCES): Likewise.
	(libgcj_a_DEPENDENCIES): Likewise.
	(libgcj_a_LIBADD): Likewise.
	(libgcj.zip): Likewise.
	(CLEANFILES): Likewise.
	($(nat_headers)): Likewise.
	(java/lang/FirstThread.h): Likewise.
	(java/lang/ThreadGroup.h): Likewise.
	(java/lang/String.h): Likewise.
	(java/lang/reflect/Field.h): Likewise.
	(BUILT_SOURCES): Likewise.
	(maintainer-check): Likewise.
	(CONFIG_STATUS_DEPENDENCIES): Likewise.
Tue Feb  9 11:06:38 1999  Anthony Green  <green@cygnus.com>

	* java/util/natGregorianCalendar.cc (computeFields): Only use
 	gmtime_r and localtime_r when configured for posix threads.

	* java/io/natFile.cc (get_entry): Only use readdir_r when
 	configured for posix threads.

	* java/util/natGregorianCalendar.cc: Update copyright notice.
	* java/util/TimeZone.java: Ditto.
	* java/util/SimpleTimeZone.java: Ditto.

1999-02-08  Tom Tromey  <tromey@cygnus.com>

	* java/io/PrintStream.java (line_separator): New constant.
	(print): Use line_separator, not `file.separator' property.
	(println): Use line_separator.

	* java/lang/natClass.cc (newInstance): Throw IllegalAccessError
	when trying to instantiate Class.

	* java/lang/ThreadGroup.java (ThreadGroup): Throw
	NullPointerException if argument is null.

	* java/lang/Thread.java (setName): Throw NullPointerException, not
	IllegalArgumentException.
	(Thread): Likewise.

1999-02-08  Andrew Haley  <aph@cygnus.com>

	* java/lang/natClass.cc (newInstance): Don't allow anyone to
	create new Classes with Class.newInstance().

	* java/lang/natClass.cc (_Jv_FindArrayClass): Only add a
	semiciolon to end of an array Class's signature if the elements of
	the array aren't themselves arrays.

	* java/lang/natSystem.cc (arraycopy): The size of an element of an
	array of objects is always sizeof(jobject), not the size of the
	object to which the reference points.

1999-02-08  Tom Tromey  <tromey@cygnus.com>

	* java/util/BitSet.java (and): Throw NullPointerException when
	required.
	(or): Likewise.
	(xor): Likewise.

	* java/util/BitSet.java (BitSet): Throw NegativeArraySizeException
	if argument is negative.
	(clear): Correctly compute `offset'.  Throw
	IndexOutOfBoundsException when required.
	(set): Likewise.
	(get): Likewise.  Also, return correct value.
	(ensure): Changed meaning of argument.
	(toString): Wrap contents in `{}'; put spaces after commas.
	(hashCode): Don't try to examine elements off the end of array.
	(or): Correctly include bits past the end of this bit set.
	(xor): Likewise.

Thu Feb  4 12:48:03 1999  Warren Levy  <warrenl@cygnus.com>

	* configure.host (mips-tx39-*): Use jmr3904dram.ld link script 
	instead of the jmr3904app.ld script (i.e. use DRAM instead of SRAM).

1999-02-04  Andrew Haley  <aph@cygnus.com>

	* java/lang/natClass.cc (Class::forName): Remove code which mapped
	'/' in signatures to '.'
	(Class::getName): Likewise,
	(_Jv_FindArrayClass): Add a semiciolon to end of an array Class's
	signature.
	* java/lang/natFirstThread.cc (run): Change '/' in main's
	signature to '.'.

1999-02-03  Andrew Haley  <aph@cygnus.com>

	* configure.host: -ffloat-store added when compiling libjava on
	x86.  fdlibm apparently relies on this.

	* java/lang/ThreadGroup.java (add): throw an exception if the
	ThreadGroup has been destroyed.

	* java/lang/natMath.cc (round): Ensure correct NaN and overflow
	behaviour.

1999-01-27  Tom Tromey  <tromey@cygnus.com>

	* java/lang/StringBuffer.java (StringBuffer): Handle null
	argument.

1999-01-21  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natFirstThread.cc (run): Don't require main to be
	public.

Wed Jan 20 15:44:56 1999  Anthony Green  <green@cygnus.com>

	* boehm.cc (_Jv_InitGC): Clear out the free lists correctly.

1999-01-20  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natString.cc (_Jv_StringFindSlot): Synchronize on
	StringClass.
	(rehash): Likewise.
	(intern): Likewise.
	(unintern): Likewise.
	(_Jv_NewStringUtf8Const): Likewise.

	* java/text/SimpleDateFormat.java (format): Use [a-zA-z], not
	Character.isLetter, to see if character is self-quoting.  Also,
	correctly handle quoted characters.
	(parse): Fixed typo.  Also now throws ParseException.

1999-01-15  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natObject.cc (INIT_NEEDED): Added missing close paren.

	* java/lang/natObject.cc (INIT_NEEDED): Added cast in case where
	_Jv_SyncInfo has `init' member.

	* include/quick-threads.h (_Jv_MutexUnlock): Return result of
	coop_mutex_unlock.

	* java/lang/natObject.cc (_Jv_MonitorExit): Throw
	IllegalMonitorStateException if unlock fails.

	* prims.cc (_Jv_NewPrimArray): Assume allocated memory is all
	zero.
	(_Jv_NewObjectArray): Likewise.

1999-01-14  Tom Tromey  <tromey@cygnus.com>

	* java/lang/Character.java (isJavaIdentifierPart): Allow
	LETTER_NUMBER characters.

	* chartables.pl (process_char): Fixed error messages.

	* include/java-chartables.h: Rebuilt with UniData 2.1.8.
	* chartables.pl: Updated comments.  Changed detection of non-digit
	numeric values (no longer miss \u00b2 and friends).

	* java/lang/Character.java (isJavaIdentifierPart): Recognize
	currency symbols and connector punctuation.
	(isIdentifierIgnorable): Make 7f-9f ignorable.

	* prims.cc (_Jv_NewObjectArray): Check for overflow.
	(_Jv_NewPrimArray): Likewise.
	(SIZE_T_MAX): New define.

	* java/lang/ClassLoader.java (system): Now private and final.

	* boehm.cc (_Jv_MarkObj): Handle case where object's class is
	null.

	* configure: Rebuilt.
	* configure.in (EH_COMMON_INCLUDE): Add -I for `../include' as
	well.
	* exception.cc: Include gansidecl.h.

1999-01-14  Andrew Haley  <aph@cygnus.com>

	* java/lang/Math.java, java/lang/natMath.cc: min and max routines
	corrected: they didn't treat -0.0 and NaNs correctly.

Wed Jan 13 13:32:22 1999  Anthony Green  <green@cygnus.com>

	* nogc.cc: Use calloc to zero out memory.

1999-01-11  Tom Tromey  <tromey@cygnus.com>

	* java/lang/natClass.cc (isInstance): Return false if this class
	is primitive, not if class of `obj' is primitive.
	(_Jv_IsInstanceOf): Rewrote to use Class.isInstance.

	* java/io/SequenceInputStream.java (close): Handle case where `in'
	is already null.

	* java/text/DateFormat.java (format): New method.

	* mauve-libjava: Omit java.text.DateFormat.

1999-01-08  Tom Tromey  <tromey@cygnus.com>

	* posix-threads.cc (_Jv_ThreadInitData): Removed name of unused
	argument.
	* include/posix-threads.h (_Jv_CondNotify): Removed name of unused
	argument.
	(_Jv_CondNotifyAll): Likewise.

	* configure: Rebuilt.
	* configure.in: Change --enable-source-compilation logic to work
	correctly.

1999-01-07  Andrew Haley  <aph@cygnus.co.uk>

	* Makefile.am (AM_MAKEFLAGS): Remove RUNTEST, EXPECT, 
	and RUNTESTFLAGS from AM_MAKEFLAGS.
	* configure.in: AM_RUNTESTFLAGS added.
	* configure.host: AM_RUNTESTFLAGS added.
	* Makefile.in, test/Makefile.in, testsuite/Makefile.in: rebuilt.
	* configure: rebuilt.
	* testsuite/Makefile.am: RUNTESTFLAGS set from AM_RUNTESTFLAGS.

	* testsuite/libjava.mauve/DejaGNUTestHarness.java (main): use of
	argv[] made conditional because embedded targets may not have
	argv[].
	* testsuite/libjava.mauve/DejaGNUTestHarness.java (main):
	explanatory comments added in call to super.

	* testsuite/libjava.mauve/test.exp (test_mauve): Test for an
	exception thrown in the test harness itself added.
	* testsuite/libjava.mauve/test.exp (test_mauve_sim): New routine.

Wed Jan  6 17:27:39 1999  Per Bothner  <bothner@cygnus.com>

	* java/text/DateFormatSymbols.java (zoneStringsDefault):  Make static.

1999-01-06  Tom Tromey  <tromey@cygnus.com>

	* java/io/natFile.cc (get_entry): New function.
	(performList): Use get_entry.
	* include/config.h.in: Rebuilt.
	* acconfig.h (HAVE_READDIR_R): New define.
	* configure: Rebuilt.
	* configure.in: Look for readdir_r.

	* java/util/natGregorianCalendar.cc (computeFields): Fixed comment.

	* java/util/natDate.cc: Added copyright header.

1999-01-05  Tom Tromey  <tromey@cygnus.com>

	* include/config.h.in: Rebuilt.
	* acconfig.h (HAVE_ACCESS, HAVE_STAT, HAVE_REALPATH, HAVE_MKDIR,
	HAVE_REALPATH, HAVE_RMDIR, HAVE_UNLINK): New macros.
	* configure: Rebuilt.
	* configure.in: Check for access, stat, mkdir, rename, rmdir,
	unlink, and realpath.
	* java/io/natFile.cc (access): Conditionalize on HAVE_ACCESS.
	(stat): Conditionalize on HAVE_STAT.
	(attr): Likewise.
	(getCanonicalPath): Conditionalize on HAVE_REALPATH.
	(performMkdir): Conditionalize on HAVE_MKDIR.
	(performRenameTo): Conditionalize on HAVE_RENAME.
	(performDelete): Conditionalize on HAVE_RMDIR and HAVE_UNLINK.

	* include/config.h.in: Rebuilt.
	* acconfig.h (HAVE_GMTIME_R, HAVE_LOCALTIME_R): New defines.
	* configure: Rebuilt.
	* configure.in: Check for gmtime_r and localtime_r.  For cross
	builds, assume they exist.

	* mauve-libjava: Include java.text.DateFormatSymbols again.
	* java/text/DateFormatSymbols.java (setLocalPatternChars): Renamed
	from setAmPmStrings.

	* mauve-libjava: Omit java.text.DateFormatSymbols.

1999-01-04  Tom Tromey  <tromey@cygnus.com>

	* java/io/PushbackReader.java: `off' already includes `numBytes'.

	* java/io/LineNumberReader.java (read): Decrement `count' in
	loop.

	* java/io/BufferedWriter.java (write): Correctly determine when
	incoming data would overrun buffer.  Flush buffer if write causes
	it to become full.

	* java/io/BufferedOutputStream.java (write): Increment `count'
	after copying data into buffer.

	* java/io/FilterOutputStream.java (close): Call flush first.

	* java/io/PipedReader.java (read): If read causes `out' to catch
	up with `in', then set `in' to -1.

	* java/io/LineNumberInputStream.java (read): If no bytes read,
	return -1.  If no bytes requested, return 0.

	* java/lang/StringBuffer.java (insert): If `str' is null, use
	string "null".