summaryrefslogtreecommitdiffstats
path: root/cpukit/ChangeLog
blob: 738126366bc7864e97334e838b3d8e56853908e2 (plain) (blame)
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
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
7181
7182
7183
7184
7185
7186
7187
7188
7189
7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
7242
7243
7244
7245
7246
7247
7248
7249
7250
7251
7252
7253
7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
7271
7272
7273
7274
7275
7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
2005-02-07	Ralf Corsepius <ralf.corsepius@rtems.org>

	* include/rtems/tar.h: New.

2005-02-05	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libfs/Makefile.am: Build libfs/src/imfs/imfs_load_tar.c.

2005-02-04	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libnetworking/libc/res_init.c, libnetworking/netinet/in.h,
	libnetworking/netinet/in_pcb.c, libnetworking/netinet/raw_ip.c:
	Misc. part. updates from FreeBSD.

2005-02-04	Ralf Corsepius <ralf.corsepius@rtems.org>

	* automake/compile.am: Remove depend: (Redundant).

2005-02-04	Ralf Corsepius <ralf.corsepius@rtems.org>

	* rtems/include/rtems/rtems/sem.h, rtems/src/semcreate.c,
	rtems/src/semdelete.c, rtems/src/semflush.c,
	rtems/src/semident.c, rtems/src/semobtain.c,
	rtems/src/semrelease.c: Use rtems_id for semaphores.

2005-02-04	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/include/rtems/libio.h: Use rtems_id for semaphores.
	Use char* for buffer.
	* backward/ftpd.h: New.
	* Makefile.am: Reflect having added backward/ftpd.h.

2005-02-04	Ralf Corsepius <ralf.corsepius@rtems.org>

	PR 756/rtems
	* ftpd/ftpd.c, ftpd/ftpd.h, ftpd/Makefile.am: New (relocated from
	/c/src/libnetworking/ftpd)
	* ftpd/ftd.h: New header guards.
	* ftpd/Makefile.am: Install libftd.a, install ftp.h to rtems/ftp.h.
	* configure.ac: Add ftpd/Makefile.
	* Makefile.am: Add ftpd.

2005-02-03	Ralf Corsepius <ralf.corsepius@rtems.org>

	* librpc/include/rpc/clnt_stat.h, librpc/include/rpc/rpcent.h:
	New (From FreeBSD).
	* librpc/include/rpc/rpc.h: Partial update from FreeBSD.
	* librpc/Makefile.am: Reflect changes above.

2005-02-03	Ralf Corsepius <ralf.corsepius@rtems.org>

	* librpc/include/rpc/types.h: Partial update from FreeBSD. 
	Use stdint.h types instead of sys/types.h.
	* librpc/src/rpc/bindresvport.c: Partial update from FreeBSD.

2005-02-03	Ralf Corsepius <ralf.corsepius@rtems.org>

	PR 755/rtems
	* libnetworking/libc/res_init.c, libnetworking/lib/rtems_bsdnet_ntp.c,
	libnetworking/nfs/bootp_subr.c: Include <rtems/bsdnet/servers.h>.

2005-02-03	Ralf Corsepius <ralf.corsepius@rtems.org>

	PR 755/rtems
	* libnetworking/rtems_glue.c: 
	Rename rtems_bsdnet_nameservers to _rtems_bsdnet_nameservers.
	Rename rtems_bsdnet_ntpservers to _rtems_bsdnet_ntpservers.
	Add new rtems_bsdnet_nameservers, rtems_bsdnet_ntpservers as
	pointers to _rtems_bsdnet_*servers arrays.
	* libnetworking/rtems/rtems_bsdnet_internal.h: Remove
	rtems_bsdnet_nameserver, rtems_bsdnet_nameserver_count.
	* libnetworking/rtems/rtems_bsdnet.h: Remove
	rtems_bsdnet_ntpserver, rtems_bsdnet_ntp_count.
	* libnetworking/rtems/bsdnet/servers.h: New.
	* libnetworking/opt_ipsec.h: New (BSD compatibility).
	* libnetworking/Makefile.am: Reflect changes above.

2005-02-02	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libnetworking/rtems/ftpfs.h, libnetworking/rtems/mkrootfs.h,
	libnetworking/rtems/rtems_bsdnet_internal.h,
	libnetworking/rtems/rtems_bsdnet.h,
	libnetworking/rtems/tftp.h: New header guards.

2005-02-02	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libnetworking/rtems/issetugid.c,
	libnetworking/rtems/mkrootfs.c,
	libnetworking/rtems/rtems_bootp.c,
	libnetworking/rtems/rtems_bsdnet_malloc_starvation.c,
	libnetworking/rtems/rtems_glue.c,
	libnetworking/rtems/rtems_select.c,
	libnetworking/rtems/rtems_showicmpstat.c,
	libnetworking/rtems/rtems_showifstat.c,
	libnetworking/rtems/rtems_showipstat.c,
	libnetworking/rtems/rtems_showmbuf.c,
	libnetworking/rtems/rtems_showroute.c,
	libnetworking/rtems/rtems_showtcpstat.c,
	libnetworking/rtems/rtems_showudpstat.c,
	libnetworking/rtems/rtems_syscall.c,
	libnetworking/rtems/sghostname.c: Include config.h.

2005-02-01	Joel Sherrill <joel@OARcorp.com>

	* libblock/include/rtems/bdbuf.h,
	libblock/include/rtems/ide_part_table.h, libblock/src/blkdev.c,
	libcsupport/include/rtems/termiostypes.h, libcsupport/src/termios.c,
	posix/macros/rtems/posix/cond.inl,
	posix/macros/rtems/posix/mutex.inl : Remove warnings.

2005-02-01	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/prog-cc.m4: Remove refs to gcc-isystem.m4.
	* aclocal/gcc-isystem.m4: Remove (Unused).

2005-01-28	Eric Norum <norume@aps.anl.gov>

	* libnetworking/rtems/rtems_glue.c: Remove dead variable.

2005-01-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* itron/include/itron.h,
	itron/include/itronsys/eventflags.h,
	itron/include/itronsys/fmempool.h,
	itron/include/itronsys/intr.h,
	itron/include/itronsys/mbox.h,
	itron/include/itronsys/msgbuffer.h,
	itron/include/itronsys/network.h,
	itron/include/itronsys/port.h,
	itron/include/itronsys/semaphore.h,
	itron/include/itronsys/status.h,
	itron/include/itronsys/sysmgmt.h,
	itron/include/itronsys/task.h,
	itron/include/itronsys/time.h,
	itron/include/itronsys/types.h,
	itron/include/itronsys/vmempool.h,
	itron/include/rtems/itron/config.h,
	itron/include/rtems/itron/eventflags.h,
	itron/include/rtems/itron/fmempool.h,
	itron/include/rtems/itron/intr.h,
	itron/include/rtems/itron/itronapi.h,
	itron/include/rtems/itron/mbox.h,
	itron/include/rtems/itron/msgbuffer.h,
	itron/include/rtems/itron/network.h,
	itron/include/rtems/itron/object.h,
	itron/include/rtems/itron/port.h,
	itron/include/rtems/itron/semaphore.h,
	itron/include/rtems/itron/sysmgmt.h,
	itron/include/rtems/itron/task.h,
	itron/include/rtems/itron/time.h,
	itron/include/rtems/itron/vmempool.h: New header guards.

2005-01-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libblock/include/rtems/bdbuf.h, libblock/include/rtems/blkdev.h,
	libblock/include/rtems/diskdevs.h,
	libblock/include/rtems/ide_part_table.h,
	libblock/include/rtems/ramdisk.h,
	libfs/src/dosfs/dosfs.h, libfs/src/imfs/imfs.h:
	New header guards.

2005-01-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/include/inttypes.h: New header guard.
	Fix doxygen preamble.

2005-01-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/include/motorola/mc68230.h,
	libcsupport/include/motorola/mc68681.h,
	libcsupport/include/chain.h,
	libcsupport/include/clockdrv.h,
	libcsupport/include/console.h,
	libcsupport/include/iosupp.h,
	libcsupport/include/ringbuf.h,
	libcsupport/include/rtc.h,
	libcsupport/include/spurious.h,
	libcsupport/include/timerdrv.h,
	libcsupport/include/vmeintr.h,
	libcsupport/include/rtems/libio.h,
	libcsupport/include/rtems/assoc.h,
	libcsupport/include/rtems/error.h,
	libcsupport/include/rtems/libcsupport.h,
	libcsupport/include/rtems/libio_.h,
	libcsupport/include/rtems/termiostypes.h,
	libcsupport/include/rtems/cdefs.h,
	libcsupport/include/zilog/z8036.h,
	libcsupport/include/zilog/z8530.h,
	libcsupport/include/zilog/z8536.h: New header guards.

2005-01-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* include/rtems/bspIo.h, include/rtems/concat.h,
	include/rtems/fs.h, include/rtems/pci.h,
	include/rtems/stdint.h, include/rtems/userenv.h:
	New header guards.

2005-01-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* rtems/include/rtems.h, rtems/include/rtems/rtems/asr.h,
	rtems/include/rtems/rtems/attr.h, rtems/include/rtems/rtems/cache.h,
	rtems/include/rtems/rtems/clock.h,
	rtems/include/rtems/rtems/config.h,
	rtems/include/rtems/rtems/dpmem.h,
	rtems/include/rtems/rtems/event.h,
	rtems/include/rtems/rtems/eventmp.h,
	rtems/include/rtems/rtems/eventset.h,
	rtems/include/rtems/rtems/intr.h,
	rtems/include/rtems/rtems/message.h,
	rtems/include/rtems/rtems/modes.h, rtems/include/rtems/rtems/mp.h,
	rtems/include/rtems/rtems/msgmp.h,
	rtems/include/rtems/rtems/options.h,
	rtems/include/rtems/rtems/part.h,
	rtems/include/rtems/rtems/partmp.h,
	rtems/include/rtems/rtems/ratemon.h,
	rtems/include/rtems/rtems/region.h,
	rtems/include/rtems/rtems/regionmp.h,
	rtems/include/rtems/rtems/rtemsapi.h,
	rtems/include/rtems/rtems/sem.h, rtems/include/rtems/rtems/semmp.h,
	rtems/include/rtems/rtems/signal.h,
	rtems/include/rtems/rtems/signalmp.h,
	rtems/include/rtems/rtems/status.h,
	rtems/include/rtems/rtems/support.h,
	rtems/include/rtems/rtems/taskmp.h,
	rtems/include/rtems/rtems/tasks.h,
	rtems/include/rtems/rtems/timer.h,
	rtems/include/rtems/rtems/types.h, sapi/include/rtems/config.h,
	sapi/include/rtems/extension.h, sapi/include/rtems/fatal.h,
	sapi/include/rtems/init.h, sapi/include/rtems/io.h,
	sapi/include/rtems/mptables.h, sapi/include/rtems/sptables.h,
	score/include/rtems/debug.h, score/include/rtems/seterr.h,
	score/include/rtems/system.h, score/include/rtems/score/address.h,
	score/include/rtems/score/apiext.h,
	score/include/rtems/score/apimutex.h,
	score/include/rtems/score/bitfield.h,
	score/include/rtems/score/chain.h,
	score/include/rtems/score/context.h,
	score/include/rtems/score/copyrt.h,
	score/include/rtems/score/coremsg.h,
	score/include/rtems/score/coremutex.h,
	score/include/rtems/score/coresem.h,
	score/include/rtems/score/heap.h,
	score/include/rtems/score/interr.h, score/include/rtems/score/isr.h,
	score/include/rtems/score/mpci.h, score/include/rtems/score/mppkt.h,
	score/include/rtems/score/object.h,
	score/include/rtems/score/objectmp.h,
	score/include/rtems/score/priority.h,
	score/include/rtems/score/stack.h,
	score/include/rtems/score/states.h,
	score/include/rtems/score/sysstate.h,
	score/include/rtems/score/thread.h,
	score/include/rtems/score/threadmp.h,
	score/include/rtems/score/threadq.h,
	score/include/rtems/score/tod.h, score/include/rtems/score/tqdata.h,
	score/include/rtems/score/userext.h,
	score/include/rtems/score/watchdog.h,
	score/include/rtems/score/wkspace.h: New header guard.

2005-01-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* automake/compile.am: Remove RTEMS_CPPFLAGS.

2005-01-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libnetworking/net/if_pppvar.h: Ansify.

2005-01-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* include/rtems/userenv.h: Set up LOGIN_NAME_MAX iff not having been
	defined before.

2005-01-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* sapi/src/debug.c, sapi/src/exinit.c, sapi/src/extension.c,
	sapi/src/extensioncreate.c, sapi/src/extensiondelete.c,
	sapi/src/extensionident.c, sapi/src/fatal.c, sapi/src/io.c,
	sapi/src/itronapi.c, sapi/src/posixapi.c, sapi/src/rtemsapi.c:
	Include config.h.

2005-01-27	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/src/lstat.c, libcsupport/src/readdir_r.c:
	Include config.h.

2005-01-27	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libmisc/untar/untar.h: New prototype to eleminate warnings.
	* libmisc/untar/untar.c: Cosmetics, add symlinks.

2005-01-27	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/include/tar.h: New (SUSv3).
	* Makefile.am: Integrate newlib-specific headers.
	Add libcsupport/include/tar.h.
	* libcsupport/Makefile.am: Remove newlib-specific headers.

2005-01-27	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libmisc/fsmount/fsmount.c: Include config.h.

2005-01-27	Ralf Corsepius <ralf.corsepius@rtems.org>

	* score/src/apiext.c, score/src/chain.c, score/src/coremsg.c,
	score/src/coremsgbroadcast.c, score/src/coremsgclose.c,
	score/src/coremsgflush.c, score/src/coremsgflushsupp.c,
	score/src/coremsgflushwait.c, score/src/coremsginsert.c,
	score/src/coremsgseize.c, score/src/coremsgsubmit.c,
	score/src/coremutex.c, score/src/coremutexflush.c,
	score/src/coremutexseize.c, score/src/coremutexsurrender.c,
	score/src/coresem.c, score/src/coresemflush.c,
	score/src/coresemseize.c, score/src/coresemsurrender.c,
	score/src/coretod.c, score/src/coretodset.c,
	score/src/coretodtickle.c, score/src/coretodtoseconds.c,
	score/src/coretodvalidate.c, score/src/heap.c,
	score/src/heapallocate.c, score/src/heapallocatealigned.c,
	score/src/heapextend.c, score/src/heapfree.c,
	score/src/heapgetfreeinfo.c, score/src/heapgetinfo.c,
	score/src/heapsizeofuserarea.c, score/src/heapwalk.c,
	score/src/interr.c, score/src/isr.c, score/src/iterateoverthreads.c,
	score/src/mpci.c, score/src/object.c, score/src/objectallocate.c,
	score/src/objectallocatebyindex.c, score/src/objectclearname.c,
	score/src/objectcomparenameraw.c,
	score/src/objectcomparenamestring.c, score/src/objectcopynameraw.c,
	score/src/objectcopynamestring.c,
	score/src/objectextendinformation.c, score/src/objectfree.c,
	score/src/objectget.c, score/src/objectgetbyindex.c,
	score/src/objectgetisr.c, score/src/objectgetnext.c,
	score/src/objectgetnoprotection.c, score/src/objectidtoname.c,
	score/src/objectinitializeinformation.c, score/src/objectmp.c,
	score/src/objectnametoid.c, score/src/objectshrinkinformation.c,
	score/src/thread.c, score/src/threadchangepriority.c,
	score/src/threadclearstate.c, score/src/threadclose.c,
	score/src/threadcreateidle.c, score/src/threaddelayended.c,
	score/src/threaddispatch.c, score/src/threadevaluatemode.c,
	score/src/threadget.c, score/src/threadhandler.c,
	score/src/threadidlebody.c, score/src/threadinitialize.c,
	score/src/threadloadenv.c, score/src/threadmp.c,
	score/src/threadq.c, score/src/threadqdequeue.c,
	score/src/threadqdequeuefifo.c, score/src/threadqdequeuepriority.c,
	score/src/threadqenqueue.c, score/src/threadqenqueuefifo.c,
	score/src/threadqenqueuepriority.c, score/src/threadqextract.c,
	score/src/threadqextractfifo.c, score/src/threadqextractpriority.c,
	score/src/threadqextractwithproxy.c, score/src/threadqfirst.c,
	score/src/threadqfirstfifo.c, score/src/threadqfirstpriority.c,
	score/src/threadqflush.c, score/src/threadqtimeout.c,
	score/src/threadready.c, score/src/threadreset.c,
	score/src/threadresettimeslice.c, score/src/threadrestart.c,
	score/src/threadresume.c, score/src/threadrotatequeue.c,
	score/src/threadsetpriority.c, score/src/threadsetstate.c,
	score/src/threadsettransient.c, score/src/threadstackallocate.c,
	score/src/threadstackfree.c, score/src/threadstart.c,
	score/src/threadstartmultitasking.c, score/src/threadsuspend.c,
	score/src/threadtickletimeslice.c, score/src/threadyieldprocessor.c,
	score/src/userext.c, score/src/watchdog.c,
	score/src/watchdogadjust.c, score/src/watchdoginsert.c,
	score/src/watchdogremove.c, score/src/watchdogtickle.c,
	score/src/wkspace.c: Include config.h.

2005-01-24	Ralf Corsepius <ralf.corsepius@rtems.org>

	* include/rtems/stdint.h: Add signed8, signed16, signed32,
	unsigned8, unsigned16, unsigned32.

2005-01-24	Ralf Corsepius <ralf.corsepius@rtems.org>

	* score/include/rtems/score/heap.h: Use uintptr_t for _H_uptr_t.
	* score/inline/rtems/score/address.inl: Remove 
	RTEMS_CPU_HAS_16_BIT_ADDRESSES.
	Use uintptr_t for void* to address casts.

2005-01-24	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/include/stdint.h: Use __PTRDIFF_TYPE__ for intptr_t.

2005-01-23	Ralf Corsepius <ralf.corsepius@rtems.org>

	* sapi/src/fatal.c, score/src/interr.c: 
	Remove volatile on return type.

2005-01-20  Sergei Organov  <osv@topconrd.ru>

	PR 536/rtems
	Heap manager re-implementation to consume less memory and still satisfy
	alignment requirements.
	
	* score/src/heap.c, score/src/heapallocate.c, score/src/heapextend.c,
	score/src/heapfree.c, score/src/heapgetinfo.c,
	score/src/heapgetfreeinfo.c, core/src/heapsizeofuserarea.c,
	score/src/heapwalk.c, core/macros/rtems/score/heap.inl,
	score/inline/rtems/score/heap.inl,
	score/include/rtems/score/heap.h: Reimplemented.
	* score/src/heapallocatealigned.c: new file
	* score/Makefile.am: HEAP_C_FILES: add score/src/heapallocatealigned.c

2005-01-20	Joel Sherrill <joel@OARcorp.com>

	PR 745/rtems
	* rtems/src/ratemoncreate.c, rtems/src/timercreate.c: Make sure
	internal timer structures are initialized so object control reuse is
	safe.

2005-01-20	Joel Sherrill <joel@OARcorp.com>

	PR 740/rtems
	* score/src/heapgetfreeinfo.c: Return size of largest not of last block.

2005-01-18	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libfs/src/dosfs/fat.c (fat_init_volume_info): Reflect
	fs_info->sec_buf being a uint8_t.
	* libfs/src/dosfs/msdos_create.c, libfs/src/dosfs/msdos_misc.c:
	Eliminate warnings.

2005-01-18	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libfs/src/dosfs/msdos_misc.c
	(msdos_get_dotdot_dir_info_cluster_num_and_offset):
        Remove cur_node (Unused).

2005-01-18	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/src/termios.c: Remove unnecessary type casts.

2005-01-18	Ralf Corsepius <ralf.corsepius@rtems.org>

	* sapi/include/rtems/io.h : size_t device_name_length.

2005-01-18	Ralf Corsepius <ralf.corsepius@rtems.org>

	* sapi/include/rtems/fatal.h, score/include/rtems/score/interr.h:
	Remove volatile on return type.

2005-01-18	Ralf Corsepius <ralf.corsepius@rtems.org>

	* itron/inline/rtems/itron/task.inl (_ITRON_Task_Priority_to_Core, 
	_ITRON_tasks_Core_to_Priority): Correct return types.

2005-01-18	Ralf Corsepius <ralf.corsepius@rtems.org>

	* rtems/src/attr.c, rtems/src/clockget.c, rtems/src/clockset.c,
	rtems/src/clocktick.c, rtems/src/dpmem.c, rtems/src/dpmemcreate.c,
	rtems/src/dpmemdelete.c, rtems/src/dpmemexternal2internal.c,
	rtems/src/dpmemident.c, rtems/src/dpmeminternal2external.c,
	rtems/src/event.c, rtems/src/eventmp.c, rtems/src/eventreceive.c,
	rtems/src/eventseize.c, rtems/src/eventsend.c,
	rtems/src/eventsurrender.c, rtems/src/eventtimeout.c,
	rtems/src/intr.c, rtems/src/intrbody.c, rtems/src/intrcatch.c,
	rtems/src/mp.c, rtems/src/msg.c, rtems/src/msgmp.c,
	rtems/src/msgqallocate.c, rtems/src/msgqbroadcast.c,
	rtems/src/msgqcreate.c, rtems/src/msgqdelete.c,
	rtems/src/msgqflush.c, rtems/src/msgqgetnumberpending.c,
	rtems/src/msgqident.c, rtems/src/msgqreceive.c,
	rtems/src/msgqsend.c, rtems/src/msgqsubmit.c,
	rtems/src/msgqtranslatereturncode.c, rtems/src/msgqurgent.c,
	rtems/src/part.c, rtems/src/partcreate.c, rtems/src/partdelete.c,
	rtems/src/partgetbuffer.c, rtems/src/partident.c,
	rtems/src/partmp.c, rtems/src/partreturnbuffer.c,
	rtems/src/ratemon.c, rtems/src/ratemoncancel.c,
	rtems/src/ratemoncreate.c, rtems/src/ratemondelete.c,
	rtems/src/ratemongetstatus.c, rtems/src/ratemonident.c,
	rtems/src/ratemonperiod.c, rtems/src/ratemontimeout.c,
	rtems/src/region.c, rtems/src/regioncreate.c,
	rtems/src/regiondelete.c, rtems/src/regionextend.c,
	rtems/src/regiongetfreeinfo.c, rtems/src/regiongetinfo.c,
	rtems/src/regiongetsegment.c, rtems/src/regiongetsegmentsize.c,
	rtems/src/regionident.c, rtems/src/regionmp.c,
	rtems/src/regionreturnsegment.c, rtems/src/rtclock.c,
	rtems/src/rtemsidtoname.c, rtems/src/rtemstimer.c, rtems/src/sem.c,
	rtems/src/semcreate.c, rtems/src/semdelete.c, rtems/src/semflush.c,
	rtems/src/semident.c, rtems/src/semmp.c, rtems/src/semobtain.c,
	rtems/src/semrelease.c, rtems/src/semtranslatereturncode.c,
	rtems/src/signal.c, rtems/src/signalcatch.c, rtems/src/signalmp.c,
	rtems/src/signalsend.c, rtems/src/taskcreate.c,
	rtems/src/taskdelete.c, rtems/src/taskgetnote.c,
	rtems/src/taskident.c, rtems/src/taskinitusers.c,
	rtems/src/taskissuspended.c, rtems/src/taskmode.c,
	rtems/src/taskmp.c, rtems/src/taskrestart.c, rtems/src/taskresume.c,
	rtems/src/tasks.c, rtems/src/tasksetnote.c,
	rtems/src/tasksetpriority.c, rtems/src/taskstart.c,
	rtems/src/tasksuspend.c, rtems/src/taskvariableadd.c,
	rtems/src/taskvariabledelete.c, rtems/src/taskvariableget.c,
	rtems/src/taskwakeafter.c, rtems/src/taskwakewhen.c,
	rtems/src/timercancel.c, rtems/src/timercreate.c,
	rtems/src/timerdelete.c, rtems/src/timerfireafter.c,
	rtems/src/timerfirewhen.c, rtems/src/timergetinfo.c,
	rtems/src/timerident.c, rtems/src/timerreset.c,
	rtems/src/timerserver.c, rtems/src/timerserverfireafter.c,
	rtems/src/timerserverfirewhen.c: Include config.h.

2005-01-18	Ralf Corsepius <ralf.corsepius@rtems.org>

	* score/inline/rtems/score/userext.inl: Include <string.h>.

2005-01-14	Ralf Corsepius <ralf.corsepius@rtems.org>

	PR 742/rtems
	* score/include/rtems/system.h: Remove stringify().

2005-01-13	Joel Sherrill <joel@oarcorp.com>
		Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/src/gxx_wrapper.c: Reflect GCC-4.0's gthr-rtems.h.

2005-01-09	Joel Sherrill <joel@oarcorp.com>

	* librpc/include/rpc/clnt.h, librpc/src/rpc/authunix_prot.c,
	librpc/src/rpc/clnt_tcp.c, librpc/src/rpc/pmap_prot2.c,
	librpc/src/rpc/pmap_rmt.c, librpc/src/rpc/rtems_portmapper.c,
	librpc/src/rpc/svc_simple.c: Fix warnings.

2005-01-07	Ralf Corsepius <ralf.corsepius@rtems.org>

	* librpc/include/rpc/auth_des.h, librpc/include/rpc/xdr.h,
	librpc/src/rpc/auth_des.c, librpc/src/rpc/auth_unix.c,
	librpc/src/rpc/rpc_prot.c, librpc/src/xdr/xdr.c:
	Misc. ansi-fications, misc. updates from FreeBSD.

2005-01-07	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/libc/res_debug.c: Added const to eliminate warnings.

2005-01-07	Ralf Corsepius <ralf.corsepius@rtems.org>

	* librpc/include/rpc/xdr.h: Remove questionable comments.
	* librpc/include/rpc/auth.h: Remove __P, ansi-fy.
	* librpc/src/rpc/auth_none.c: Reflect changes above.
	Partial update from FreeBSD.

2005-01-07	Ralf Corsepius <ralf.corsepius@rtems.org>

	* posix/include/rtems/posix/cond.h,
	posix/include/rtems/posix/mutex.h: Cosmetics.

2005-01-07	Ralf Corsepius <ralf.corsepius@rtems.org>

	* librpc/include/rpc/svc.h, librpc/include/rpc/xdr.h:
	Remove __P(xx).

2005-01-07	Ralf Corsepius <ralf.corsepius@rtems.org>

	* httpd/Makefile.am, itron/Makefile.am, libblock/Makefile.am,
	libcsupport/Makefile.am, libfs/Makefile.am, libmisc/Makefile.am,
	libnetworking/Makefile.am, librpc/Makefile.am, posix/Makefile.am,
	rtems/Makefile.am, sapi/Makefile.am, score/Makefile.am:
	Eliminate CFLAGS_OPTIMIZE_V.

2005-01-05	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/rtems-flags.m4: Remove (Unused).

2005-01-05	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/prog-ccas.m4: Remove $(GCCSPECS).

2005-01-05	Ralf Corsepius <ralf.corsepius@rtems.org>

	* rtems/src/eventsurrender.c: Remove bogus type casts.
	* sapi/Makefile.am: Eliminate *_FILES.

2005-01-05	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/env-rtemscpu.m4: Remove CFLAGS_OPTIMIZE_V.
	Remove CPU_CFLAGS.
	* aclocal/prog-cc.m4: Don't invoke _RTEMS_FLAGS to set up
	RTEMS_CFLAGS.
	* automake/compile.am: AM_CFLAGS = RTEMS_CFLAGS.
	Remove CPPFLAGS, CFLAGS, CPU_CFLAGS, CFLAGS_OPTIMIZE.
	Cleanup comments.

2005-01-05	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/env-rtemscpu.m4: Remove CFLAGS_DEBUG_V.
	* aclocal/prog-cc.m4: Remove RTEMS_USE_GCC.
	* automake/compile.am: Cleanup comments. Remove ASFLAGS.

2005-01-01	Ralf Corsepius <ralf.corsepius@rtems.org>

	* automake/compile.am, httpd/Makefile.am, itron/Makefile.am,
	libblock/Makefile.am, libcsupport/Makefile.am, libfs/Makefile.am,
	libmisc/Makefile.am, libnetworking/Makefile.am, librpc/Makefile.am,
	posix/Makefile.am, rtems/Makefile.am, sapi/Makefile.am,
	score/Makefile.am, wrapup/Makefile.am:
	Remove build-variant support.

2004-12-30	Ralf Corsepius <ralf.corsepius@rtems.org>

	* httpd/Makefile.am: Remove -DOS="RTEMS".
	* httpd/rtems_webserver.h: Add doxygen preamble.
	Add C++ guards.

2004-12-29	Ralf Corsepius <ralf.corsepius@rtems.org>

	* score/include/rtems/score/chain.h:
	Use uint32_t instead of unsigned32.
	* score/src/chain.c: Remove superfluous type cast.

2004-12-10	Ralf Corsepius <ralf.corsepius@rtems.org>

	* posix/include/aio.h, posix/include/devctl.h,
	posix/include/intr.h, posix/include/mqueue.h,
	posix/include/sched.h, posix/include/semaphore.h,
	posix/src/ptimer.c, posix/src/ptimer1.c:
	Include <unistd.h> instead of <sys/features.h> to pick up
	_POSIX_* defines (Mandated by POSIX).

2004-12-09	Ralf Corsepius <ralf.corsepius@rtems.org>

	* score/include/rtems/system.h: Don't define NULL, include 
	<stddef.h>.

2004-12-03	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libnetworking/net/if_ethersubr.c,
	libnetworking/net/radix.h,
	libnetworking/netinet/if_ether.h,
	libnetworking/netinet/igmp_var.h,
	libnetworking/netinet/in_var.h,
	libnetworking/netinet/tcp_timer.h,
	libnetworking/netinet/udp_usrreq.c,
	libnetworking/rtems/rtems_glue.c:
	Misc. updates from FreeBSD and bugfixes tripped by GCC-4.0.0.

2004-12-02	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libnetworking/kern/kern_sysctl.c,
	libnetworking/sys/sysctl.h: Add SYSCTL_CHILDREN_SET.
	(Update from FreeBSD for GCC-4.0.0).

2004-12-02	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/kern/kern_sysctl.c, libnetworking/netinet/ip_mroute.c,
	libnetworking/sys/socketvar.h: Remove warnings.

2004-12-02	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libnetworking/net/radix.c, libnetworking/net/radix.h,
	libnetworking/net/route.h, libnetworking/netinet/if_ether.h,
	libnetworking/netinet/in_var.h, libnetworking/netinet/tcp_timer.h,
	libnetworking/netinet/udp_usrreq.c, libnetworking/netinet/udp_var.h,
	libnetworking/sys/callout.h, libnetworking/sys/socketvar.h,
	libnetworking/sys/sysctl.h: Cosmetics from FreeBSD.

2004-12-02	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libmisc/capture/capture-cli.h, libmisc/capture/capture.h,
	libmisc/monitor/monitor.h, libmisc/rtmonuse/rtmonuse.h,
	libmisc/shell/shell.h: Partial doxygenification.
	* libmisc/capture/capture.h: Use INT32_C for constants.

2004-12-02	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/include/chain.h,
	libcsupport/include/clockdrv.h,
	libcsupport/include/console.h,
	libcsupport/include/iosupp.h,
	libcsupport/include/ringbuf.h,
	libcsupport/include/rtc.h,
	libcsupport/include/spurious.h,
	libcsupport/include/timerdrv.h,
	libcsupport/include/vmeintr.h,
	libcsupport/include/motorola/mc68230.h,
	libcsupport/include/motorola/mc68681.h,
	libcsupport/include/rtems/assoc.h,
	libcsupport/include/rtems/cdefs.h,
	libcsupport/include/rtems/error.h,
	libcsupport/include/rtems/libcsupport.h,
	libcsupport/include/rtems/libio.h,
	libcsupport/include/rtems/libio_.h,
	libcsupport/include/rtems/termiostypes.h,
	libcsupport/include/zilog/z8036.h,
	libcsupport/include/zilog/z8530.h,
	libcsupport/include/zilog/z8536.h: Add doxygen preamble.

2004-11-29	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/src/mallocfreespace.c, rtems/Makefile.am,
	rtems/include/rtems/rtems/region.h, score/Makefile.am,
	score/include/rtems/score/heap.h, score/src/heapgetinfo.c: Add
	capability to return information about just the free blocks in a
	region or heap.  Also changed the semantics of free space available
	to be the largest block of memory that can be allocated.
	* rtems/src/regiongetfreeinfo.c, score/src/heapgetfreeinfo.c: New files.
	: score/include/rtems/score/object.h,
	score/src/objectinitializeinformation.c: Remove warning.

2004-11-22	Joel Sherrill <joel@OARcorp.com>

	* score/include/rtems/score/object.h, score/src/objectclearname.c,
	score/src/objectcopynamestring.c: Fixing warning led to making
	changes to multiple prototypes for object support routines.

2004-11-22	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/src/ttyname_r.c: Remove warning for using _fstat.

2004-11-22	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/enable-itron.m4, aclocal/check-itron.m4:
	Allow building itron for unix.

2004-11-22	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libnetworking/Makefile.am: Don't install bpfilter.h (Private
	header).

2004-11-22	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libblock/include/rtems/bdbuf.h,
	libblock/include/rtems/blkdev.h,
	libblock/include/rtems/diskdevs.h,
	libblock/include/rtems/ide_part_table.h,
	libblock/include/rtems/ramdisk.h:
	Add doxygen preamble.

2004-11-21	Ralf Corsepius <ralf.corsepius@rtems.org>

	* sapi/include/confdefs.h, sapi/include/rtems/config.h,
	sapi/include/rtems/extension.h, sapi/include/rtems/fatal.h,
	sapi/include/rtems/init.h, sapi/include/rtems/io.h,
	sapi/include/rtems/sptables.h, sapi/inline/rtems/extension.inl,
	sapi/macros/rtems/extension.inl: Add doxygen preamble.

2004-11-21	Ralf Corsepius <ralf.corsepius@rtems.org>

	* score/include/rtems/debug.h, score/include/rtems/seterr.h,
	score/include/rtems/system.h, score/include/rtems/score/address.h,
	score/include/rtems/score/apiext.h,
	score/include/rtems/score/apimutex.h,
	score/include/rtems/score/bitfield.h,
	score/include/rtems/score/chain.h,
	score/include/rtems/score/context.h,
	score/include/rtems/score/copyrt.h,
	score/include/rtems/score/coremsg.h,
	score/include/rtems/score/coremutex.h,
	score/include/rtems/score/coresem.h,
	score/include/rtems/score/heap.h,
	score/include/rtems/score/interr.h, score/include/rtems/score/isr.h,
	score/include/rtems/score/mpci.h, score/include/rtems/score/mppkt.h,
	score/include/rtems/score/object.h,
	score/include/rtems/score/objectmp.h,
	score/include/rtems/score/priority.h,
	score/include/rtems/score/stack.h,
	score/include/rtems/score/states.h,
	score/include/rtems/score/sysstate.h,
	score/include/rtems/score/thread.h,
	score/include/rtems/score/threadmp.h,
	score/include/rtems/score/threadq.h,
	score/include/rtems/score/tod.h, score/include/rtems/score/tqdata.h,
	score/include/rtems/score/userext.h,
	score/include/rtems/score/watchdog.h,
	score/include/rtems/score/wkspace.h,
	score/inline/rtems/score/address.inl,
	score/inline/rtems/score/chain.inl,
	score/inline/rtems/score/coremsg.inl,
	score/inline/rtems/score/coremutex.inl,
	score/inline/rtems/score/coresem.inl,
	score/inline/rtems/score/heap.inl, score/inline/rtems/score/isr.inl,
	score/inline/rtems/score/mppkt.inl,
	score/inline/rtems/score/object.inl,
	score/inline/rtems/score/objectmp.inl,
	score/inline/rtems/score/priority.inl,
	score/inline/rtems/score/stack.inl,
	score/inline/rtems/score/states.inl,
	score/inline/rtems/score/sysstate.inl,
	score/inline/rtems/score/thread.inl,
	score/inline/rtems/score/threadmp.inl,
	score/inline/rtems/score/tod.inl,
	score/inline/rtems/score/tqdata.inl,
	score/inline/rtems/score/userext.inl,
	score/inline/rtems/score/watchdog.inl,
	score/inline/rtems/score/wkspace.inl,
	score/macros/rtems/score/object.inl: Adjust doxygen @file.

2004-11-21	Ralf Corsepius <ralf.corsepius@rtems.org>

	* posix/include/aio.h, posix/include/devctl.h, posix/include/intr.h,
	posix/include/mqueue.h, posix/include/sched.h,
	posix/include/semaphore.h, posix/include/rtems/posix/cancel.h,
	posix/include/rtems/posix/cond.h,
	posix/include/rtems/posix/condmp.h,
	posix/include/rtems/posix/config.h,
	posix/include/rtems/posix/intr.h, posix/include/rtems/posix/key.h,
	posix/include/rtems/posix/mqueue.h,
	posix/include/rtems/posix/mqueuemp.h,
	posix/include/rtems/posix/mutex.h,
	posix/include/rtems/posix/mutexmp.h,
	posix/include/rtems/posix/posixapi.h,
	posix/include/rtems/posix/priority.h,
	posix/include/rtems/posix/psignal.h,
	posix/include/rtems/posix/pthread.h,
	posix/include/rtems/posix/pthreadmp.h,
	posix/include/rtems/posix/ptimer.h,
	posix/include/rtems/posix/semaphore.h,
	posix/include/rtems/posix/semaphoremp.h,
	posix/include/rtems/posix/threadsup.h,
	posix/include/rtems/posix/time.h, posix/include/rtems/posix/timer.h,
	posix/inline/rtems/posix/cond.inl,
	posix/inline/rtems/posix/intr.inl, posix/inline/rtems/posix/key.inl,
	posix/inline/rtems/posix/mqueue.inl,
	posix/inline/rtems/posix/mutex.inl,
	posix/inline/rtems/posix/priority.inl,
	posix/inline/rtems/posix/pthread.inl,
	posix/inline/rtems/posix/semaphore.inl,
	posix/inline/rtems/posix/timer.inl,
	posix/macros/rtems/posix/cond.inl,
	posix/macros/rtems/posix/intr.inl, posix/macros/rtems/posix/key.inl,
	posix/macros/rtems/posix/mqueue.inl,
	posix/macros/rtems/posix/mutex.inl,
	posix/macros/rtems/posix/priority.inl,
	posix/macros/rtems/posix/pthread.inl,
	posix/macros/rtems/posix/semaphore.inl,
	posix/macros/rtems/posix/timer.inl: Add doxygen preamble.

2004-11-21	Ralf Corsepius <ralf.corsepius@rtems.org>

	* itron/include/itron.h, itron/include/itronsys/eventflags.h,
	itron/include/itronsys/fmempool.h, itron/include/itronsys/intr.h,
	itron/include/itronsys/mbox.h, itron/include/itronsys/msgbuffer.h,
	itron/include/itronsys/network.h, itron/include/itronsys/port.h,
	itron/include/itronsys/semaphore.h, itron/include/itronsys/status.h,
	itron/include/itronsys/sysmgmt.h, itron/include/itronsys/task.h,
	itron/include/itronsys/time.h, itron/include/itronsys/types.h,
	itron/include/itronsys/vmempool.h,
	itron/include/rtems/itron/config.h,
	itron/include/rtems/itron/eventflags.h,
	itron/include/rtems/itron/fmempool.h,
	itron/include/rtems/itron/intr.h,
	itron/include/rtems/itron/itronapi.h,
	itron/include/rtems/itron/mbox.h,
	itron/include/rtems/itron/msgbuffer.h,
	itron/include/rtems/itron/network.h,
	itron/include/rtems/itron/object.h,
	itron/include/rtems/itron/port.h,
	itron/include/rtems/itron/semaphore.h,
	itron/include/rtems/itron/sysmgmt.h,
	itron/include/rtems/itron/task.h, itron/include/rtems/itron/time.h,
	itron/include/rtems/itron/vmempool.h,
	itron/inline/rtems/itron/eventflags.inl,
	itron/inline/rtems/itron/fmempool.inl,
	itron/inline/rtems/itron/intr.inl,
	itron/inline/rtems/itron/mbox.inl,
	itron/inline/rtems/itron/msgbuffer.inl,
	itron/inline/rtems/itron/network.inl,
	itron/inline/rtems/itron/port.inl,
	itron/inline/rtems/itron/semaphore.inl,
	itron/inline/rtems/itron/sysmgmt.inl,
	itron/inline/rtems/itron/task.inl,
	itron/inline/rtems/itron/time.inl,
	itron/inline/rtems/itron/vmempool.inl,
	itron/macros/rtems/itron/eventflags.inl,
	itron/macros/rtems/itron/fmempool.inl,
	itron/macros/rtems/itron/intr.inl,
	itron/macros/rtems/itron/mbox.inl,
	itron/macros/rtems/itron/msgbuffer.inl,
	itron/macros/rtems/itron/network.inl,
	itron/macros/rtems/itron/port.inl,
	itron/macros/rtems/itron/semaphore.inl,
	itron/macros/rtems/itron/sysmgmt.inl,
	itron/macros/rtems/itron/task.inl,
	itron/macros/rtems/itron/time.inl,
	itron/macros/rtems/itron/vmempool.inl: Add doxygen preamble.

2004-11-21	Ralf Corsepius <ralf.corsepius@rtems.org>

	* librpc/include/rpc/types.h: Include <rtems/stdint.h>.
	* librpc/src/rpc/clnt_raw.c, librpc/src/rpc/rpcdname.c,
	librpc/src/rpc/rtems_portmapper.c, librpc/src/rpc/svc.c,
	librpc/src/rpc/svc_simple.c: Misc. cast-related fixes.
	Convert to ANSI.

2004-11-21	Ralf Corsepius <ralf.corsepius@rtems.org>

	* librpc/include/rpc/rpc.h (struct _rtems_rpc_task_variables):
	Use pointers to types instead of void* to avoid casts.
	* librpc/src/rpc/clnt_perror.c, librpc/src/rpc/clnt_raw.c,
	librpc/src/rpc/clnt_simple.c, librpc/src/rpc/rpcdname.c,
	librpc/src/rpc/svc.c, librpc/src/rpc/svc_auth.c,
	librpc/src/rpc/svc_simple.c:
	Eliminate lvalue casts gcc-3.4 warns about.

2004-11-20	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libfs/src/dosfs/dosfs.h: Add doxygen preamble.
	* libfs/src/dosfs/msdos.h: Remove RC_OK.
	* libfs/src/dosfs/msdos_format.c: Remove unnecessary casts.

2004-11-20	Ralf Corsepius <ralf.corsepius@rtems.org>

	PR 720/filesystem:
	* libfs/src/dosfs/dosfs.h, libfs/src/dosfs/fat.c,
	libfs/src/dosfs/fat.h, libfs/src/dosfs/msdos_format.c:
	Adaptations to msdos_format.
	(From Thomas Doerfler <Thomas.Doerfler@imd-systems.de>).

	* libfs/src/dosfs/dosfs.h, libfs/src/dosfs/fat.c,
	libfs/src/dosfs/fat.h, libfs/src/dosfs/msdos_format.c:
	Adaptations to RTEMS-4.7.

2004-11-20	Ralf Corsepius <ralf.corsepius@rtems.org>

	PR 720/filesystem:
	* libfs/src/dosfs/msdos_format.c: New 
	(From Thomas Doerfler <Thomas.Doerfler@imd-systems.de>).
	* libfs/Makefile.am: Reflect changes above:

2004-11-20	Ralf Corsepius <ralf.corsepiu@rtems.org>

	* libcsupport/include/stdint.h: Move mal-placed comment.

2004-11-10	Joel Sherrill <joel@oarcorp.com>

	* include/rtems/pci.h: BSPs use the name BSP_pci_configuration not pci.
	Also need to address that this largely duplicates
	libbsp/powerpc/pci/pci.h but that file is not used when both are
	included due to the same double inclusion protection.

2004-11-09	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/include/stdint.h: Fixed name in @file.

2004-11-08	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/include/sys/_stdint.h: Remove.
	* libcsupport/include/sys/_inttypes.h: Remove.
	* libcsupport/include/stdint.h: Replace with former sys/_stdint.h.
	Add INT<N>_C, various additions.
	* libcsupport/include/inttypes.h: Replace with former
	sys/_inttypes.h.
	* libcsupport/Makefile.am: Reflect changes above.

2004-11-07	Ralf Corsepius <ralf.corsepius@rtems.org>

	* backward/asm.h: Add doxygen preamble.
	* backward/chain.h: Add doxygen preamble.
	* backward/clockdrv.h: Add doxygen preamble.
	* backward/confdefs.h: Add doxygen preamble.
	* backward/console.h: Add doxygen preamble.
	* backward/dosfs.h: Add doxygen preamble.
	* backward/imfs.h: Add doxygen preamble.
	* backward/iosupp.h: Add doxygen preamble.
	* backward/itron.h: Add doxygen preamble.
	* backward/ringbuf.h: Add doxygen preamble.
	* backward/rtc.h: Add doxygen preamble.
	* backward/spurious.h: Add doxygen preamble.
	* backward/timerdrv.h: Add doxygen preamble.
	* backward/vmeintr.h: Add doxygen preamble.
	* backward/motorola/mc68230.h: Add doxygen preamble.
	* backward/motorola/mc68681.h: Add doxygen preamble.
	* backward/zilog/z8030.h: Add doxygen preamble.
	* backward/zilog/z8036.h: Add doxygen preamble.
	* backward/zilog/z8536.h: Add doxygen preamble.

2004-11-07	Ralf Corsepius <ralf.corsepius@rtems.org>

	* libcsupport/include/sys/_stdint.h: Special-case int64_t (GCC has
	__LONG_LONG_MAX__, while POSIX mandates LLONG_MAX. This break 
	__EXP(LONG_LONG_MAX)).

2004-11-05	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/machine/endian.h: Protect BYTE_ORDER from double
	definition.

2004-11-05	Ralf Corsepius <ralf_corsepiu@rtems.org>

	* configure.ac: Remove RTEMS_USES_INTTYPES_H. Require inttypes.h.
	* include/rtems/stdint.h: Remove "wild guesses", require inttypes.h.
	* libcsupport/include/inttypes.h: Cleanup.
	* libcsupport/include/stdint.h: Cleanup.

2004-11-04	Ralf Corsepius <ralf_corsepius@rtems.org>

	* include/sys/_stdint.h: Various changes.
	Add *leastN_t types. Add INTN_{MIN|MAX} macros.
	Add doxygen preamble.
	* include/sys/_inttypes.h: Add doxygen preamble.
	Reflect changes above.
	* libcsupport/include/stdint.h: Add doxygen preamble.
	* libcsupport/include/inttypes.h: Add doxygen preamble.
	* configure.ac: Add doxygen preamble to cpuopts.h.

2004-11-02	Joel Sherrill <joel@OARcorp.com>

	* posix/src/mqueueunlink.c, posix/src/semunlink.c,
	score/inline/rtems/score/object.inl,
	score/macros/rtems/score/object.inl: _Objects_Is_local_id() should be
	avoided in single CPU configurations but always available in the
	Objects Handlers API.

2004-11-02	Ralf Corsepius <ralf_corsepius@rtems.org>

	* rtems/include/rtems.h,
	rtems/inline/rtems/rtems/asr.inl,
	rtems/inline/rtems/rtems/attr.inl,
	rtems/inline/rtems/rtems/dpmem.inl,
	rtems/inline/rtems/rtems/event.inl,
	rtems/inline/rtems/rtems/eventset.inl,
	rtems/inline/rtems/rtems/message.inl,
	rtems/inline/rtems/rtems/modes.inl,
	rtems/inline/rtems/rtems/options.inl,
	rtems/inline/rtems/rtems/part.inl,
	rtems/inline/rtems/rtems/ratemon.inl,
	rtems/inline/rtems/rtems/region.inl,
	rtems/inline/rtems/rtems/sem.inl,
	rtems/inline/rtems/rtems/status.inl,
	rtems/inline/rtems/rtems/support.inl,
	rtems/inline/rtems/rtems/tasks.inl,
	rtems/inline/rtems/rtems/timer.inl,
	rtems/macros/rtems/rtems/asr.inl,
	rtems/macros/rtems/rtems/attr.inl,
	rtems/macros/rtems/rtems/dpmem.inl,
	rtems/macros/rtems/rtems/event.inl,
	rtems/macros/rtems/rtems/eventset.inl,
	rtems/macros/rtems/rtems/message.inl,
	rtems/macros/rtems/rtems/modes.inl,
	rtems/macros/rtems/rtems/options.inl,
	rtems/macros/rtems/rtems/part.inl,
	rtems/macros/rtems/rtems/ratemon.inl,
	rtems/macros/rtems/rtems/region.inl,
	rtems/macros/rtems/rtems/sem.inl,
	rtems/macros/rtems/rtems/status.inl,
	rtems/macros/rtems/rtems/support.inl,
	rtems/macros/rtems/rtems/tasks.inl,
	rtems/macros/rtems/rtems/timer.inl: Add doxygen preamble.

2004-11-02	Ralf Corsepius <ralf_corsepius@rtems.org>

	* rtems/include/rtems.h,
	rtems/include/rtems/rtems/asr.h,
	rtems/include/rtems/rtems/attr.h,
	rtems/include/rtems/rtems/cache.h,
	rtems/include/rtems/rtems/clock.h,
	rtems/include/rtems/rtems/config.h,
	rtems/include/rtems/rtems/dpmem.h,
	rtems/include/rtems/rtems/event.h,
	rtems/include/rtems/rtems/eventmp.h,
	rtems/include/rtems/rtems/eventset.h,
	rtems/include/rtems/rtems/intr.h,
	rtems/include/rtems/rtems/message.h,
	rtems/include/rtems/rtems/modes.h,
	rtems/include/rtems/rtems/mp.h,
	rtems/include/rtems/rtems/msgmp.h,
	rtems/include/rtems/rtems/options.h,
	rtems/include/rtems/rtems/part.h,
	rtems/include/rtems/rtems/partmp.h,
	rtems/include/rtems/rtems/ratemon.h,
	rtems/include/rtems/rtems/region.h,
	rtems/include/rtems/rtems/regionmp.h,
	rtems/include/rtems/rtems/rtemsapi.h,
	rtems/include/rtems/rtems/sem.h,
	rtems/include/rtems/rtems/semmp.h,
	rtems/include/rtems/rtems/signal.h,
	rtems/include/rtems/rtems/signalmp.h,
	rtems/include/rtems/rtems/status.h,
	rtems/include/rtems/rtems/support.h,
	rtems/include/rtems/rtems/taskmp.h,
	rtems/include/rtems/rtems/tasks.h,
	rtems/include/rtems/rtems/timer.h,
	rtems/include/rtems/rtems/types.h: Add doxygen preamble.

2004-11-01	Joel Sherrill <joel@OARcorp.com>

	* libmisc/monitor/mon-manager.c, libmisc/monitor/mon-object.c: Remove
	references to _Object_Is_local in single processor configurations.

2004-11-01	Joel Sherrill <joel@OARcorp.com>

	* score/src/coresemsurrender.c, score/src/objectnametoid.c: All
	_Objects_Is_Local... should only be called if multiprocessing is
	enabled.

2004-11-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* rtems/include/rtems/rtems/tasks.h, rtems/src/taskstart.c:
	rtems_task_start(..., rtems_task_argument  argument );

2004-11-01	Joel Sherrill <joel@oarcorp.com>

	* score/cpu/no_cpu/rtems/score/cpu.h, score/include/rtems/debug.h,
	score/include/rtems/seterr.h, score/include/rtems/system.h,
	score/include/rtems/score/address.h,
	score/include/rtems/score/apiext.h,
	score/include/rtems/score/apimutex.h,
	score/include/rtems/score/bitfield.h,
	score/include/rtems/score/chain.h,
	score/include/rtems/score/context.h,
	score/include/rtems/score/copyrt.h,
	score/include/rtems/score/coremsg.h,
	score/include/rtems/score/coremutex.h,
	score/include/rtems/score/coresem.h,
	score/include/rtems/score/heap.h, score/include/rtems/score/interr.h,
	score/include/rtems/score/isr.h, score/include/rtems/score/mpci.h,
	score/include/rtems/score/mppkt.h,
	score/include/rtems/score/objectmp.h,
	score/include/rtems/score/priority.h,
	score/include/rtems/score/stack.h,
	score/include/rtems/score/states.h,
	score/include/rtems/score/sysstate.h,
	score/include/rtems/score/thread.h,
	score/include/rtems/score/threadmp.h,
	score/include/rtems/score/threadq.h, score/include/rtems/score/tod.h,
	score/include/rtems/score/tqdata.h,
	score/include/rtems/score/userext.h,
	score/include/rtems/score/watchdog.h,
	score/include/rtems/score/wkspace.h,
	score/inline/rtems/score/address.inl,
	score/inline/rtems/score/chain.inl,
	score/inline/rtems/score/coremsg.inl,
	score/inline/rtems/score/coremutex.inl,
	score/inline/rtems/score/coresem.inl,
	score/inline/rtems/score/heap.inl, score/inline/rtems/score/isr.inl,
	score/inline/rtems/score/mppkt.inl,
	score/inline/rtems/score/objectmp.inl,
	score/inline/rtems/score/priority.inl,
	score/inline/rtems/score/stack.inl,
	score/inline/rtems/score/states.inl,
	score/inline/rtems/score/sysstate.inl,
	score/inline/rtems/score/thread.inl,
	score/inline/rtems/score/threadmp.inl,
	score/inline/rtems/score/tod.inl,
	score/inline/rtems/score/tqdata.inl,
	score/inline/rtems/score/userext.inl,
	score/inline/rtems/score/watchdog.inl,
	score/inline/rtems/score/wkspace.inl: Add Doxygen comments -- working
	modifications which are not complete and may have broken code.
	Committing so work and testing can proceed.
	* score/Doxyfile, score/mainpage.h: New files.

2004-11-01	Joel Sherrill <joel@oarcorp.com>

	* score/include/rtems/score/object.h, 
	score/inline/rtems/score/object.inl,
	score/macros/rtems/score/object.inl: Add first cut of optional
	16 bit object Id as space reduction for small systems (TinyRTEMS).

2004-11-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* monitor/monitor.h: Let rtems_monitor_config_dump return int.
	* monitor/mon-config.c: Ditto. Use PRI*N macros.
	* monitor/mon-itask.c, monitor/mon-prmisc.c: Use PRI*N macros.

2004-11-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libmisc/monitor/monitor.h: Let rtems_monitor_config_dump return int.
	* libmisc/monitor/mon-config.c: Ditto. Use PRI*N macros.
	* libmisc/monitor/mon-itask.c, libmisc/monitor/mon-prmisc.c: Use 
	PRI*N macros.

2004-11-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Remove -ansi (Cygwin breaks with it).
	* libcsupport/include/stdint.h: Use sys/_stdint.h to setup fixed
	size types.
	* libcsupport/include/sys/_inttypes.h: Add SCN*N macros.

2004-11-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/src/utsname.c: Revert yesterdays patch.

2004-10-31	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/src/utsname.c: Fix typo.

2004-10-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	* score/src/coremsg.c: Eliminate unsigned32.
	* score/include/rtems/system.h: Set __RTEMS_REVISION__ to 99.
	* librpc/include/rpc/xdr.h: Use elipsis in xdrproc_t prototype.

2004-10-28	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/include/inttypes.h: #include <sys/_inttypes.h>
	* libcsupport/src/utsname.c: Don't include sptables.h.
	Include <inttypes.h>. Use PRId32 instead of "%d".

2004-10-28	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/include/rtems/_inttypes.h: Remove.
	* libcsupport/include/rtems/_stdint.h: Remove.
	* libcsupport/include/sys/_inttypes.h: New.
	* libcsupport/include/sys/_stdint.h: New.
	* libcsupport/Makefile.am: Reflect changes above.
	* configure.ac: Reflect changes above.

2004-10-28	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Remove RTEMS_CPUOPT([RTEMS_MULTILIBS],..).
	(Unused).

2004-10-27	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libmisc/monitor/mon-prmisc.c, libmisc/monitor/monitor.h: Let rtems_monitor_dump
	return int's not uint32_t (They are printf return values).

2004-10-27	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Add score/cpu/no_cpu/Makefile.

2004-10-27	Ralf Corsepius <ralf_corsepius@rtems.org>

	* Makefile.am, configure.ac: Add httpd.
	* httpd/asp.c, httpd/balloc.c, httpd/cgi.c, httpd/default.c,
	httpd/ej.h, httpd/ejIntrn.h, httpd/ejlex.c, httpd/ejparse.c,
	httpd/emfdb.c, httpd/emfdb.h, httpd/form.c, httpd/handler.c,
	httpd/h.c, httpd/license.txt, httpd/Makefile.am, httpd/md5c.c,
	httpd/md5.h, httpd/mime.c, httpd/misc.c, httpd/NOTES, httpd/ringq.c,
	httpd/rom.c, httpd/rtems_webserver.h, httpd/security.c,
	httpd/sock.c, httpd/socket.c, httpd/sockGen.c, httpd/sym.c,
	httpd/uemf.c, httpd/uemf.h, httpd/um.c, httpd/um.h, httpd/umui.c,
	httpd/url.c, httpd/value.c, httpd/wbase64.c, httpd/webcomp.c,
	httpd/webmain.c, httpd/webpage.c, httpd/webrom.c, httpd/webs.c,
	httpd/websda.c, httpd/websda.h, httpd/webs.h, httpd/websSSL.c,
	httpd/websSSL.h, httpd/websuemf.c, httpd/wsIntrn.h: New (Moved from
	c/src/libnetworking/rtems_webserver).
	* httpd/Makefile.am: Install libhttpd.a.

2004-10-26	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/include/rtems/_inttypes.h: Undefine __PRIN defines.
	* libcsupport/include/rtems/_stdint.h: Apply GNUC-limits to GCC >= 3.3, only.
	Add _rtems_*_t_defined defines. Add extern "C".

2004-10-26	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/include/rtems/_stdint.h: New.
	* libcsupport/include/rtems/_inttypes.h: New.
	* libcsupport/Makefile.am: Reflect changes above.

2004-10-26	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libfs/src/dosfs/msdos_conv.c:
	Replace BSD fixed-size types with POSIX fixed-size types.
	Replace SECONDSTO1980 with DAYSTO1980.
	Make macros 16bit clean.

2004-10-26	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/include/sys/ioccom.h: Cosmetical update from FreeBSD.
	* libcsupport/include/sys/ioctl.h: Cosmetical update from FreeBSD.
	Remove sys/compat_ioctl.h section (Meaningless with RTEMS).

2004-10-25	Eric Norum <norume@aps.anl.gov>

	* libnetworking/net/if_ethersubr.c: Working version of ether_sprintf().
	* cpukit/librpc/include/rpc/xdr.h: No kernel/user distinction.

2004-10-22	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/Makefile.am: Reflect changes below.
	* libnetworking/net/slcompress.h: New (from FreeBSD).
	* libnetworking/net/slcompress.c: New (from FreeBSD).

2004-10-22	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/include/stdint.h: Add intptr_t uintptr_t.
	* libnetworking/kern/kern_sysctl.c: Remove uintptr_t.
	Cosmetics.
	* libnetworking/opt_compat.h: New.

2004-10-22	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/opt_atalk.h, libnetworking/opt_bdg.h,
	libnetworking/opt_inet.h, libnetworking/opt_inet6.h,
	libnetworking/opt_ipx.h, libnetworking/opt_mac.h,
	libnetworking/opt_netgraph.h: New (Stubs).
	* libnetworking/net/if_loop.c: Cosmetical update from FreeBSD.
	* libnetworking/net/if_ethersubr.c: Update from FreeBSD.
	* libnetworking/net/if.h: Update from FreeBSD.

2004-10-21	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/net/ethernet.h: Remove BYTE_PACK.

2004-10-21	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/net/if.h; Cosmetical updates from FreeBSD.
	Remove if_poll* (Not implemented in RTEMS, abandoned by FreeBSD).
	* libnetworking/net/if_ethersubr.c: Cosmetical updates from FreeBSD.
	Add ether_sprintf.
	* libnetworking/net/ethernet.h: Update from FreeBSD.

2004-10-21	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libmisc/monitor/mon-prmisc.c, libmisc/monitor/monitor.h:
	rtems_monitor_dump_char(char ch).

2004-10-20	Ralf Corsepius <ralf_corsepius@rtems.org>

	* automake/compile.am: Remove RTEMS_CFLAGS_*_V.

2004-10-15	Joel Sherrill <joel@OARcorp.com>

	PR 692/rtems
	* rtems/src/regiongetsegment.c, rtems/src/regionreturnsegment.c: The
	Region Manager did not follow the proper protocol when blocking and
	unblocking tasks waiting on buffers. This was a bug introduced with
	the transition to an Allocation Mutex.

2004-09-29	Joel Sherrill <joel@OARcorp.com>

	* configure.ac, libmisc/cpuuse/README, libmisc/stackchk/README,
	librpc/src/xdr/xdr_float.c, score/cpu/Makefile.am,
	score/include/rtems/score/mppkt.h: i960 obsoleted and all references
	removed.

2004-09-29	Joel Sherrill <joel@OARcorp.com>

	* score/cpu/i960/.cvsignore, score/cpu/i960/ChangeLog,
	score/cpu/i960/Makefile.am, score/cpu/i960/asm.h,
	score/cpu/i960/cpu.c, score/cpu/i960/cpu_asm.S,
	score/cpu/i960/rtems/score/cpu.h, score/cpu/i960/rtems/score/i960.h,
	score/cpu/i960/rtems/score/types.h: Removed.

2004-09-27	Joel Sherrill <joel@OARcorp.com>

	PR 294/rtems
	* posix/src/pthread.c: POSIX thread exit handler now confirms that it
	created the executing thread before implicitly exitting it.

2004-09-27	Joel Sherrill <joel@OARcorp.com>

	* libmisc/stackchk/check.c: Spacing.

2004-09-24	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Require automake > 1.9.

2004-09-24	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Add score/cpu/avr/Makefile.am.
	* score/cpu/Makefile.am: Add avr.
	* libnetworking/Makefile.am: Don't include subdirs.am.

2004-09-23	Ralf Corsepius <ralf_corsepius@rtems.org>

	* librpc/src/xdr/xdr_float.c: Add __AVR__.

2004-09-21	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/gcc-weak.m4: New (Extracted from cpukit/configure.ac).
	* configure.ac: Add RTEMS_CHECK_GCC_WEAK.

2004-09-17	Joel Sherrill <joel@OARcorp.com>

	PR 677/misc
	* libmisc/dumpbuf/dumpbuf.h, libmisc/fsmount/fsmount.h,
	libmisc/rtmonuse/rtmonuse.h, libmisc/serdbg/serdbg.h,
	libmisc/serdbg/serdbgcnf.h, libmisc/serdbg/termios_printk.h,
	libmisc/serdbg/termios_printk_cnf.h, libmisc/untar/untar.h: Add
	extern C wrappers.

2004-09-17	Till Strauman <strauman@slac.stanford.edu>

	PR 676/networking
	* libnetworking/nfs/bootp_subr.c: /etc/resolv.conf contains NTP instead
	of DNS servers.

2004-08-18  Ralf Corsepius <ralf_corsepius@rtems.org>

	PR 673/make_build
	* aclocal/rtems-top.m4 (RTEMS_TOP): Add further quotes.

2004-07-28  Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-4.6.99.1.

2004-07-25	Till Straumann <strauman@slac.stanford.edu>

	PR 620/networking
	* libnetworking/lib/rtems_bsdnet_ntp.c,
	libnetworking/rtems/rtems_bsdnet.h: Enhance NTP API.

2004-07-25	Thomas Rauscher <trauscher@loytec.com>

	PR 609/rtems
	* score/src/threaddispatch.c: Close race condition between
	_Thread_Dispatch and _Thread_Tickle_timeslice.

2004-07-25	Victor Vengerov <Victor.Vengerov@oktetlabs.ru>

	PR 654/rtems
	* score/src/threadinitialize.c: Initialize the per thread watchdog
	timer. When the thread control block is reused, we cannot depend on
	it being zeroed.

2004-07-24	Mick Davis <mickd@microsol.iinet.net.au>

	PR 641/rtems
	* rtems/src/eventsurrender.c: The problem here is that events may be
	lost when sent to a task which enters rtems_event_receive() with options
	set to wait with a timeout and to return on receipt of any event. The
	events are sent from an interrupt source such as a timer service
	routine. If more than one set of events is sent to the task before it
	returns, the first event set may be overwritten.

2004-07-24	Joel Sherrill <joel@OARcorp.com>

	PR 661/rtems
	* score/src/objectmp.c: Fix invalid dereference.

2004-07-24	Joel Sherrill <joel@OARcorp.com>

	PR 660/rtems
	* score/cpu/m68k/rtems/score/m68k.h, score/cpu/mips/cpu_asm.S,
	score/src/threadinitialize.c, score/src/threadstackallocate.c: Check
	for overflow when allocating stack.

2004-07-24	Joel Sherrill <joel@OARcorp.com>

	PR 659/rtems
	* score/src/heapsizeofuserarea.c: Check that address specified is in
	the heap.

2004-07-24	Joel Sherrill <joel@OARcorp.com>

	PR 652/rtems
	* rtems/src/signalsend.c: Return RTEMS_INVALID_NUMBER when sending an
	empty signal set.

2004-07-14	Joel Sherrill <joel@OARcorp.com>

	PR 650/rtems
	* score/src/coremsg.c: Check for mathemathical overflow when calculating
	amount of memory to allocate for message buffers.

2004-07-14	Joel Sherrill <joel@OARcorp.com>

	PR 651/core
	* rtems/src/taskident.c: Add NULL check for id.

2004-06-29	Joel Sherrill <joel@OARcorp.com>

	PR 631/rtems
	* rtems/src/msgqcreate.c: Return unsatisfied from message_queue_create
	when unable to allocate message buffer memory.

2004-05-21  Joel Sherrill <joel@OARcorp.com>

	PR 628/rtems
	* posix/src/killinfo.c, posix/src/pthreadkill.c, posix/src/ptimer1.c,
	posix/src/sigaction.c, posix/src/sigaddset.c, posix/src/sigsuspend.c:
	Signal set of 0 is supposed to return EINVAL.  In addition
	timer_create needed to return an error if the clock was not
	CLOCK_REALTIME.

2004-05-21  Joel Sherrill <joel@OARcorp.com>

	PR 629/rtems
	* cpukit/src/mqueuecreatesupp.c: Return EINVAL is mq_maxmsg is
	<= 0, not <.

2004-05-21	Till Strauman <strauman@slac.stanford.edu>

	PR 626/networking
	* libnetworking/rtems/rtems_showifstat.c: Use unsigned char to avoid
	printing leading FFFFFF for byte values > 127.

2004-05-06	Joel Sherrill <joel@OARcorp.com>

	PR 618/rtems
	* rtems/include/rtems/rtems/status.h, rtems/src/clockget.c,
	rtems/src/clockset.c, rtems/src/dpmemcreate.c,
	rtems/src/dpmemexternal2internal.c,
	rtems/src/dpmeminternal2external.c, rtems/src/eventmp.c,
	rtems/src/eventreceive.c, rtems/src/eventsend.c,
	rtems/src/msgqbroadcast.c, rtems/src/msgqcreate.c,
	rtems/src/msgqflush.c, rtems/src/msgqgetnumberpending.c,
	rtems/src/msgqreceive.c, rtems/src/msgqsubmit.c,
	rtems/src/partcreate.c, rtems/src/partdelete.c,
	rtems/src/partgetbuffer.c, rtems/src/ratemoncancel.c,
	rtems/src/ratemoncreate.c, rtems/src/ratemondelete.c,
	rtems/src/ratemongetstatus.c, rtems/src/ratemonident.c,
	rtems/src/ratemonperiod.c, rtems/src/regioncreate.c,
	rtems/src/regiondelete.c, rtems/src/regionextend.c,
	rtems/src/regiongetsegment.c, rtems/src/regiongetsegmentsize.c,
	rtems/src/regionreturnsegment.c, rtems/src/semcreate.c,
	rtems/src/semdelete.c, rtems/src/semflush.c, rtems/src/semident.c,
	rtems/src/taskcreate.c, rtems/src/taskgetnote.c,
	rtems/src/taskmode.c, rtems/src/taskrestart.c,
	rtems/src/taskresume.c, rtems/src/tasksetnote.c,
	rtems/src/tasksuspend.c, rtems/src/taskvariableadd.c,
	rtems/src/taskvariabledelete.c, rtems/src/taskvariableget.c,
	rtems/src/taskwakewhen.c, rtems/src/timercreate.c,
	rtems/src/timerdelete.c, rtems/src/timerfireafter.c,
	rtems/src/timerfirewhen.c, rtems/src/timerserverfireafter.c,
	rtems/src/timerserverfirewhen.c, score/include/rtems/score/object.h,
	score/src/coretodvalidate.c, score/src/objectnametoid.c: Add NULL
	checks.

2004-04-30	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/kern/kern_sysctl.c: sysctl_register_all cannot be
	static with RTEMS.

2004-04-30	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/netinet/in.c: Partial update from FreeBSD.

2004-04-26	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/kern/kern_sysctl.c: Partial updates from FreeBSD.

2004-04-26	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/netinet/igmp_var.h: Cosmetic updates from FreeBSD.
	* libnetworking/sys/sysctl.h: Update from FreeBSD.
	* libnetworking/sys/socketvar.h: Update from FreeBSD.

2004-04-24	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/sys/protosw.h: More partial updates from FreeBSD.

2004-04-24	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/net/route.c: Reflect changes to radix.h.

2004-04-22	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/net/radix.h, libnetworking/net/radix.c: Partial
	update from FreeBSD.

2004-04-22	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/sys/socket.h: Further update from FreeBSD
	(Add sa_family_t).

2004-04-22	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/sys/protosw.h: Partial update from FreeBSD.
	* libnetworking/sys/socket.h: Partial update from FreeBSD.
	* libnetworking/rtems/rtems_syscall.c: Reflect changes to socket.h.

2004-04-22	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/kern/uipc_socket.c: Partial update from FreeBSD
	(Remove adv-clause from copyright notice).
	* libnetworking/netinet/igmp_var.h: Partial update from FreeBSD.

2004-04-20	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/net/bpf.h, libnetworking/net/if.h,
	libnetworking/net/if_dl.h, libnetworking/net/if_ppp.h,
	libnetworking/net/netisr.h, libnetworking/net/pppcompress.c,
	libnetworking/net/radix.c, libnetworking/net/radix.h,
	libnetworking/net/raw_cb.h, libnetworking/net/route.h,
	libnetworking/netinet/icmp_var.h, libnetworking/netinet/if_ether.h,
	libnetworking/netinet/igmp_var.h, libnetworking/netinet/in.h,
	libnetworking/netinet/in_pcb.h, libnetworking/netinet/in_systm.h,
	libnetworking/netinet/in_var.h, libnetworking/netinet/ip_fw.h,
	libnetworking/netinet/ip_icmp.h, libnetworking/netinet/ip_mroute.h,
	libnetworking/netinet/ip_var.h, libnetworking/netinet/tcp_debug.h,
	libnetworking/netinet/tcp_seq.h, libnetworking/netinet/tcp_timer.h,
	libnetworking/netinet/tcp_var.h, libnetworking/netinet/udp_var.h,
	libnetworking/nfs/nfs.h, libnetworking/rtems/rtems_bsdnet.h,
	libnetworking/rtems/rtems_bsdnet_internal.h,
	libnetworking/sys/buf.h, libnetworking/sys/callout.h,
	libnetworking/sys/conf.h, libnetworking/sys/domain.h,
	libnetworking/sys/malloc.h, libnetworking/sys/mbuf.h,
	libnetworking/sys/mount.h, libnetworking/sys/protosw.h,
	libnetworking/sys/queue.h, libnetworking/sys/rtprio.h,
	libnetworking/sys/select.h, libnetworking/sys/signalvar.h,
	libnetworking/sys/socket.h, libnetworking/sys/socketvar.h,
	libnetworking/sys/sysctl.h, libnetworking/sys/syslog.h,
	libnetworking/sys/ucred.h, libnetworking/sys/uio.h,
	libnetworking/vm/vm.h, libnetworking/vm/vm_extern.h,
	libnetworking/vm/vm_param.h: Use -D_KERNEL instead of -DKERNEL for
	greater FreeBSD compliance.

2004-04-20	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/Makefile.am: Add -D_KERNEL to CPPFLAGS.

2004-04-20	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/net/bpf.h: Partial update from FreeBSD.

2004-04-19	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/sys/sysctl.h: Partial update from FreeBSD.
	* libnetworking/kern/kern_sysctl.c: Partial update from FreeBSD.

2004-04-17	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libfs/src/imfs/imfs_debug.c, libfs/src/imfs/memfile.c:
	Use fprintf(stdout,...) instead of printf.

2004-04-17	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libblock/src/ide_part_table.c: Use fprintf(stdout,...) instead of
	printf.

2004-04-17	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libmisc/capture/capture-cli.c, libmisc/cpuuse/cpuuse.c,
	libmisc/dumpbuf/dumpbuf.c, libmisc/fsmount/fsmount.c,
	libmisc/monitor/mon-command.c, libmisc/monitor/mon-config.c,
	libmisc/monitor/mon-dname.c, libmisc/monitor/mon-driver.c,
	libmisc/monitor/mon-extension.c, libmisc/monitor/mon-itask.c,
	libmisc/monitor/mon-monitor.c, libmisc/monitor/mon-mpci.c,
	libmisc/monitor/mon-object.c, libmisc/monitor/mon-prmisc.c,
	libmisc/monitor/mon-queue.c, libmisc/monitor/mon-symbols.c,
	libmisc/monitor/mon-task.c, libmisc/rtmonuse/rtmonuse.c,
	libmisc/shell/cmds.c, libmisc/shell/shell.c, libmisc/shell/shell.h,
	libmisc/stackchk/check.c, libmisc/untar/untar.c: Use
	fprintf(stdout,...) instead of printf.

2004-04-14	Ralf Corsepius <ralf_corsepius@rtems.org>

	* sapi/include/rtems/sptables.h: Remove _RTEMS_version.

2004-04-14	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/Makefile.am: Install include_sys_HEADERS for NEWLIB
	only. Merge sys/cdefs.h into general include_sys_HEADERS.

2004-04-13	Ralf Corsepius <ralf_corsepius@rtems.org>

	* rtems/include/rtems/rtems/types.h: Include <rtems/stdint.h>
	instead of <stdint.h>.
	Conditionally typedef rtems*signed64 types.
	* score/include/rtems/system.h: Include <rtems/stdint.h> instead of
	<stdint.h>.

2004-04-13	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Rework stdint.h/inttypes.h support.
	Add RTEMS_USES_STDINT_H. Add RTEMS_USES_INTTYPES_H.
	Remove NEED_STDINT_H. Remove NEED_INTTYPES_H.
	Remove termios-flag detection.
	* libcsupport/Makefile.am: Install include/stdint.h and
	include/inttypes.h for NEWLIB only.
	* libcsupport/include/stdint.h: Rework; Now newlib specific.
	* libcsupport/src/termios.c: Make newlib specific.
	* include/rtems/stdint.h: Rework; Now wrapper to <stdint.h>.

2004-04-12	Ralf Corsepius <ralf_corsepius@rtems.org>

	* acinclude.m4 (RTEMS_CPUOPT): Use AC_DEFINE_UNQUOTED.
	* backward/motorola/mc68681.h, backward/motorola/mc68230.h,
	backward/zilog/z8536.h, backward/zilog/z8036.h,
	backward/zilog/z8030.h: New.
	* Makefile.am: Reflect having added new files above.

2004-04-09	Ralf Corsepius <ralf_corsepius@rtems.org>

	* wrapup/Makefile.am: Add libblock for !UNIX only.

2004-04-09	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libblock/Makefile.am: Build libblock for !UNIX only.
	* libcsupport/Makefile.am: Build $(TERMIOS_C_FILES) for !UNIX only.

2004-04-09	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libblock/Makefile.am: Remove LIBC_DEFINES (Unsupported).
	* libfs/Makefile.am: Remove LIBC_DEFINES (Unsupported).

2004-04-08	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/Makefile.am: Install sys/ioccom.h for NEWLIB only.

2004-04-08	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/Makefile.am: Remove $(LIBC_DEFINES) (Unsupported).
	Install motorola-headers to $(includedir)/rtems/motorola.
	Install zilog-headers to $(includedir)/rtems/zilog.

2004-04-06	Ralf Corsepius <ralf_corsepius@rtems.org>

	* score/cpu/Makefile.am: Add unix to DIST_SUBDIRS.

2004-04-06	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/rtems-cpu-subdirs.m4: Remove (Unused).
	* configure.ac: Remove RTEMS_CPU_SUBDIRS([score/cpu]).
	Add RTEMS_CHECK_SYSV_UNIX.
	Add score/cpu/*/Makefile.
	* score/cpu/Makefile.am: Add DIST_SUBDIRS.

2004-04-05	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Add AC_CHECK_SIZEOF([CPU_CONTEXT]..).
	Add SIZEOF_CPU_CONTEXT to cpuopts.h.
	Add RTEMS_PROG_CCAS.
	* acinclude.m4: Use unquoted "here" document to propagate $3 to
	cpuopts.tmp.

2004-04-02	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/Makefile.am: AM_CPPFLAGS += -I$(srcdir).
	* libnetworking/rtems/rtems_bsdnet_internal.h: Remove USHRT_MAX.

2004-04-02	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/Makefile.am: Fix typo.

2004-04-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/poll.h: Replace with sys/poll.h wrapper.
	* libnetworking/sys/poll.h: New (Original FreeBSD file).
	* libnetworking/Makefile.am: Don't install opt_ipfw.h,
	opt_mrouting.h, opt_tcpdebug.h.	Add sys/poll.h.

2004-04-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libmisc/serdbg/serdbgcnf.h: Include <rtems/serdbg.h> instead of
        <serdbg.h>
	* libmisc/serdbg/termios_printk_cnf.h: Include <rtems/termios_printk.h>
        instead of <termios_printk.h>.

2004-04-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libmisc/Makefile.am: Install serdbg.h, serdbgcnf.h,
	termios_printk.h, termios_printk_cnf.h to $(includedir)/rtems.
	* libmisc/serdbg/serdbg.c: Include <rtems/serdbg.h> instead of
	<serdbg.h>.
	* libmisc/serdbg/serdbgio.c: Include <rtems/serdbg.h> instead of
	<serdbg.h>.
	* libmisc/serdbg/termios_printk.c: Include <rtems/termios_printk.h>
	instead of <termios_printk.h>.

2004-04-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libmisc/dummy/dummy.c: Include <rtems/confdefs.h> instead of <confdefs.h>.

2004-04-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* backward/confdefs.h: New.
	* Makefile.am: Add  backward/confdefs.h.
	Add conditional DEPRECATED.
	* configure.ac: Add --enable-deprecated.
	Add conditional DEPRECATED.

2004-04-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* sapi/Makefile.am: Install confdefs.h to $(includedir)/rtems.

2004-04-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* Makefile.am: Add backward/*.h headers.
	* itron/Makefile.am: Install itron.h to $(includedir)/rtems.
	* libcsupport/Makefile.am: Install RTEMS specific headers to
	$(includedir)/rtems.
	* libfs/Makefile.am: Install imfs.h and dosfs.h to
	$(includedir)/rtems.

2004-04-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libblock/include/rtems/bdbuf.h: Include <rtems/chain.h> instead of <chain.h>.
	* libblock/include/rtems/ide_part_table.h: Include <rtems/chain.h> instead of <chain.h>.
	* libcsupport/src/malloc.c: Include <rtems/chain.h> instead of <chain.h>.
	* libcsupport/src/mount.c: Include <rtems/chain.h> instead of <chain.h>.
	* libcsupport/src/unmount.c: Include <rtems/chain.h> instead of <chain.h>.
	* libfs/src/imfs/imfs.h: Include <rtems/chain.h> instead of <chain.h>.
	* libfs/src/imfs/imfs_directory.c: Include <rtems/chain.h> instead of <chain.h>.
	* libfs/src/imfs/imfs_load_tar.c: Include <rtems/chain.h> instead of <chain.h>.
	* sapi/include/confdefs.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
	* sapi/include/confdefs.h: Include <rtems/console.h> instead of <console.h>.
	* libfs/src/imfs/imfs_load_tar.c: Include <rtems/imfs.h> instead of <imfs.h>.
	* libmisc/shell/cmds.c: Include <rtems/imfs.h> instead of <imfs.h>.
	* libmisc/fsmount/fsmount.c: Include <rtems/imfs.h> instead of <imfs.h>.
	* sapi/include/confdefs.h: Include <rtems/imfs.h> instead of <imfs.h>.
	* itron/src/can_wup.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/chg_pri.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/cre_mbf.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/cre_mbx.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/cre_sem.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/cre_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/del_mbf.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/del_mbx.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/del_sem.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/del_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/dis_dsp.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/ena_dsp.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/eventflags.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/exd_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/ext_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/fmempool.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/frsm_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/get_tid.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/itronintr.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/itronsem.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/itrontime.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/mbox.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/mboxtranslatereturncode.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/msgbuffer.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/msgbuffertranslatereturncode.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/network.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/port.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/prcv_mbf.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/prcv_mbx.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/preq_sem.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/psnd_mbf.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/rcv_mbf.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/rcv_mbx.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/ref_mbf.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/ref_mbx.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/ref_sem.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/ref_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/rel_wai.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/rot_rdq.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/rsm_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/sig_sem.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/slp_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/snd_mbf.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/snd_mbx.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/sta_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/sus_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/sysmgmt.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/task.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/ter_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/trcv_mbf.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/trcv_mbx.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/tslp_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/tsnd_mbf.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/twai_sem.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/vmempool.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/wai_sem.c: Include <rtems/itron.h> instead of <itron.h>.
	* itron/src/wup_tsk.c: Include <rtems/itron.h> instead of <itron.h>.
	* sapi/include/rtems/config.h: Include <rtems/itron.h> instead of <itron.h>.
	* sapi/include/confdefs.h: Include <rtems/itron.h> instead of <itron.h>.
	* sapi/src/itronapi.c: Include <rtems/itron.h> instead of <itron.h>.
	* sapi/include/confdefs.h: Include <rtems/rtc.h> instead of <rtc.h>.
	* sapi/include/confdefs.h: Include <rtems/timerdrv.h> instead of <timerdrv.h>.

2004-04-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* backward/asm.h, backward/chain.h, backward/clockdrv.h,
	backward/console.h, backward/dosfs.h, backward/imfs.h,
	backward/iosupp.h, backward/itron.h, backward/ringbuf.h,
	backward/rtc.h, backward/spurious.h, backward/timerdrv.h,
	backward/vmeintr.h: New.

2004-03-30	Ralf Corsepius <ralf_corsepius@rtems.org>

	* rtems/include/rtems/rtems/region.h:
	Include stddef.h for size_t.
	(rtems_region_get_segment_size):  Use size_t instead of uint32_t for "size" (3rd arg).
	* rtems/src/regiongetsegmentsize.c: Reflect changes above.
	* libcsupport/src/malloc.c: Reflect changes above.

2004-03-30	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/rtems-top.m4: Don't AC_SUBST(PROJECT_ROOT).
	Add project_libdir, project_include and libdir.
	* aclocal/env-rtemscpu.m4: Remove all references to RTEMS_BSP.
	Remove project_libdir, project_include and libdir.
	Unconditionally use CPU_CFLAGS, CFLAGS_OPTIMIZE_V, CFLAGS_DEBUG_V.

2004-03-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libnetworking/lib/ftpfs.c, libnetworking/lib/rtems_bsdnet_ntp.c,
	libnetworking/lib/tftpDriver.c, libnetworking/machine/endian.h,
	libnetworking/net/if_ppp.c, libnetworking/rtems/rtems_bsdnet.h,
	libnetworking/rtems/rtems_bsdnet_internal.h,
	libnetworking/rtems/rtems_glue.c,
	libnetworking/rtems/rtems_syscall.c: Convert to using c99 fixed size
	types.

2004-03-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	* score/include/rtems/debug.h, score/include/rtems/score/bitfield.h,
	score/include/rtems/score/chain.h,
	score/include/rtems/score/coremsg.h,
	score/include/rtems/score/coremutex.h,
	score/include/rtems/score/coresem.h,
	score/include/rtems/score/heap.h,
	score/include/rtems/score/interr.h, score/include/rtems/score/isr.h,
	score/include/rtems/score/mpci.h, score/include/rtems/score/mppkt.h,
	score/include/rtems/score/object.h,
	score/include/rtems/score/objectmp.h,
	score/include/rtems/score/priority.h,
	score/include/rtems/score/stack.h,
	score/include/rtems/score/states.h,
	score/include/rtems/score/thread.h,
	score/include/rtems/score/threadmp.h,
	score/include/rtems/score/threadq.h,
	score/include/rtems/score/tod.h, score/include/rtems/score/tqdata.h,
	score/include/rtems/score/userext.h,
	score/include/rtems/score/watchdog.h,
	score/include/rtems/score/wkspace.h,
	score/inline/rtems/score/address.inl,
	score/inline/rtems/score/coremsg.inl,
	score/inline/rtems/score/coresem.inl,
	score/inline/rtems/score/heap.inl, score/inline/rtems/score/isr.inl,
	score/inline/rtems/score/object.inl,
	score/inline/rtems/score/priority.inl,
	score/inline/rtems/score/stack.inl,
	score/inline/rtems/score/thread.inl,
	score/inline/rtems/score/tqdata.inl,
	score/inline/rtems/score/userext.inl,
	score/inline/rtems/score/wkspace.inl,
	score/macros/rtems/score/address.inl,
	score/macros/rtems/score/heap.inl,
	score/macros/rtems/score/object.inl,
	score/macros/rtems/score/priority.inl,
	score/macros/rtems/score/userext.inl: Convert to using c99 fixed
	size types.

2004-03-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	* sapi/include/confdefs.h, sapi/include/rtems/config.h,
	sapi/include/rtems/extension.h, sapi/include/rtems/fatal.h,
	sapi/include/rtems/init.h, sapi/include/rtems/io.h,
	sapi/src/exinit.c, sapi/src/extension.c, sapi/src/fatal.c,
	sapi/src/io.c: Convert to using c99 fixed size types.

2004-03-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	* rtems/include/rtems.h,
	rtems/include/rtems/rtems/asr.h,
	rtems/include/rtems/rtems/attr.h,
	rtems/include/rtems/rtems/clock.h,
	rtems/include/rtems/rtems/config.h,
	rtems/include/rtems/rtems/dpmem.h,
	rtems/include/rtems/rtems/eventset.h,
	rtems/include/rtems/rtems/message.h,
	rtems/include/rtems/rtems/modes.h,
	rtems/include/rtems/rtems/msgmp.h,
	rtems/include/rtems/rtems/options.h,
	rtems/include/rtems/rtems/part.h,
	rtems/include/rtems/rtems/ratemon.h,
	rtems/include/rtems/rtems/region.h,
	rtems/include/rtems/rtems/regionmp.h,
	rtems/include/rtems/rtems/sem.h,
	rtems/include/rtems/rtems/support.h,
	rtems/include/rtems/rtems/taskmp.h,
	rtems/include/rtems/rtems/tasks.h,
	rtems/include/rtems/rtems/timer.h,
	rtems/inline/rtems/rtems/part.inl,
	rtems/inline/rtems/rtems/region.inl,
	rtems/macros/rtems/rtems/part.inl,
	rtems/src/attr.c,
	rtems/src/dpmem.c,
	rtems/src/dpmemcreate.c,
	rtems/src/dpmemexternal2internal.c,
	rtems/src/dpmeminternal2external.c,
	rtems/src/eventseize.c,
	rtems/src/msg.c,
	rtems/src/msgmp.c,
	rtems/src/msgqallocate.c,
	rtems/src/msgqbroadcast.c,
	rtems/src/msgqcreate.c,
	rtems/src/msgqflush.c,
	rtems/src/msgqgetnumberpending.c,
	rtems/src/msgqident.c,
	rtems/src/msgqreceive.c,
	rtems/src/msgqsend.c,
	rtems/src/msgqsubmit.c,
	rtems/src/msgqtranslatereturncode.c,
	rtems/src/msgqurgent.c,
	rtems/src/part.c,
	rtems/src/partcreate.c,
	rtems/src/partident.c,
	rtems/src/partmp.c,
	rtems/src/ratemon.c,
	rtems/src/region.c,
	rtems/src/regioncreate.c,
	rtems/src/regionextend.c,
	rtems/src/regiongetsegment.c,
	rtems/src/regiongetsegmentsize.c,
	rtems/src/regionmp.c,
	rtems/src/regionreturnsegment.c,
	rtems/src/rtemstimer.c,
	rtems/src/sem.c,
	rtems/src/semcreate.c,
	rtems/src/semident.c,
	rtems/src/semmp.c,
	rtems/src/semobtain.c,
	rtems/src/semtranslatereturncode.c,
	rtems/src/taskcreate.c,
	rtems/src/taskgetnote.c,
	rtems/src/taskident.c,
	rtems/src/taskinitusers.c,
	rtems/src/taskmp.c,
	rtems/src/taskrestart.c,
	rtems/src/tasks.c,
	rtems/src/tasksetnote.c,
	rtems/src/taskstart.c,
	rtems/src/timerserver.c: Convert to using c99 fixed size types.

2004-04-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	* score/src/Unlimited.txt, score/src/chain.c, score/src/coremsg.c,
	score/src/coremsgbroadcast.c, score/src/coremsgclose.c,
	score/src/coremsgflush.c, score/src/coremsgflushsupp.c,
	score/src/coremsgseize.c, score/src/coremsgsubmit.c,
	score/src/coremutex.c, score/src/coremutexflush.c,
	score/src/coresem.c, score/src/coresemflush.c, score/src/coretod.c,
	score/src/coretodtickle.c, score/src/coretodtoseconds.c,
	score/src/coretodvalidate.c, score/src/heap.c,
	score/src/heapallocate.c, score/src/heapextend.c,
	score/src/heapfree.c, score/src/heapsizeofuserarea.c,
	score/src/interr.c, score/src/iterateoverthreads.c,
	score/src/mpci.c, score/src/object.c, score/src/objectallocate.c,
	score/src/objectallocatebyindex.c, score/src/objectclearname.c,
	score/src/objectcomparenameraw.c,
	score/src/objectcomparenamestring.c, score/src/objectcopynameraw.c,
	score/src/objectcopynamestring.c,
	score/src/objectextendinformation.c, score/src/objectfree.c,
	score/src/objectget.c, score/src/objectgetbyindex.c,
	score/src/objectgetisr.c, score/src/objectgetnoprotection.c,
	score/src/objectidtoname.c, score/src/objectinitializeinformation.c,
	score/src/objectmp.c, score/src/objectnametoid.c,
	score/src/objectshrinkinformation.c, score/src/thread.c,
	score/src/threadcreateidle.c, score/src/threadget.c,
	score/src/threadidlebody.c, score/src/threadinitialize.c,
	score/src/threadmp.c, score/src/threadq.c,
	score/src/threadqdequeuepriority.c,
	score/src/threadqenqueuepriority.c,
	score/src/threadqfirstpriority.c, score/src/threadqflush.c,
	score/src/threadreset.c, score/src/threadrestart.c,
	score/src/threadsettransient.c, score/src/threadstackallocate.c,
	score/src/threadstart.c, score/src/userext.c,
	score/src/watchdoginsert.c, score/src/wkspace.c: Convert to using
	c99 fixed size types.

2004-03-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	PR 561/rtems
	* include/rtems/concat.h: New.
	* Makefile.am: Add include/rtems/concat.h.
	
	PR 589/rtems
	* Makefile.am: Add include/rtems/pci.h.

	* Makefile.am: Include automake/compile.am.
	* configure.ac: RTEMS_TOP([..],[]).

2004-03-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/rtems-top.m4: Add MULTISUBDIR. Add MULTIBUILDTOP.
	Add rtems_updir. Remove version.m4 check. 
	Add PROJECT_ROOT/with_project_root processing.
	Add PROJECT_INCLUDE. Add PROJECT_LIB.
	* aclocal/env-rtemscpu.a4: Remove cpukit_topdir.
	Remove with_project_root processing. Remove PROJECT_INCLUDE,
	PROJECT_LIB.

2004-03-26	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libmisc/capture/capture-cli.c, libmisc/capture/capture.c,
	libmisc/capture/capture.h, libmisc/cpuuse/cpuuse.c,
	libmisc/devnull/devnull.c, libmisc/fsmount/fsmount.h,
	libmisc/monitor/mon-config.c, libmisc/monitor/mon-dname.c,
	libmisc/monitor/mon-driver.c, libmisc/monitor/mon-extension.c,
	libmisc/monitor/mon-itask.c, libmisc/monitor/mon-monitor.c,
	libmisc/monitor/mon-mpci.c, libmisc/monitor/mon-object.c,
	libmisc/monitor/mon-prmisc.c, libmisc/monitor/mon-queue.c,
	libmisc/monitor/mon-server.c, libmisc/monitor/mon-symbols.c,
	libmisc/monitor/monitor.h, libmisc/monitor/symbols.h,
	libmisc/mw-fb/mw_uid.c, libmisc/rtmonuse/rtmonuse.c,
	libmisc/serdbg/serdbg.h, libmisc/serdbg/serdbgio.c,
	libmisc/serdbg/termios_printk.c, libmisc/serdbg/termios_printk.h,
	libmisc/shell/shell.c, libmisc/shell/shell.h, libmisc/stackchk/check.c,
	libmisc/stackchk/internal.h: Convert to using c99 fixed size types.

2004-03-23	Ralf Corsepius <ralf_corsepius@rtems.org>

	* itron/include/itronsys/mbox.h, itron/include/itronsys/types.h,
	itron/include/rtems/itron/eventflags.h,
	itron/include/rtems/itron/fmempool.h,
	itron/include/rtems/itron/mbox.h,
	itron/include/rtems/itron/msgbuffer.h,
	itron/include/rtems/itron/port.h,
	itron/include/rtems/itron/semaphore.h,
	itron/include/rtems/itron/task.h,
	itron/include/rtems/itron/vmempool.h,
	itron/inline/rtems/itron/semaphore.inl,
	itron/macros/rtems/itron/semaphore.inl, itron/src/eventflags.c,
	itron/src/fmempool.c, itron/src/itronsem.c, itron/src/mbox.c,
	itron/src/msgbuffer.c, itron/src/port.c, itron/src/snd_mbx.c,
	itron/src/task.c, itron/src/trcv_mbx.c, itron/src/vmempool.c:
	Convert to using c99 fixed size types.

2004-03-23	Ralf Corsepius <ralf_corsepius@rtems.org>

	* posix/include/rtems/posix/cond.h,
	posix/include/rtems/posix/intr.h, posix/include/rtems/posix/key.h,
	posix/include/rtems/posix/mqueue.h,
	posix/include/rtems/posix/mutex.h,
	posix/include/rtems/posix/pthread.h,
	posix/include/rtems/posix/semaphore.h,
	posix/include/rtems/posix/threadsup.h,
	posix/include/rtems/posix/timer.h, posix/src/cond.c,
	posix/src/intr.c, posix/src/key.c, posix/src/keycreate.c,
	posix/src/keydelete.c, posix/src/keygetspecific.c,
	posix/src/keyrundestructors.c, posix/src/keysetspecific.c,
	posix/src/killinfo.c, posix/src/mqueue.c,
	posix/src/mqueuerecvsupp.c, posix/src/mqueuesendsupp.c,
	posix/src/mqueuetranslatereturncode.c, posix/src/mutex.c,
	posix/src/posixintervaltotimespec.c,
	posix/src/posixtimespecsubtract.c, posix/src/psignal.c,
	posix/src/pthread.c, posix/src/ptimer1.c, posix/src/semaphore.c,
	posix/src/sysconf.c: Convert to using c99 fixed size types.

2004-03-23	Ralf Corsepius <ralf_corsepius@rtems.org>

	* score/include/rtems/system.h: include <stdint.h>.

2004-03-23	Ralf Corsepius <ralf_corsepius@rtems.org>

	PR/589 rtems
	* include/rtems/pci.h: New (Moved from c/src/libchip/network/pci.h).

2004-03-23	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/src/malloc.c: Remove lvalue casts.

2004-03-23	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libcsupport/include/chain.h, libcsupport/include/clockdrv.h, 
	libcsupport/include/ringbuf.h, libcsupport/include/spurious.h, 
	libcsupport/include/timerdrv.h, libcsupport/include/vmeintr.h, 
	libcsupport/include/motorola/mc68230.h, 
	libcsupport/include/rtems/assoc.h, libcsupport/include/rtems/libio.h,
	libcsupport/include/rtems/libio_.h,
	libcsupport/include/rtems/termiostypes.h,
	libcsupport/include/zilog/z8036.h, libcsupport/include/zilog/z8530.h,
	libcsupport/include/zilog/z8536.h, libcsupport/src/__gettod.c,
	libcsupport/src/assoc.c, libcsupport/src/assocnamebad.c,
	libcsupport/src/error.c,  libcsupport/src/libio.c,
	libcsupport/src/libio_sockets.c, libcsupport/src/malloc.c,
	libcsupport/src/no_libc.c, libcsupport/src/termios.c,
	libcsupport/src/termiosreserveresources.c: Convert to using c99
	fixed-size types.

2004-03-22	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libfs/src/dosfs/fat.c, libfs/src/dosfs/fat.h,
	libfs/src/dosfs/fat_fat_operations.c,
	libfs/src/dosfs/fat_fat_operations.h, libfs/src/dosfs/fat_file.c,
	libfs/src/dosfs/fat_file.h, libfs/src/dosfs/msdos.h,
	libfs/src/dosfs/msdos_create.c, libfs/src/dosfs/msdos_dir.c,
	libfs/src/dosfs/msdos_file.c, libfs/src/dosfs/msdos_initsupp.c,
	libfs/src/dosfs/msdos_misc.c, libfs/src/imfs/deviceio.c,
	libfs/src/imfs/imfs.h, libfs/src/imfs/imfs_directory.c,
	libfs/src/imfs/imfs_fchmod.c, libfs/src/imfs/linearfile.c,
	libfs/src/imfs/memfile.c: Convert to using c99 fixed-size types.

2004-03-05	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/net/radix.c: Remove warning.

2004-03-05	Joel Sherrill <joel@OARcorp.com>

	* libmisc/shell/cmds.c: Remove warning.

2004-03-05	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/lib/ftpfs.c: Switch bcopy to memcpy.

2004-03-05	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/src/newlibc.c, libcsupport/src/sync.c: Eliminate
	warnings.  Explicitly defeat __STRICT_ANSI__ since both 
	legitimately use routines beyond ANSI.

2004-03-05	Joel Sherrill <joel@OARcorp.com>

	* cpukit/libblock/src/bdbuf.c: Initialize pointer to avoid warning.

2004-03-05	Joel Sherrill <joel@OARcorp.com>

	* score/macros/rtems/score/chain.inl, score/src/objectidtoname.c:
	Add cast to avoid type punning warning in gcc 3.3.
2004-03-05	Joel Sherrill <joel@OARcorp.com>

	* 

2004-03-05	Joel Sherrill <joel@OARcorp.com>

	* libblock/src/bdbuf.c, libblock/src/ramdisk.c,
	libcsupport/src/newlibc.c, libcsupport/src/sync.c,
	libmisc/cpuuse/cpuuse.c, libmisc/monitor/mon-symbols.c,
	libmisc/shell/cmds.c, libmisc/shell/shell.c,
	libnetworking/kern/kern_sysctl.c, libnetworking/lib/ftpfs.c,
	libnetworking/lib/tftpDriver.c, libnetworking/libc/gethostbydns.c,
	libnetworking/libc/gethostbyht.c, libnetworking/libc/gethostnamadr.c,
	libnetworking/libc/getnetbyht.c, libnetworking/libc/getnetnamadr.c,
	libnetworking/libc/inet_addr.c, libnetworking/libc/linkaddr.c,
	libnetworking/libc/map_v4v6.c, libnetworking/libc/ns_print.c,
	libnetworking/libc/ns_ttl.c, libnetworking/libc/nsap_addr.c,
	libnetworking/libc/rcmd.c, libnetworking/libc/res_debug.c,
	libnetworking/libc/res_mkupdate.c, libnetworking/libc/res_query.c,
	libnetworking/libc/res_send.c, libnetworking/libc/res_update.c,
	libnetworking/net/radix.c, libnetworking/rtems/mkrootfs.c,
	librpc/src/rpc/clnt_perror.c, librpc/src/rpc/rtems_rpc.c,
	librpc/src/rpc/svc.c, sapi/include/confdefs.h,
	score/macros/rtems/score/chain.inl, score/src/objectidtoname.c:

2004-02-26	Thomas Rauscher <trauscher@loytec.com.

	PR 584/RTEMS
	* rtems/src/eventtimeout.c: Fix critical section window.

2004-02-26	Joel Sherrill <joel@OARcorp.com>

	PR 582/core
	* posix/src/mqueue.c, posix/src/mqueuecreatesupp.c,
	posix/src/mqueuedeletesupp.c, posix/src/mqueueunlink.c: Use memory
	from workspace to avoid use of mutex during dispatch disable critical
	section. Besides memory for object names should come from the
	Workspace anyway.

2004-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/version.m4: 4.6.99.0.

2004-02-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/Makefile.am: Remove ACLOCAL_AMFLAGS.

2004-01-30	Wilfried Busalski <w.busalski@lancier-monitoring.de>

	PR pppd/564
	* libnetworking/net/if_ppp.c, libnetworking/net/if_pppvar.h,
	libnetworking/net/ppp_tty.c: ppp0 Interface lose packets if the
	system use a slow baudrate for the modem or the tcp/ip-packet is
	fragmented.

2004-01-30	Joel Sherrill <joel@OARcorp.com>

	* ChangeLog, rtems/Makefile.am, rtems/include/rtems/rtems/support.h:
	Reverse developmental patches accidentally committed.

2004-01-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* ChangeLog: Merge-in libnetworking/ChangeLog.
	* ChangeLog: Merge-in libcsupport/ChangeLog.
	* ChangeLog: Merge-in libblock/ChangeLog, libfs/ChangeLog.
	* ChangeLog: Merge-in libmisc/ChangeLog, librpc/ChangeLog.
	* ChangeLog: Merge-in itron/ChangeLog, posix/ChangeLog, score/ChangeLog,
	sapi/ChangeLog, rtems/ChangeLog.
	* libblock/ChangeLog, libfs/ChangeLog, libcsupport/ChangeLog,
	libmisc/ChangeLog, librpc/ChangeLog, libnetworking/ChangeLog,
	itron/ChangeLog, posix/ChangeLog, score/ChangeLog, sapi/ChangeLog,
	rtems/ChangeLog: Remove.

2004-01-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-top.m4: Remove PROJECT_ROOT. Prepend ../ to $1.
	* aclocal/env-rtemscpu.m4: Reworked.
	* configure.ac: RTEMS_TOP([.]).

2004-01-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am, itron/Makefile.am, posix/Makefile.am, score/Makefile.am,
	sapi/Makefile.am, rtems/Makefile.am, libmisc/Makefile.am,
	librpc/Makefile.am, libblock/Makefile.am, libfs/Makefile.am,
	libcsupport/Makefile.am, libnetworking/Makefile.am: Add PREINSTALL_DIRS.

2004-01-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Remove $(ARCH)/$(dirstamp). Add TMPINSTALL_FILES
	to CLEANFILES.
	* automake/local.am: Remove depend-am.
	* automake/subdirs.am: Remove depend-recursive.
	* score/Makefile.am: Re-add dirstamps to PREINSTALL_FILES. Add
	PREINSTALL_FILES to CLEANFILES. Add cpuopts.h to DISTCLEANFILES.
	* Makefile.am, itron/Makefile.am, posix/Makefile.am, sapi/Makefile.am,
	rtems/Makefile.am, libmisc/Makefile.am, librpc/Makefile.am,
	libblock/Makefile.am, libfs/Makefile.am, libcsupport/Makefile.am,
	libnetworking/Makefile.am: Re-add dirstamps to PREINSTALL_FILES. Add
	PREINSTALL_FILES to CLEANFILES.
	* libnetworking/netinet/in_cksum.c: #include netinet/in_cksum_<cpu>.h.

2004-01-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR/549 networking
	* libnetworking/netinet/in_cksum_powerpc.h: New (copy of
	in_cksum_powerpc.c).
	* libnetworking/netinet/in_cksum_i386.h: New (copy of in_cksum_i386.c).
	* libnetworking/netinet/in_cksum_arm.h: New (copy of in_cksum_arm.c).
	* libnetworking/netinet/in_cksum_m68k.c: New (copy of in_cksum_m68k.c).
	* libnetworking/netinet/in_cksum_i386.c,
	libnetworking/netinet/in_cksum_arm.c,
	libnetworking/netinet/in_cksum_powerpc.c,
	libnetworking/netinet/in_cksum_m68k.c: Remove.
	* libnetworking/netinet/Makefile.am: Reflect changes above.

2004-01-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Requires automake >= 1.8.1.
	* score/cpu/Makefile.am: Use @RTEMS_CPU@ instead of $(RTEMS_CPU).
	PR 548/rtems
	* libcsupport/Makefile.am: Add src/envlock.c.

2004-01-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-top.m4: Don't AC_SUBST PROJECT_ROOT. Remove
	PROJECT_TOPdir (Unused).
	* aclocal/env-rtemscpu.m4: Remove PROJECT_RELEASE. Expand
	${PROJECT_ROOT}. Remove RTEMS_ENABLE_BARE (Unused). Don't AC_SUBST
	RTEMS_BSP.
	* aclocal/enable-bare.m4: Remove (Unused).
	* aclocal/rtems-top.m4: Remove check for cpukit/aclocal/version.m4.
	Remove gnu-make endif HACK (Unused).
	* wrapup/Makefile.am: Include compile.am. Use TMP_LIBS instead of LIBS
	to avoid potential conflicts with auto*tools' LIBS. Reflect new
	locations of libscorecpu*.a.
	* Makefile.am: Remove AUTOMAKE_FILES.
	* automake/compile.am: Replace contents with contents of
	automake/amcompile.am.
	* automake/amcompile.am, automake/lib.am: Remove.
	* configure.ac, aclocal/enable-bare.m4, aclocal/enable-inlines.m4,
	aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4,
	aclocal/enable-networking.m4, aclocal/enable-posix.m4,
	aclocal/enable-rtems-debug.m4, aclocal/multi.m4, aclocal/multilib.m4:
	Use AS_HELP_STRING instead of AC_HELP_STRING (deprecated in
	autoconf-2.59).
	* automake/local.am: Remove clean-local, depend-gcc.
	* itron/Makefile.am, posix/Makefile.am, score/Makefile.am: Include
	compile.am, again.
	* score/macros/rtems/score/README: Remove (Redundant with macros/README).
	* sapi/Makefile.am, rtems/Makefile.am: Include compile.am, again.
	* libmisc/Makefile.am: Include compile.am again. Misc fixes.
	* librpc/Makefile.am: Include compile.am, again. Put man-pages into
	EXTRA_DIST to work around automake not distributing conditionally
	installed *_MANS. Distribute include/rpcsvc.
	* libblock/Makefile.am: Include compile.am, again. Eliminate C_FILES.
	Reformat.
	* libfs/Makefile.am: Include compile.am, again. Reformat/Cleanup.
	* libcsupport/Makefile.am: Reformat, add UNUSED_FILES.
	* libcsupport/Makefile.am: Include compile.am, again. Eliminate
	DOC_FILES.
	* libnetworking/Makefile.am: Include compile.am, again. Cleanup.

2004-01-08	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Cosmetics.
	* aclocal/enable-networking.m4: Don't AC_SUBST(RTEMS_HAS_NETWORKING).
	* aclocal/check-networking.m4: Don't AC_SUBST(HAS_NETWORKING).
	* automake/amcompile.am: Remove $(ARCH).
	* wrapup/Makefile.am: Add $(ARCH). Remove compile.am, lib.am. Include
	amcompile.am.
	* wrapup/Makefile.am: Use ../*/*$(LIB_VARIANT).a instead of
	$(ARCH)/lib*.a.
	* wrapup/Makefile.am: Reflect changes to libblock/Makefile.am. Reflect
	changes to libcsupport/Makefile.am.
	* itron/Makefile.am: Add libs to CLEANFILES. Set lib*_g_a_SOURCES =
	lib*_a_SOURCES.
	* itron/Makefile.am: Build libitron$(LIB_VARIANT).a instead of
	$(ARCH)/libitron.a.
	* posix/Makefile.am: Add libs to CLEANFILES Set lib*_g_a_SOURCES =
	lib*_a_SOURCES.
	* posix/Makefile.am: Build libposix$(LIB_VARIANT).a instead of
	$(ARCH)/libposix.a.
	* score/Makefile.am: Add libs to CLEANFILES Set lib*_g_a_SOURCES =
	lib*_a_SOURCES.
	* score/Makefile.am: Build libscore$(LIB_VARIANT).a instead of
	$(ARCH)/libscore.a.
	* sapi/Makefile.am: Add libs to CLEANFILES Set lib*_g_a_SOURCES =
	lib*_a_SOURCES.
	* sapi/Makefile.am: Build libsapi$(LIB_VARIANT).a instead of
	$(ARCH)/libsapi.a.
	* rtems/Makefile.am: Add libs to CLEANFILES Set lib*_g_a_SOURCES =
	lib*_a_SOURCES.
	* rtems/Makefile.am: Build librtems$(LIB_VARIANT).a instead of
	$(ARCH)/librtems.a.
	* libmisc/Makefile.am: Add libs to CLEANFILES Set lib*_g_a_SOURCES =
	lib*_a_SOURCES.
	* libmisc/Makefile.am: Build lib*$(LIB_VARIANT).a instead of
	$(ARCH)/lib*.a.
	* librpc/Makefile.am: Add libs to CLEANFILES. Set lib*_g_a_SOURCES =
	lib*_a_SOURCES.
	* librpc/Makefile.am: Build lib*$(LIB_VARIANT).a instead of
	$(ARCH)/lib*.a.
	* libblock/Makefile.am: Add libs to CLEANFILES Set lib*_g_a_SOURCES =
	lib*_a_SOURCES.
	* libblock/include/rtems/blkdev.h,
	libblock/include/rtems/ide_part_table.h, libblock/src/bdbuf.c,
	libblock/src/ide_part_table.c, libblock/src/ramdisk.c: Switch to using
	c99 fixed size types instead of RTEMS-types.
	* libblock/Makefile.am: Build libblock$(LIB_VARIANT).a instead of
	$(ARCH)/libblock.a.
	* libfs/Makefile.am: Add libs to CLEANFILES. Set lib*_g_a_SOURCES =
	lib*_a_SOURCES.
	* libfs/Makefile.am: Build lib*$(LIB_VARIANT).a instead of
	$(ARCH)/lib*.a.
	* libcsupport/Makefile.am: Add libs to CLEANFILES Set lib*_g_a_SOURCES =
	lib*_a_SOURCES.
	* libcsupport/Makefile.am: Build libcsupport$(LIB_VARIANT).a instead of
	$(ARCH)/libcsupport.a.
	* libnetworking/Makefile.am: Remove *C_FILES.
	* libnetworking/Makefile.am: Add libs to CLEANFILES Set lib*_g_a_SOURCES
	= lib*_a_SOURCES.
	* libnetworking/Makefile.am: Build lib*$(LIB_VARIANT).a instead of
	$(ARCH)/lib*.a.

2004-01-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Reflect changes to library Makefile.ams.
	* automake/amcompile.am: New.
	* configure.ac: Add subdir-objects, AM_PROG_CC_C_O.
	* itron/Makefile.am, posix/Makefile.am, score/Makefile.am,
	sapi/Makefile.am, rtems/Makefile.am, libmisc/Makefile.am,
	librpc/Makefile.am, libblock/Makefile.am, libfs/Makefile.am,
	libcsupport/Makefile.am, libnetworking/Makefile.am: Build library using
	EXTRA_LIBRARIES and automake rules.

2004-01-07	Joel Sherrill <joel@OARcorp.com>

	* aclocal/rtems-cpu-subdirs.m4, score/cpu/Makefile.am: mips64orion port
	removed as mips port more completely covers the MIPS family.
	* score/cpu/mips64orion/.cvsignore, score/cpu/mips64orion/ChangeLog,
	score/cpu/mips64orion/Makefile.am, score/cpu/mips64orion/asm.h,
	score/cpu/mips64orion/configure.ac, score/cpu/mips64orion/cpu.c,
	score/cpu/mips64orion/cpu_asm.S, score/cpu/mips64orion/cpu_asm.h,
	score/cpu/mips64orion/idtcpu.h, score/cpu/mips64orion/idtmon.h,
	score/cpu/mips64orion/iregdef.h, score/cpu/mips64orion/rtems/.cvsignore,
	score/cpu/mips64orion/rtems/score/.cvsignore,
	score/cpu/mips64orion/rtems/score/cpu.h,
	score/cpu/mips64orion/rtems/score/mips64orion.h,
	score/cpu/mips64orion/rtems/score/types.h: Removed.
	* libnetworking/rtems/rtems_bsdnet_internal.h: Include rtems/cdefs.h so
	things compile.

2003-12-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Use $(mkdir_p) instead of $(mkinstalldirs).

2003-12-17	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-20031217-test.

2003-12-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 533/bsps
	* score/startup/linkcmds: Update linkcmds for gcc 3.3.2.

2003-12-16	Joel Sherrill <joel@OARcorp.com>

	PR 543/rtems
	* score/src/threadclose.c: Make the task delete extension run outside a
	dispatch disabled critical section so extensions can free resources.
	PR 542/filesystem
	* libcsupport/include/rtems/libio_.h: Add rtems_libio_iop_to_descriptor
	macro to convert iop to the corresponding integer file descriptor.

2003-12-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemscpu.m4: Remove stray '/' in PROJECT_LIB.
	* wrapup/Makefile.am: Remove duplicate $(PROJECT_LIB) rule.
	* aclocal/env-rtemscpu.m4: Add PROJECT_LIB.
	* wrapup/Makefile.am: Use $(PROJECT_LIB) instead of
	${PROJECT_RELEASE}/lib.

2003-12-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am, wrapup/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* wrapup/Makefile.am: Reworked.
	* aclocal/lead-dot.m4: Remove (Use the version in automake-1.8).
	* automake/lib.am: Remove $(project_libdir)$(MULTISUBDIR).
	* aclocal/env-rtemscpu.m4: Reflect new definition of project_lib.
	* Makefile.am: Remove BUILT_SOURCES.
	* configure.ac: Require automake >= 1.8, autoconf >= 2.59.
	* itron/Makefile.am, posix/Makefile.am, score/Makefile.am,
	sapi/Makefile.am, rtems/Makefile.am, libmisc/Makefile.am,
	librpc/Makefile.am, libblock/Makefile.am, libfs/Makefile.am,
	libcsupport/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* libcsupport/Makefile.am: Remove BUILT_SOURCES.
	* libnetworking/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.

2003-12-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/Makefile.am: Cosmetics.

2003-12-11	Joel Sherrill <joel@OARcorp.com>

	PR 540/rtems_misc
	* libmisc/cpuuse/cpuuse.c, libmisc/rtmonuse/rtmonuse.c: Correct object
	name printing.
	PR 531/rtems_misc
	* libmisc/rtmonuse/rtmonuse.c, libmisc/stackchk/check.c: Correct
	indexing.

2003-12-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libblock/src/ata.c: Remove.

2003-11-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Add $(ARCH)/$(dirstamp) rules.
	* wrapup/Makefile.am: Reflect $(dirstamp) changes.
	* Makefile.am: Add $(dirstamp) to preinstallation rules.
	* aclocal/lead-dot.m4: New (from automake-1.7f).
	* aclocal/rtems-top.m4: Require AM_SET_LEADING_DOT. Add
	AC_SUBST(dirstamp).
	* itron/Makefile.am: Add $(dirstamp) to compilation rules.
	* itron/Makefile.am: Add $(dirstamp) to preinstallation rules. Remove
	MACROS.
	* posix/Makefile.am: Add $(dirstamp) to compilation rules.
	* posix/Makefile.am: Add $(dirstamp) to preinstallation rules. Remove
	MACROS.
	* score/Makefile.am: Add $(dirstamp) to compilation rules.
	* score/Makefile.am: Add $(dirstamp) to preinstallation rules. Remove
	MACROS.
	* sapi/Makefile.am: Add $(dirstamp) to compilation rules. Add
	AM_CPPFLAGS += -I$(top_builddir).
	* sapi/Makefile.am: Add $(dirstamp) to preinstallation rules. Remove
	MACROS.
	* rtems/Makefile.am: Add $(dirstamp) to compilation rules. Add
	AM_CPPFLAGS += -I$(top_builddir).
	* rtems/Makefile.am: Add $(dirstamp) to preinstallation rules. Remove
	MACROS.
	* libmisc/Makefile.am: Add $(dirstamp) to compilation rules. Fix misc.
	typos.
	* libmisc/Makefile.am: Add $(dirstamp) to preinstallation rules.
	* librpc/Makefile.am: Add $(dirstamp) to compilation rules.
	* librpc/Makefile.am: Add $(dirstamp) to preinstallation rules.
	* libblock/Makefile.am: Add $(dirstamp) to compilation rules.
	* libblock/Makefile.am: Add $(dirstamp) to preinstallation rules.
	* libfs/Makefile.am: Add $(dirstamp) to compilation rules.
	* libfs/Makefile.am: Add $(dirstamp) to preinstallation rules.
	* libcsupport/Makefile.am: Add $(dirstamp) to compilation rules.
	* libcsupport/Makefile.am: Add $(dirstamp) to preinstallation rules.
	* libnetworking/Makefile.am: Add $(dirstamp) to compilation rules.
	* libnetworking/Makefile.am: Fix libc_OBJS.
	* libnetworking/Makefile.am: Add $(dirstamp) to preinstallation rules.
	Restore libc/$(ARCH)/lib.a.

2003-11-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Reflect having removed libnetworking/libc/Makefile.am,
	libnetworking/lib/Makefile.am.
	* configure.ac: Reflect changes to libmisc/*.
	* libmisc/Makefile.am: Reformat.
	* libmisc/capture/Makefile.am, libmisc/cpuuse/Makefile.am,
	libmisc/devnull/Makefile.am, libmisc/dummy/Makefile.am,
	libmisc/dumpbuf/Makefile.am, libmisc/fsmount/Makefile.am,
	libmisc/monitor/Makefile.am, libmisc/mw-fb/Makefile.am,
	libmisc/rtmonuse/Makefile.am, libmisc/serdbg/Makefile.am,
	libmisc/shell/Makefile.am, libmisc/stackchk/Makefile.am,
	libmisc/untar/Makefile.am: Remove.
	* libmisc/Makefile.am: Merge-in the Makefile.ams above.
	* libnetworking/libc/Makefile.am, libnetworking/lib/Makefile.am: Remove.
	* libnetworking/Makefile.am: Merge-in the Makefile.ams above.

2003-11-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Merge-in former libmisc/wrapup/Makefile.am.
	* configure.ac: Reflect changes to libfs Makefile.ams. Remove
	libmisc/wrapup/Makefile.
	* configure.ac: Use here-documents to generate cpuopts.tmp. Various
	fixes and changes to argument processing. Reflect changes to librpc
	Makefile.ams.
	* acinclude.m4: Use here-documents to generate cpuopts.tmp.
	* aclocal/check-itron.m4: Remove HAS_IRON_API.
	* aclocal/check-multiprocessing.m4: Remove HAS_MP.
	* aclocal/check-posix.m4: Remove HAS_POSIX_API.
	* libmisc/wrapup/Makefile.am, libmisc/wrapup/.cvsignore: Remove.
	* libmisc/Makefile.am: Reflect changes above.
	* librpc/src/rpc/Makefile.am, librpc/src/xdr/Makefile.am,
	librpc/src/Makefile.am: Removed.
	* librpc/Makefile.am: Merge-in src/rpc/Makefile.am, src/xdr/Makefile.am,
	src/Makefile.am. Various fixes. Reformat.
	* librpc/include/rpc/rpc.hinclude/rpc/rpc.h: Rename struct
	rtems_rpc_task_variables into struct _rtems_rpc_task_variables (Avoid
	symbol conflict between struct and variable). struct
	_rtems_rpc_task_variables *rtems_rpc_task_variables; Reflect changes
	above.
	* librpc/src/rpc/clnt_perror.c, librpc/src/rpc/clnt_raw.c,
	librpc/src/rpc/clnt_simple.c, librpc/src/rpc/rpcdname.c,
	librpc/src/rpc/rtems_rpc.c, librpc/src/rpc/svc.c, librpc/
	src/rpc/svc_auth.c, librpc/src/rpc/svc_raw.c,
	librpc/src/rpc/svc_simple.c: Reflect changes above.
	* libfs/Makefile.am: Merge-in src/Makefile.am, src/imfs/Makefile.am,
	src/dosfs/Makefile.am.
	* libfs/src/Makefile.am, libfs/src/imfs/Makefile.am,
	libfs/src/dosfs/Makefile.am: Removed.

2003-11-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/canonicalize-tools.m4, aclocal/check-itron.m4,
	aclocal/check-multiprocessing.m4, aclocal/check-newlib.m4,
	aclocal/check-posix.m4, aclocal/check-rtems-debug.m4,
	aclocal/check-tool.m4, aclocal/enable-bare.m4,
	aclocal/enable-inlines.m4, aclocal/enable-itron.m4,
	aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
	aclocal/enable-posix.m4, aclocal/enable-rtems-debug.m4,
	aclocal/env-rtemscpu.m4, aclocal/gcc-isystem.m4, aclocal/gcc-pipe.m4,
	aclocal/multi.m4, aclocal/multilib.m4, aclocal/prog-cc.m4,
	aclocal/rtems-top.m4, aclocal/sysv-ipc.m4: Fix underquoting to silence
	automake-1.8.

2003-11-26	Joel Sherrill <joel@OARcorp.com>

	PR 524/filesystem
	* libcsupport/src/newlibc.c: Address 1K buffer leak from incomplete
	cleanup of newlib reentrancy handler.
	PR 523/filesystem
	* libcsupport/src/malloc.c: Make malloc family safer for use from ISRs
	and dispatching critical sections. If in a critical section while doing
	a free(), then the free is deferred until the next malloc() attempt.

2003-11-25	Joel Sherrill <joel@OARcorp.com>

	PR 526/rtems
	* score/src/threadcreateidle.c: Idle task name should be a string and
	PR484 broke this.

2003-11-25	Jennifer Averett <jennifer@OARcorp.com>

	PR 519/filesystem
	* libcsupport/include/rtems/libio_.h, libcsupport/src/eval.c,
	libcsupport/src/rmdir.c, libcsupport/src/unlink.c: Check write
	permissions in parent directory for file or directory delete.

2003-11-24	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Use RTEMS_INLINES instead of USE_INLINES. Elimimate
	INLINESdir.
	* aclocal/enable-inlines.m4: Ditto. Remove RTEMS_USE_MACROS.
	* .cvsignore: Add config.h.in.

2003-11-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Make RTEMS_DEBUG an RTEMS_CPUOPT.
	PR 525/rtems
	* score/include/rtems/system.h: Use RTEMS_INLINES instead of USE_INLINES.
	* score/include/rtems/score/chain.h, score/include/rtems/score/thread.h,
	score/src/chain.c, score/src/coremutexseize.c, score/src/threadget.c:
	Ditto.
	* score/Makefile.am: Don't use gmake to preinstall.
	* sapi/Makefile.am: Reworked.

2003-11-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Reflect having removed libnetworking/wrapup.
	* configure.ac: Ditto.
	* itron/Makefile.am, posix/Makefile.am, rtems/Makefile.am,
	libblock/Makefile.am: Reworked.
	* libcsupport/include/rtems/cdefs.h: Use _RTEMS_CDEFS_H guards.
	* libcsupport/include/rtems/cdefs.h: New.
	* libcsupport/Makefile.am: Completely reworked.
	* libnetworking/rtems/rtems_bsdnet_internal.h: Include rtems/cdefs.h
	instead of sys/cdefs.h (Nonportable).
	* libnetworking/wrapup/Makefile.am: Removed.
	* libnetworking/Makefile.am: Reworked.

2003-11-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: New.
	* configure.ac: Don't use AUTOHEADER to generate cpuopts.h. Add local
	autoheader config.h.
	* aclocal/canonical-target-name.m4: Require AC_CANONICAL_HOST.
	* aclocal/enable-inlines.m4: Remove USE_MACROS (Unused).
	* itron/Makefile.am: Remove src/config.h. AM_CPPFLAGS +=
	-I$(top_builddir).
	* posix/Makefile.am: Remove src/config.h AM_CPPFLAGS +=
	-I$(top_builddir).
	* libmisc/capture/Makefile.am, libmisc/cpuuse/Makefile.am,
	libmisc/devnull/Makefile.am, libmisc/dummy/Makefile.am,
	libmisc/dumpbuf/Makefile.am, libmisc/monitor/Makefile.am,
	libmisc/mw-fb/Makefile.am, libmisc/rtmonuse/Makefile.am,
	libmisc/serdbg/Makefile.am, libmisc/shell/Makefile.am,
	libmisc/stackchk/Makefile.am, libmisc/untar/Makefile.am: Remove
	config.h. AM_CPPFLAGS += -I$(top_builddir).
	* libblock/Makefile.am: AM_CPPFLAGS += -I$(top_builddir). Use
	AM_CPPFLAGS instead of AM_CFLAGS.
	* libblock/src/ata.c: Include config.h.
	* libblock/src/bdbuf.c, libblock/src/blkdev.c, libblock/src/diskdevs.c,
	libblock/src/ide_part_table.c, libblock/src/ramdisk.c: Ditto.
	* libfs/src/dosfs/Makefile.am, libfs/src/imfs/Makefile.am: Remove
	config.h AM_CPPFLAGS += -I$(top_builddir).
	* itron/src/config.h, posix/src/config.h, libmisc/capture/config.h,
	libmisc/cpuuse/config.h, libmisc/devnull/config.h,
	libmisc/dummy/config.h, libmisc/dumpbuf/config.h,
	libmisc/monitor/config.h, libmisc/mw-fb/config.h,
	libmisc/rtmonuse/config.h, libmisc/serdbg/config.h,
	libmisc/stackchk/config.h, libmisc/shell/config.h,
	libmisc/untar/config.h, libfs/src/dosfs/config.h,
	libfs/src/imfs/config.h, libcsupport/src/config.h: Remove.
	* libcsupport/src/Makefile.am: AM_CPPFLAGS += -I$(top_builddir).

2003-11-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libfs/Makefile.am: Cosmetics.

2003-10-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* rtems/src/regiongetsegment.c: Remove unneccessary typecast in
	assignment to thread->Wait.return_argment.

2003-10-22	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	PR 515/filesystem
	* libfs/src/dosfs/fat_fat_operations.c: Remove commented out code.

2003-10-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 509/filesystem
	* libfs/src/dosfs/fat.c: _fat_block_read and _fat_block_write return
	error codes instead of -1 in case of errors, as they are supposed to do
	according to the comments documenting these functions.

2003-10-22	Joel Sherrill <joel@OARcorp.com>

	PR 512/core
	* rtems/src/tasks.c, rtems/src/taskvariabledelete.c: Run task variable
	destructor when task variable is deleted. Also some style cleanup.
	PR 440/filesystem
	* libfs/src/dosfs/fat_fat_operations.c: Improve write speed with FAT12
	and FAT16 filesystems. Previously merged on 4.6 branch.
	* libfs/ChangeLog: Correct line length.
	PR 511/filesystem
	* libcsupport/src/malloc.c: Add deferred free and protect against C
	Program Heap operations while in a dispatch disable critical section or
	ISR.

2003-10-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-posix.m4: Add m4-quotes. Require
	RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
	* aclocal/canonical-host.m4: Remove.
	* configure.ac: Remove RTEMS_CANONICAL_HOST.
	* aclocal/sysv-ipc.m4: Remove reference to RTEMS_CANONICAL_HOST.
	* aclocal/canonical-target-name.m4: Use AC_CANONICAL_HOST instead of
	AC_CANONICAL_TARGET. Use $host instead of $target.
	* aclocal/check-multiprocessing.m4: Add m4-quotes. Remove
	RTEMS_CHECK_CPU.
	* aclocal/check-itron.m4, aclocal/check-networking.m4: Add m4-quotes.
	Require RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
	* aclocal/check-cpu.m4: Remove.
	* aclocal/canonical-target-name.m4: Add m4-quotes.
	* configure.ac: Merge-in former aclocal/check-cpu.m4.
	* posix/src/cancelrun.c, posix/src/pthreadexit.c,
	posix/src/pthreadjoin.c, posix/ src/sigtimedwait.c: Remove unnecessary
	typecasts in assignments to thread->Wait.return_argument.
	* score/src/coremsgseize.c, score/src/coremsgsubmit.c: Remove
	unnecessary typecasts in assignments to  thread->Wait.return_argument.
	* libmisc/capture/capture-cli.c: Reflect new rtems_monitor_command_arg_t.
	* librpc/src/rpc/Makefile.am, librpc/src/xdr/Makefile.am: Remove __P
	from AM_CPPFLAGS. Rely on sys/cdefs.h providing it.
	* libfs/src/dosfs/Makefile.am: noinst_HEADERS += fat.h.
	* libfs/src/dosfs/msdos_file.c (msdos_file_read,
	libfs/msdos_file_write): Use '0' as initial value for ret instead of
	RC_OK.
	* libfs/src/dosfs/msdos_conv.c: Remove isupper, islower, toupper,
	tolower (Unused).

2003-10-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Check for sys/cdefs.h.
	* aclocal/env-rtems-cpu.m4: Add project_includedir. Deprecate
	PROJECT_INCLUDE.  Change project_includedir to $(PROJECT_ROOT)/include
	for multilibs.

2003-10-13	Joel Sherrill <joel@OARcorp.com>

	* posix/src/cleanuppop.c, posix/src/cleanuppush.c: Protect use of
	_Workspace_Allocate and _Workspec_Free.

2003-10-02	Phil Torre <ptorre@zetron.com>

	PR 504/rtems
	* score/include/rtems/score/coremutex.h: Add fatal error check for a
	task blocking on a mutex when thread dispatching is disabled.
	PR 504/rtems
	* libcsupport/src/newlibc.c: Fix memory allocation of libc extension so
	it is dispatch disabled safe See PR for detailed explanation.

2003-09-26	Till Strauman <strauman@slac.stanford.edu>

	PR 498/rtems
	* libcsupport/src/printk.c: RTEMS printk() does not support the %i
	format which is used by a lot of driver/BSP etc. code. The trivial patch
	allows %i/%I as an alias for %d/%D.

2003-09-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 495/rtems_misc
	* libmisc/capture/capture-cli.c, libmisc/monitor/mon-command.c,
	libmisc/monitor/mon-config.c, libmisc/monitor/mon-monitor.c,
	libmisc/monitor/mon-object.c, libmisc/monitor/mon-symbols.c,
	libmisc/monitor/monitor.h, libmisc/shell/cmds.c: Move to making libmisc
	16/32 bit clean.

2003-09-26	Joel Sherrill <joel@OARcorp.com>

	* score/cpu/hppa1.1/.cvsignore, score/cpu/hppa1.1/ChangeLog,
	score/cpu/hppa1.1/Makefile.am, score/cpu/hppa1.1/configure.ac,
	score/cpu/hppa1.1/cpu.c, score/cpu/hppa1.1/cpu_asm.S,
	score/cpu/hppa1.1/rtems/.cvsignore,
	score/cpu/hppa1.1/rtems/score/.cvsignore,
	score/cpu/hppa1.1/rtems/score/cpu.h,
	score/cpu/hppa1.1/rtems/score/cpu_asm.h,
	score/cpu/hppa1.1/rtems/score/hppa.h,
	score/cpu/hppa1.1/rtems/score/types.h: Removed.
	PR 492/filesystem
	* libfs/src/dosfs/fat_file.c: Fix inconsistent types in va_args call.

2003-09-24	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am, librpc/Makefile.am: Merge-in include/Makefile.am.
	* include/Makefile.am, librpc/include/Makefile.am: Remove.
	* configure.ac: Reflect having removed include/Makefile.am and
	librpc/include/Makefile.am.

2003-09-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/monitor/monitor.h: Add rtems_monitor_commands[] (Illegally
	applied by shell/). Remove ifdef(__mips64) (Make broken code visible
	again).
	* libmisc/monitor/mon-command.c: Add several ifndef RTEMS_UNIX to avoid
	warnings.
	* libmisc/monitor/mon-monitor.c: Remove RTEMS_CPU_HAS_16_BIT_ADDRESSES
	(Make broken code visible again).
	* libmisc/shell/cmds.c: Remove local decls of rtems_monitor_commands[].

2003-09-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/monitor/monitor.h: Remove STREQ, STNEQ (pollute namespace), 
	RTEMS_MONITOR_PROMPT (pollutes namespace, useless).
	* libmisc/monitor/mon-command.c: Add RTEMS_MONITOR_PROMPT.
	* libmisc/monitor/mon-monitor.c: Apply private version of STREQ.
	* libmisc/monitor/symbols.h: Convert to private header.
	* libmisc/monitor/monitor.h: Don't include symbols.h. Add forward decls.
	for symbols from symbols.h.
	* libmisc/monitor/Makefile.am: Don't install symbols.h.
	* libmisc/monitor/mon-symbols.c: Include "symbols.h".

2003-09-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 489/rtems
	* score/include/rtems/score/thread.h: Change struct 
	Thread_Control_struct.libc_reent to using struct _reent*.
	* score/inline/rtems/score/thread.inl: Reflect change above.
	PR 489/rtems
	* libcsupport/src/newlibc.c: Reflect struct
	Thread_Control_struct.libc_reent  having changed from void * to struct
	_reent*.

2003-09-15	Jay Monkman <jtm@smoothsmoothie.com>

	PR 482/networking
	* libnetworking/rtems/rtems_glue.c: Network interfaces can't be taken
	down.
	PR 481/networking
	* libnetworking/net/ethernet.h, libnetworking/net/if_arp.h,
	libnetworking/netinet/if_ether.h: Network structs should be packed.

2003-09-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libcsupport/src/sync.c: Don't undef __STRICT_ANSI__. Use struct _reent
	(struct reent doesn't exist).
	PR 486/rtems
	* libcsupport/src/newlib.c: Unconditionally include <stdio.h>.

2003-09-11	Joel Sherrill <joel@OARcorp.com>

	PR 488/rtems
	* rtems/src/taskcreate.c, rtems/src/tasks.c: Ensure notepads are zeroed.

2003-09-09	Ralf Corsepius <ralf_corsepius@rtems.com>

	PR 487/filesystem
	* libfs/src/dosfs/fat_file.c: Correct typing per gcc 3.3 warnings.

2003-09-08	Mikec Ivica <mikici@acm.org>

	* score/inline/rtems/score/userext.inl,
	score/macros/rtems/score/userext.inl: Add missing cast.

2003-09-08	Derick Hammond <derick@perkinstechnologies.com.au>

	PR 484/rtems
	* score/src/threadcreateidle.c: Idle task name was initialized
	incorrectly.

2003-09-04	Joel Sherrill <joel@OARcorp.com>

	* include/rtems/bspIo.h, include/rtems/fs.h, include/rtems/userenv.h,
	itron/include/itron.h, itron/include/itronsys/eventflags.h,
	itron/include/itronsys/fmempool.h, itron/include/itronsys/intr.h,
	itron/include/itronsys/mbox.h, itron/include/itronsys/msgbuffer.h,
	itron/include/itronsys/network.h, itron/include/itronsys/port.h,
	itron/include/itronsys/semaphore.h, itron/include/itronsys/status.h,
	itron/include/itronsys/sysmgmt.h, itron/include/itronsys/task.h,
	itron/include/itronsys/time.h, itron/include/itronsys/types.h,
	itron/include/itronsys/vmempool.h, itron/include/rtems/itron/config.h,
	itron/include/rtems/itron/eventflags.h,
	itron/include/rtems/itron/fmempool.h, itron/include/rtems/itron/intr.h,
	itron/include/rtems/itron/itronapi.h, itron/include/rtems/itron/mbox.h,
	itron/include/rtems/itron/msgbuffer.h,
	itron/include/rtems/itron/network.h, itron/include/rtems/itron/object.h,
	itron/include/rtems/itron/port.h, itron/include/rtems/itron/semaphore.h,
	itron/include/rtems/itron/sysmgmt.h, itron/include/rtems/itron/task.h,
	itron/include/rtems/itron/time.h, itron/include/rtems/itron/vmempool.h,
	itron/inline/rtems/itron/eventflags.inl,
	itron/inline/rtems/itron/fmempool.inl,
	itron/inline/rtems/itron/intr.inl, itron/inline/rtems/itron/mbox.inl,
	itron/inline/rtems/itron/msgbuffer.inl,
	itron/inline/rtems/itron/network.inl, itron/inline/rtems/itron/port.inl,
	itron/inline/rtems/itron/semaphore.inl,
	itron/inline/rtems/itron/sysmgmt.inl, itron/inline/rtems/itron/task.inl,
	itron/inline/rtems/itron/time.inl,
	itron/inline/rtems/itron/vmempool.inl,
	itron/macros/rtems/itron/eventflags.inl,
	itron/macros/rtems/itron/fmempool.inl,
	itron/macros/rtems/itron/intr.inl, itron/macros/rtems/itron/mbox.inl,
	itron/macros/rtems/itron/msgbuffer.inl,
	itron/macros/rtems/itron/network.inl, itron/macros/rtems/itron/port.inl,
	itron/macros/rtems/itron/semaphore.inl,
	itron/macros/rtems/itron/sysmgmt.inl, itron/macros/rtems/itron/task.inl,
	itron/macros/rtems/itron/time.inl,
	itron/macros/rtems/itron/vmempool.inl, itron/src/can_wup.c,
	itron/src/chg_pri.c, itron/src/cre_mbf.c, itron/src/cre_mbx.c,
	itron/src/cre_sem.c, itron/src/cre_tsk.c, itron/src/del_mbf.c,
	itron/src/del_mbx.c, itron/src/del_sem.c, itron/src/del_tsk.c,
	itron/src/dis_dsp.c, itron/src/ena_dsp.c, itron/src/eventflags.c,
	itron/src/exd_tsk.c, itron/src/ext_tsk.c, itron/src/fmempool.c,
	itron/src/frsm_tsk.c, itron/src/get_tid.c, itron/src/itronintr.c,
	itron/src/itronsem.c, itron/src/itrontime.c, itron/src/mbox.c,
	itron/src/mboxtranslatereturncode.c, itron/src/msgbuffer.c,
	itron/src/msgbuffertranslatereturncode.c, itron/src/network.c,
	itron/src/port.c, itron/src/prcv_mbf.c, itron/src/prcv_mbx.c,
	itron/src/preq_sem.c, itron/src/psnd_mbf.c, itron/src/rcv_mbf.c,
	itron/src/rcv_mbx.c, itron/src/ref_mbf.c, itron/src/ref_mbx.c,
	itron/src/ref_sem.c, itron/src/ref_tsk.c, itron/src/rel_wai.c,
	itron/src/rot_rdq.c, itron/src/rsm_tsk.c, itron/src/sig_sem.c,
	itron/src/slp_tsk.c, itron/src/snd_mbf.c, itron/src/snd_mbx.c,
	itron/src/sta_tsk.c, itron/src/sus_tsk.c, itron/src/sysmgmt.c,
	itron/src/task.c, itron/src/ter_tsk.c, itron/src/trcv_mbf.c,
	itron/src/trcv_mbx.c, itron/src/tslp_tsk.c, itron/src/tsnd_mbf.c,
	itron/src/twai_sem.c, itron/src/vmempool.c, itron/src/wai_sem.c,
	itron/src/wup_tsk.c, posix/include/rtems/posix/cond.h,
	posix/include/rtems/posix/condmp.h, posix/include/rtems/posix/config.h,
	posix/include/rtems/posix/intr.h, posix/include/rtems/posix/key.h,
	posix/include/rtems/posix/mqueue.h,
	posix/include/rtems/posix/mqueuemp.h, posix/include/rtems/posix/mutex.h,
	posix/include/rtems/posix/mutexmp.h,
	posix/include/rtems/posix/posixapi.h,
	posix/include/rtems/posix/pthread.h,
	posix/include/rtems/posix/pthreadmp.h,
	posix/include/rtems/posix/ptimer.h,
	posix/include/rtems/posix/semaphore.h,
	posix/include/rtems/posix/semaphoremp.h,
	posix/inline/rtems/posix/cond.inl, posix/inline/rtems/posix/intr.inl,
	posix/inline/rtems/posix/key.inl, posix/inline/rtems/posix/mqueue.inl,
	posix/inline/rtems/posix/mutex.inl,
	posix/inline/rtems/posix/pthread.inl,
	posix/inline/rtems/posix/semaphore.inl,
	posix/inline/rtems/posix/timer.inl, posix/macros/rtems/posix/cond.inl,
	posix/macros/rtems/posix/intr.inl, posix/macros/rtems/posix/key.inl,
	posix/macros/rtems/posix/mqueue.inl, posix/macros/rtems/posix/mutex.inl,
	posix/macros/rtems/posix/pthread.inl,
	posix/macros/rtems/posix/semaphore.inl,
	posix/macros/rtems/posix/timer.inl, posix/src/alarm.c, posix/src/kill.c,
	posix/src/killinfo.c, posix/src/mqueuetranslatereturncode.c,
	posix/src/pause.c, posix/src/pthreadattrdestroy.c,
	posix/src/pthreadattrgetdetachstate.c,
	posix/src/pthreadattrgetinheritsched.c,
	posix/src/pthreadattrgetschedparam.c,
	posix/src/pthreadattrgetschedpolicy.c, posix/src/pthreadattrgetscope.c,
	posix/src/pthreadattrgetstackaddr.c,
	posix/src/pthreadattrgetstacksize.c, posix/src/pthreadattrinit.c,
	posix/src/pthreadattrsetdetachstate.c,
	posix/src/pthreadattrsetinheritsched.c,
	posix/src/pthreadattrsetschedparam.c,
	posix/src/pthreadattrsetschedpolicy.c, posix/src/pthreadattrsetscope.c,
	posix/src/pthreadattrsetstackaddr.c,
	posix/src/pthreadattrsetstacksize.c, posix/src/pthreadcreate.c,
	posix/src/pthreaddetach.c, posix/src/pthreadequal.c,
	posix/src/pthreadexit.c, posix/src/pthreadgetcpuclockid.c,
	posix/src/pthreadgetcputime.c, posix/src/pthreadgetschedparam.c,
	posix/src/pthreadjoin.c, posix/src/pthreadkill.c,
	posix/src/pthreadonce.c, posix/src/pthreadself.c,
	posix/src/pthreadsetcputime.c, posix/src/pthreadsetschedparam.c,
	posix/src/pthreadsigmask.c, posix/src/sigaction.c,
	posix/src/sigaddset.c, posix/src/sigdelset.c, posix/src/sigemptyset.c,
	posix/src/sigfillset.c, posix/src/sigismember.c, posix/src/signal_2.c,
	posix/src/sigpending.c, posix/src/sigprocmask.c, posix/src/sigqueue.c,
	posix/src/sigsuspend.c, posix/src/sigtimedwait.c, posix/src/sigwait.c,
	posix/src/sigwaitinfo.c, posix/src/ualarm.c,
	score/include/rtems/debug.h, score/include/rtems/seterr.h,
	score/include/rtems/system.h, score/include/rtems/score/address.h,
	score/include/rtems/score/apiext.h,
	score/include/rtems/score/apimutex.h,
	score/include/rtems/score/bitfield.h, score/include/rtems/score/chain.h,
	score/include/rtems/score/context.h, score/include/rtems/score/copyrt.h,
	score/include/rtems/score/coremsg.h,
	score/include/rtems/score/coremutex.h,
	score/include/rtems/score/coresem.h, score/include/rtems/score/heap.h,
	score/include/rtems/score/interr.h, score/include/rtems/score/isr.h,
	score/include/rtems/score/mpci.h, score/include/rtems/score/mppkt.h,
	score/include/rtems/score/object.h,
	score/include/rtems/score/objectmp.h,
	score/include/rtems/score/priority.h, score/include/rtems/score/stack.h,
	score/include/rtems/score/states.h,
	score/include/rtems/score/sysstate.h,
	score/include/rtems/score/thread.h,
	score/include/rtems/score/threadmp.h,
	score/include/rtems/score/threadq.h, score/include/rtems/score/tod.h,
	score/include/rtems/score/tqdata.h, score/include/rtems/score/userext.h,
	score/include/rtems/score/watchdog.h,
	score/include/rtems/score/wkspace.h,
	score/inline/rtems/score/address.inl,
	score/inline/rtems/score/chain.inl,
	score/inline/rtems/score/coremsg.inl,
	score/inline/rtems/score/coremutex.inl,
	score/inline/rtems/score/coresem.inl, score/inline/rtems/score/heap.inl,
	score/inline/rtems/score/isr.inl, score/inline/rtems/score/mppkt.inl,
	score/inline/rtems/score/object.inl,
	score/inline/rtems/score/objectmp.inl,
	score/inline/rtems/score/priority.inl,
	score/inline/rtems/score/stack.inl, score/inline/rtems/score/states.inl,
	score/inline/rtems/score/sysstate.inl,
	score/inline/rtems/score/thread.inl,
	score/inline/rtems/score/threadmp.inl, score/inline/rtems/score/tod.inl,
	score/inline/rtems/score/tqdata.inl,
	score/inline/rtems/score/userext.inl,
	score/inline/rtems/score/watchdog.inl,
	score/inline/rtems/score/wkspace.inl,
	score/macros/rtems/score/address.inl,
	score/macros/rtems/score/chain.inl,
	score/macros/rtems/score/coremsg.inl,
	score/macros/rtems/score/coremutex.inl,
	score/macros/rtems/score/coresem.inl, score/macros/rtems/score/heap.inl,
	score/macros/rtems/score/isr.inl, score/macros/rtems/score/mppkt.inl,
	score/macros/rtems/score/object.inl,
	score/macros/rtems/score/objectmp.inl,
	score/macros/rtems/score/priority.inl,
	score/macros/rtems/score/stack.inl, score/macros/rtems/score/states.inl,
	score/macros/rtems/score/sysstate.inl,
	score/macros/rtems/score/thread.inl,
	score/macros/rtems/score/threadmp.inl, score/macros/rtems/score/tod.inl,
	score/macros/rtems/score/tqdata.inl,
	score/macros/rtems/score/userext.inl,
	score/macros/rtems/score/watchdog.inl,
	score/macros/rtems/score/wkspace.inl, score/src/apiext.c,
	score/src/chain.c, score/src/coremsg.c, score/src/coremsgbroadcast.c,
	score/src/coremsgclose.c, score/src/coremsgflush.c,
	score/src/coremsgflushsupp.c, score/src/coremsgflushwait.c,
	score/src/coremsginsert.c, score/src/coremsgseize.c,
	score/src/coremsgsubmit.c, score/src/coremutex.c,
	score/src/coremutexflush.c, score/src/coremutexseize.c,
	score/src/coremutexsurrender.c, score/src/coresem.c,
	score/src/coresemflush.c, score/src/coresemseize.c,
	score/src/coresemsurrender.c, score/src/coretod.c,
	score/src/coretodset.c, score/src/coretodtickle.c,
	score/src/coretodtoseconds.c, score/src/coretodvalidate.c,
	score/src/heap.c, score/src/heapallocate.c, score/src/heapextend.c,
	score/src/heapfree.c, score/src/heapgetinfo.c,
	score/src/heapsizeofuserarea.c, score/src/heapwalk.c,
	score/src/interr.c, score/src/isr.c, score/src/iterateoverthreads.c,
	score/src/mpci.c, score/src/object.c, score/src/objectallocate.c,
	score/src/objectallocatebyindex.c, score/src/objectclearname.c,
	score/src/objectcomparenameraw.c, score/src/objectcomparenamestring.c,
	score/src/objectcopynameraw.c, score/src/objectcopynamestring.c,
	score/src/objectextendinformation.c, score/src/objectfree.c,
	score/src/objectget.c, score/src/objectgetbyindex.c,
	score/src/objectgetisr.c, score/src/objectgetnext.c,
	score/src/objectgetnoprotection.c, score/src/objectidtoname.c,
	score/src/objectinitializeinformation.c, score/src/objectmp.c,
	score/src/objectnametoid.c, score/src/objectshrinkinformation.c,
	score/src/thread.c, score/src/threadchangepriority.c,
	score/src/threadclearstate.c, score/src/threadclose.c,
	score/src/threadcreateidle.c, score/src/threaddelayended.c,
	score/src/threaddispatch.c, score/src/threadevaluatemode.c,
	score/src/threadget.c, score/src/threadhandler.c,
	score/src/threadidlebody.c, score/src/threadinitialize.c,
	score/src/threadloadenv.c, score/src/threadmp.c, score/src/threadq.c,
	score/src/threadqdequeue.c, score/src/threadqdequeuefifo.c,
	score/src/threadqdequeuepriority.c, score/src/threadqenqueue.c,
	score/src/threadqenqueuefifo.c, score/src/threadqenqueuepriority.c,
	score/src/threadqextract.c, score/src/threadqextractfifo.c,
	score/src/threadqextractpriority.c, score/src/threadqextractwithproxy.c,
	score/src/threadqfirst.c, score/src/threadqfirstfifo.c,
	score/src/threadqfirstpriority.c, score/src/threadqflush.c,
	score/src/threadqtimeout.c, score/src/threadready.c,
	score/src/threadreset.c, score/src/threadresettimeslice.c,
	score/src/threadrestart.c, score/src/threadresume.c,
	score/src/threadrotatequeue.c, score/src/threadsetpriority.c,
	score/src/threadsetstate.c, score/src/threadsettransient.c,
	score/src/threadstackallocate.c, score/src/threadstackfree.c,
	score/src/threadstart.c, score/src/threadstartmultitasking.c,
	score/src/threadsuspend.c, score/src/threadtickletimeslice.c,
	score/src/threadyieldprocessor.c, score/src/userext.c,
	score/src/watchdog.c, score/src/watchdogadjust.c,
	score/src/watchdoginsert.c, score/src/watchdogremove.c,
	score/src/watchdogtickle.c, score/src/wkspace.c,
	sapi/include/confdefs.h, sapi/include/rtems/config.h,
	sapi/include/rtems/extension.h, sapi/include/rtems/fatal.h,
	sapi/include/rtems/init.h, sapi/include/rtems/io.h,
	sapi/include/rtems/mptables.h, sapi/include/rtems/sptables.h,
	sapi/include/rtems/sptables.h.in, sapi/inline/rtems/extension.inl,
	sapi/macros/rtems/extension.inl, sapi/src/debug.c, sapi/src/exinit.c,
	sapi/src/extension.c, sapi/src/extensioncreate.c,
	sapi/src/extensiondelete.c, sapi/src/extensionident.c, sapi/src/fatal.c,
	sapi/src/io.c, sapi/src/itronapi.c, sapi/src/posixapi.c,
	sapi/src/rtemsapi.c, rtems/include/rtems.h,
	rtems/include/rtems/rtems/asr.h, rtems/include/rtems/rtems/attr.h,
	rtems/include/rtems/rtems/cache.h, rtems/include/rtems/rtems/clock.h,
	rtems/include/rtems/rtems/config.h, rtems/include/rtems/rtems/dpmem.h,
	rtems/include/rtems/rtems/event.h, rtems/include/rtems/rtems/eventmp.h,
	rtems/include/rtems/rtems/eventset.h, rtems/include/rtems/rtems/intr.h,
	rtems/include/rtems/rtems/message.h, rtems/include/rtems/rtems/modes.h,
	rtems/include/rtems/rtems/mp.h, rtems/include/rtems/rtems/msgmp.h,
	rtems/include/rtems/rtems/options.h, rtems/include/rtems/rtems/part.h,
	rtems/include/rtems/rtems/partmp.h, rtems/include/rtems/rtems/ratemon.h,
	rtems/include/rtems/rtems/region.h,
	rtems/include/rtems/rtems/regionmp.h,
	rtems/include/rtems/rtems/rtemsapi.h, rtems/include/rtems/rtems/sem.h,
	rtems/include/rtems/rtems/semmp.h, rtems/include/rtems/rtems/signal.h,
	rtems/include/rtems/rtems/signalmp.h,
	rtems/include/rtems/rtems/status.h, rtems/include/rtems/rtems/support.h,
	rtems/include/rtems/rtems/taskmp.h, rtems/include/rtems/rtems/tasks.h,
	rtems/include/rtems/rtems/timer.h, rtems/include/rtems/rtems/types.h,
	rtems/inline/rtems/rtems/asr.inl, rtems/inline/rtems/rtems/attr.inl,
	rtems/inline/rtems/rtems/dpmem.inl, rtems/inline/rtems/rtems/event.inl,
	rtems/inline/rtems/rtems/eventset.inl,
	rtems/inline/rtems/rtems/message.inl,
	rtems/inline/rtems/rtems/modes.inl,
	rtems/inline/rtems/rtems/options.inl, rtems/inline/rtems/rtems/part.inl,
	rtems/inline/rtems/rtems/ratemon.inl,
	rtems/inline/rtems/rtems/region.inl, rtems/inline/rtems/rtems/sem.inl,
	rtems/inline/rtems/rtems/status.inl,
	rtems/inline/rtems/rtems/support.inl,
	rtems/inline/rtems/rtems/tasks.inl, rtems/inline/rtems/rtems/timer.inl,
	rtems/macros/rtems/rtems/asr.inl, rtems/macros/rtems/rtems/attr.inl,
	rtems/macros/rtems/rtems/dpmem.inl, rtems/macros/rtems/rtems/event.inl,
	rtems/macros/rtems/rtems/eventset.inl,
	rtems/macros/rtems/rtems/message.inl,
	rtems/macros/rtems/rtems/modes.inl,
	rtems/macros/rtems/rtems/options.inl, rtems/macros/rtems/rtems/part.inl,
	rtems/macros/rtems/rtems/ratemon.inl,
	rtems/macros/rtems/rtems/region.inl, rtems/macros/rtems/rtems/sem.inl,
	rtems/macros/rtems/rtems/status.inl,
	rtems/macros/rtems/rtems/support.inl,
	rtems/macros/rtems/rtems/tasks.inl, rtems/macros/rtems/rtems/timer.inl,
	rtems/src/attr.c, rtems/src/clockget.c, rtems/src/clockset.c,
	rtems/src/clocktick.c, rtems/src/dpmem.c, rtems/src/dpmemcreate.c,
	rtems/src/dpmemdelete.c, rtems/src/dpmemexternal2internal.c,
	rtems/src/dpmemident.c, rtems/src/dpmeminternal2external.c,
	rtems/src/event.c, rtems/src/eventmp.c, rtems/src/eventreceive.c,
	rtems/src/eventseize.c, rtems/src/eventsend.c,
	rtems/src/eventsurrender.c, rtems/src/eventtimeout.c, rtems/src/intr.c,
	rtems/src/intrbody.c, rtems/src/intrcatch.c, rtems/src/mp.c,
	rtems/src/msg.c, rtems/src/msgmp.c, rtems/src/msgqallocate.c,
	rtems/src/msgqbroadcast.c, rtems/src/msgqcreate.c,
	rtems/src/msgqdelete.c, rtems/src/msgqflush.c,
	rtems/src/msgqgetnumberpending.c, rtems/src/msgqident.c,
	rtems/src/msgqreceive.c, rtems/src/msgqsend.c, rtems/src/msgqsubmit.c,
	rtems/src/msgqtranslatereturncode.c, rtems/src/msgqurgent.c,
	rtems/src/part.c, rtems/src/partcreate.c, rtems/src/partdelete.c,
	rtems/src/partgetbuffer.c, rtems/src/partident.c, rtems/src/partmp.c,
	rtems/src/partreturnbuffer.c, rtems/src/ratemon.c,
	rtems/src/ratemoncancel.c, rtems/src/ratemoncreate.c,
	rtems/src/ratemondelete.c, rtems/src/ratemongetstatus.c,
	rtems/src/ratemonident.c, rtems/src/ratemonperiod.c,
	rtems/src/ratemontimeout.c, rtems/src/region.c,
	rtems/src/regioncreate.c, rtems/src/regiondelete.c,
	rtems/src/regionextend.c, rtems/src/regiongetinfo.c,
	rtems/src/regiongetsegment.c, rtems/src/regiongetsegmentsize.c,
	rtems/src/regionident.c, rtems/src/regionmp.c,
	rtems/src/regionreturnsegment.c, rtems/src/rtclock.c,
	rtems/src/rtemsidtoname.c, rtems/src/rtemstimer.c, rtems/src/sem.c,
	rtems/src/semcreate.c, rtems/src/semdelete.c, rtems/src/semflush.c,
	rtems/src/semident.c, rtems/src/semmp.c, rtems/src/semobtain.c,
	rtems/src/semrelease.c, rtems/src/semtranslatereturncode.c,
	rtems/src/signal.c, rtems/src/signalcatch.c, rtems/src/signalmp.c,
	rtems/src/signalsend.c, rtems/src/taskcreate.c, rtems/src/taskdelete.c,
	rtems/src/taskgetnote.c, rtems/src/taskident.c,
	rtems/src/taskinitusers.c, rtems/src/taskissuspended.c,
	rtems/src/taskmode.c, rtems/src/taskmp.c, rtems/src/taskrestart.c,
	rtems/src/taskresume.c, rtems/src/tasks.c, rtems/src/tasksetnote.c,
	rtems/src/tasksetpriority.c, rtems/src/taskstart.c,
	rtems/src/tasksuspend.c, rtems/src/taskvariableadd.c,
	rtems/src/taskvariabledelete.c, rtems/src/taskvariableget.c,
	rtems/src/taskwakeafter.c, rtems/src/taskwakewhen.c,
	rtems/src/timercancel.c, rtems/src/timercreate.c,
	rtems/src/timerdelete.c, rtems/src/timerfireafter.c,
	rtems/src/timerfirewhen.c, rtems/src/timergetinfo.c,
	rtems/src/timerident.c, rtems/src/timerreset.c, rtems/src/timerserver.c,
	rtems/src/timerserverfireafter.c, rtems/src/timerserverfirewhen.c,
	libmisc/cpuuse/cpuuse.c, libmisc/cpuuse/cpuuse.h,
	libmisc/devnull/devnull.c, libmisc/devnull/devnull.h,
	libmisc/dummy/dummy.c, libmisc/dumpbuf/dumpbuf.c,
	libmisc/dumpbuf/dumpbuf.h, libmisc/fsmount/fsmount.c,
	libmisc/fsmount/fsmount.h, libmisc/serdbg/serdbgio.c,
	libmisc/serdbg/termios_printk.c, libmisc/stackchk/check.c,
	libmisc/stackchk/internal.h, libmisc/stackchk/stackchk.h,
	libmisc/untar/untar.c, libmisc/untar/untar.h,
	libblock/include/rtems/ide_part_table.h, libblock/src/ata.c,
	libblock/src/ide_part_table.c, libfs/src/dosfs/dosfs.h,
	libfs/src/dosfs/fat.h, libfs/src/dosfs/fat_fat_operations.h,
	libfs/src/dosfs/fat_file.h, libfs/src/dosfs/msdos.h,
	libfs/src/dosfs/msdos_create.c, libfs/src/dosfs/msdos_dir.c,
	libfs/src/dosfs/msdos_eval.c, libfs/src/dosfs/msdos_file.c,
	libfs/src/dosfs/msdos_free.c, libfs/src/dosfs/msdos_fsunmount.c,
	libfs/src/dosfs/msdos_handlers_dir.c,
	libfs/src/dosfs/msdos_handlers_file.c, libfs/src/dosfs/msdos_init.c,
	libfs/src/dosfs/msdos_initsupp.c, libfs/src/dosfs/msdos_misc.c,
	libfs/src/dosfs/msdos_mknod.c, libfs/src/dosfs/msdos_node_type.c,
	libfs/src/imfs/deviceio.c, libfs/src/imfs/imfs.h,
	libfs/src/imfs/imfs_chown.c, libfs/src/imfs/imfs_config.c,
	libfs/src/imfs/imfs_creat.c, libfs/src/imfs/imfs_debug.c,
	libfs/src/imfs/imfs_directory.c, libfs/src/imfs/imfs_eval.c,
	libfs/src/imfs/imfs_fchmod.c, libfs/src/imfs/imfs_fcntl.c,
	libfs/src/imfs/imfs_fdatasync.c, libfs/src/imfs/imfs_free.c,
	libfs/src/imfs/imfs_fsunmount.c, libfs/src/imfs/imfs_getchild.c,
	libfs/src/imfs/imfs_gtkn.c, libfs/src/imfs/imfs_handlers_device.c,
	libfs/src/imfs/imfs_handlers_directory.c,
	libfs/src/imfs/imfs_handlers_link.c,
	libfs/src/imfs/imfs_handlers_memfile.c, libfs/src/imfs/imfs_init.c,
	libfs/src/imfs/imfs_initsupp.c, libfs/src/imfs/imfs_link.c,
	libfs/src/imfs/imfs_mknod.c, libfs/src/imfs/imfs_mount.c,
	libfs/src/imfs/imfs_ntype.c, libfs/src/imfs/imfs_readlink.c,
	libfs/src/imfs/imfs_rmnod.c, libfs/src/imfs/imfs_stat.c,
	libfs/src/imfs/imfs_symlink.c, libfs/src/imfs/imfs_unixstub.c,
	libfs/src/imfs/imfs_unlink.c, libfs/src/imfs/imfs_unmount.c,
	libfs/src/imfs/imfs_utime.c, libfs/src/imfs/ioman.c,
	libfs/src/imfs/linearfile.c, libfs/src/imfs/memfile.c,
	libfs/src/imfs/miniimfs_init.c, libcsupport/include/chain.h,
	libcsupport/include/clockdrv.h, libcsupport/include/console.h,
	libcsupport/include/iosupp.h, libcsupport/include/rtc.h,
	libcsupport/include/spurious.h, libcsupport/include/timerdrv.h,
	libcsupport/include/vmeintr.h, libcsupport/include/motorola/mc68230.h,
	libcsupport/include/rtems/libcsupport.h,
	libcsupport/include/rtems/libio.h, libcsupport/include/rtems/libio_.h,
	libcsupport/include/rtems/termiostypes.h,
	libcsupport/include/sys/termios.h, libcsupport/include/zilog/z8036.h,
	libcsupport/include/zilog/z8530.h, libcsupport/include/zilog/z8536.h,
	libcsupport/src/__brk.c, libcsupport/src/__gettod.c,
	libcsupport/src/__sbrk.c, libcsupport/src/__times.c,
	libcsupport/src/access.c, libcsupport/src/base_fs.c,
	libcsupport/src/cfgetispeed.c, libcsupport/src/cfgetospeed.c,
	libcsupport/src/cfsetispeed.c, libcsupport/src/cfsetospeed.c,
	libcsupport/src/chdir.c, libcsupport/src/chmod.c,
	libcsupport/src/chown.c, libcsupport/src/chroot.c,
	libcsupport/src/close.c, libcsupport/src/ctermid.c,
	libcsupport/src/dup.c, libcsupport/src/dup2.c, libcsupport/src/eval.c,
	libcsupport/src/fchdir.c, libcsupport/src/fchmod.c,
	libcsupport/src/fcntl.c, libcsupport/src/fdatasync.c,
	libcsupport/src/fpathconf.c, libcsupport/src/fs_null_handlers.c,
	libcsupport/src/fstat.c, libcsupport/src/fsync.c,
	libcsupport/src/ftruncate.c, libcsupport/src/getdents.c,
	libcsupport/src/getpwent.c, libcsupport/src/hosterr.c,
	libcsupport/src/ioctl.c, libcsupport/src/isatty.c,
	libcsupport/src/libio.c, libcsupport/src/libio_sockets.c,
	libcsupport/src/link.c, libcsupport/src/lseek.c,
	libcsupport/src/lstat.c, libcsupport/src/malloc.c,
	libcsupport/src/mallocfreespace.c, libcsupport/src/mkdir.c,
	libcsupport/src/mkfifo.c, libcsupport/src/mknod.c,
	libcsupport/src/mount.c, libcsupport/src/newlibc.c,
	libcsupport/src/no_libc.c, libcsupport/src/no_posix.c,
	libcsupport/src/open.c, libcsupport/src/pathconf.c,
	libcsupport/src/pipe.c, libcsupport/src/privateenv.c,
	libcsupport/src/read.c, libcsupport/src/readlink.c,
	libcsupport/src/rewinddir.c, libcsupport/src/rmdir.c,
	libcsupport/src/seekdir.c, libcsupport/src/stat.c,
	libcsupport/src/symlink.c, libcsupport/src/sync.c,
	libcsupport/src/tcdrain.c, libcsupport/src/tcflow.c,
	libcsupport/src/tcflush.c, libcsupport/src/tcgetattr.c,
	libcsupport/src/tcgetprgrp.c, libcsupport/src/tcsendbreak.c,
	libcsupport/src/tcsetattr.c, libcsupport/src/tcsetpgrp.c,
	libcsupport/src/telldir.c, libcsupport/src/termios.c,
	libcsupport/src/termiosinitialize.c, libcsupport/src/truncate.c,
	libcsupport/src/umask.c, libcsupport/src/unixlibc.c,
	libcsupport/src/unlink.c, libcsupport/src/unmount.c,
	libcsupport/src/utime.c, libcsupport/src/write.c,
	libnetworking/rtems/mkrootfs.c, libnetworking/rtems/mkrootfs.h: URL for
	license changed.
	PR 479/rtems_misc
	* libcsupport/src/malloc.c: Per multiple standards realloc does not free
	the original memory if the allocation of the requested larger block
	fails.

2003-09-03	Joel Sherrill <joel@OARcorp.com>

	* libfs/msdos_create.c: Remove unused variable warning.

2003-09-02	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/src/open.c: Fix typo.
	* libcsupport/src/malloc.c: Remove test define left in.

2003-09-02	Jiri Gaisler <jiri@gaisler.com>

	PR 476/networking
	* libnetworking/machine/in_cksum.h: Fix in_cksum calculation on SPARC.

2003-09-02	Ilya Alexeev <ilya@continuum.ru>

	PR 472/filesystem
	src/malloc.c: Need to include apimutex.h when MALLOC_STATS is defined.

2003-08-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-top.m4: Add RTEMS_API.
	AC_DEFAULT_PREFIX([/opt/rtems-][RTEMS_API]).

2003-08-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-debug.m4: Remove.
	* aclocal/enable-rtems-debug.m4, aclocal/check-rtems-debug.m4: New
	(Split out from rtems-debug.m4).
	* automake/local.am: Remove "debug".
	PR 449/rtems:
	* posix/src/getegid.c, posix/src/geteuid.c, posix/src/getgid.c,
	posix/src/getgroups.c, posix/src/getlogin.c, posix/src/getpgrp.c,
	posix/src/getpid.c, posix/src/getppid.c, posix/src/getuid.c,
	posix/src/setpgid.c, posix/src/setsid.c: Remove (Moved to
	../libcsupport/src).
	* posix/Makefile.am: Reflect changes above.
	PR 449/rtems:
	* libcsupport/src/getegid.c, libcsupport/src/geteuid.c,
	libcsupport/src/getgid.c, libcsupport/src/getgroups.c,
	libcsupport/src/getlogin.c, libcsupport/src/getpgrp.c,
	libcsupport/src/getpid.c, libcsupport/src/getppid.c,
	libcsupport/src/getuid.c, libcsupport/src/setpgid.c,
	libcsupport/src/setsid.c: New (Copied from ../posix/src).
	* libcsupport/src/no_posix: Remove getpid and _getpid_r.
	* libcsupport/Makefile.am: Reflect changes above.

2003-08-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/fsmount/Makefile.am: Fix path to automake-includes.

2003-08-14	Joel Sherrill <joel@OARcorp.com>

	* posix/src/mqueuenametoid.c, posix/src/semaphorenametoid.c: Added ID to
	name lookup service and changed name of id/name translation status code.
	This propagated to multiple functions. The user API service added was
	rtems_object_id_to_name().
	PR 92/rtems
	* posix/Makefile.am, posix/src/alarm.c, posix/src/psignal.c: Added
	ualarm() and usleep().
	* posix/src/ualarm.c, posix/src/usleep.c: New files.
	* score/Makefile.am, score/include/rtems/score/object.h,
	score/include/rtems/score/objectmp.h, score/src/objectmp.c,
	score/src/objectnametoid.c: Added ID to name lookup service and changed
	name of id/name translation status code. This propagated to multiple
	functions. The user API service added was rtems_object_id_to_name().
	* score/src/objectidtoname.c: New file.
	PR 408/filesystem
	* score/score/Makefile.am, score/score/include/rtems/score/thread.h:
	Added sync() service. As part of adding this service, the new RTEMS
	service rtems_iterate_over_all_threads() was also added. This new
	service makes it easier to iterate over all the tasks/threads in a
	system and perform an action on them.
	* score/score/src/iterateoverthreads.c: New file.
	* score/ChangeLog: Fixed screwup.
	* sapi/src/extensionident.c, rtems/Makefile.am, rtems/include/rtems.h,
	rtems/include/rtems/rtems/status.h, rtems/src/dpmemident.c,
	rtems/src/msgqident.c, rtems/src/partident.c, rtems/src/ratemonident.c,
	rtems/src/regionident.c, rtems/src/semident.c, rtems/src/taskident.c,
	rtems/src/timerident.c: Added ID to name lookup service and changed name
	of id/name translation status code. This propagated to multiple
	functions. The user API service added was rtems_object_id_to_name().
	* rtems/src/rtemsidtoname.c: New file.
	PR 408/filesystem
	* libmisc/cpuuse/cpuuse.c: Added sync() service. As part of adding this
	service, the new RTEMS service rtems_iterate_over_all_threads() was also
	added. This new service makes it easier to iterate over all the
	tasks/threads in a system and perform an action on them. This change is
	to use the new thread iteration service.
	* libcsupport/Makefile.am: Add fileio to list of interactive tests.
	* libcsupport/src/sync.c: New (Copied from ../posix/src). New file.

2003-08-13	Joel Sherrill <joel@OARcorp.com>

	* libmisc/fsmount/.cvsignore: New file.

2003-08-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Use rtems-bugs@rtems.com as bug report email address.

2003-08-11	Joel Sherrill <joel@OARcorp.com>

	* configure.ac: Removed duplicate entry.

2003-08-08	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add libmisc/fsmount/Makefile.

2003-08-06	Till Strauman <strauman@slac.stanford.edu>

	PR 435/networking
	* libnetworking/rtems/rtems_showifstat.c: rtems_showifstat misses
	printing  the netmask.

2003-08-06	Thomas Doerfler<Thomas.Doerfler@imd-systems.de>

	PR 369/filesystem
	* libmisc/Makefile.am, libmisc/shell/cmds.c, libmisc/wrapup/Makefile.am:
	sample application to show the use of the DOSFS functions.
	* libmisc/fsmount/Makefile.am, libmisc/fsmount/README,
	libmisc/fsmount/fsmount.c, libmisc/fsmount/fsmount.h: New files.

2003-08-05	Till Strauman <strauman@slac.stanford.edu>

	PR 436/rtems_misc
	* libmisc/monitor/mon-monitor.c: monitor registered commands list
	manipulation bugs.
	PR 442/filesystem
	* libcsupport/src/open.c: file never closed if ftruncate() fails in
	open().

2003-08-05	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	PR 440/filesystem
	* libfs/src/dosfs/fat_fat_operations.c: Improve write data speed for
	DOSFS FAT12/FAT16 systems.
	PR 439/filesystem
	* libfs/src/dosfs/fat_file.c: flush temporary buffer when closing files.

2003-08-05	<djc915@mail.usask.ca>

	PR 443/filesystem
	* libfs/src/imfs/deviceio.c: deviceio.c mishandles return codes.

2003-08-04	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	PR 441/filesystem
	* libfs/src/dosfs/msdos.h, libfs/src/dosfs/msdos_create.c,
	libfs/src/dosfs/msdos_file.c, libfs/src/dosfs/msdos_init.c,
	libfs/src/dosfs/msdos_mknod.c: add rename support to DOSFS.

2003-07-24	Jennifer Averett <jennifer.averett@OARcorp.com>

	PR 434/filesystem
	* libfs/src/imfs/imfs_init.c, libfs/src/imfs/miniimfs_init.c: Modified
	to return error code.
	* libfs/src/imfs/imfs_initsup.c: Modified to set error upon memory
	failure.

2003-07-18	Till Straumann <strauman@slac.stanford.edu>

	PR 430/rtems
	* score/include/rtems/score/watchdog.h: _Watchdog_Ticks_since_boot
	should be a VOLATILE variable.
	* score/src/watchdoginsert.c: 'restart' algorithm needs to enforce
	reloading the list head in case a TICK interrupt during ISR_Flash()
	modified the list.  This is achieved by a proper VOLATILE cast. Also
	_Watchdog_Sync_count++ should be protected by _ISR_Disable (prevent
	corruption in case ISR calls watchdoginsert).
	* score/src/watchdogadjust.c: ISR protection added.
	* score/src/watchdogtickle.c: ISR protection added. NOTE: PowerPC BSPs
	using the new exception processing MUST BE UPDATED to maintain
	_ISR_Nest_level. See also PR288 which provides fixes for the affected
	BSPs distributed with RTEMS.

2003-07-16	Joel Sherrill <joel@OARcorp.com>

	* libfs/ChangeLog: Correct format.

2003-07-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Remove '/' after $(DESTDIR).
	* wrapup/Makefile.am: Remove bogus $(MULTISUBDIR).

2003-07-15	Chris Johns <cjohns@cybertec.com.au>

	PR 431/filesystem
	* libfs/src/dosfs/msdos.h: MSDOS Volume semaphore timeout is now NO
	TIMEOUT. MSDOS volume opertations will wait for ever.

2003-07-08	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Merge-in librpc/configure.ac.
	* Makefile.am: Add librpc to SUBDIRS. Remove @subdirs@.
	* configure.ac: Merge-in libcsupport/configure.ac.
	* Makefile.am: Add libcsupport to SUBDIRS.
	* configure.ac: Merge-in posix/configure.ac. Merge-in
	itron/configure.ac. Misc. cosmetical changes.
	* Makefile.am: Add posix, itron to SUBDIRS.
	* configure.ac: Merge-in libnetworking/configure.ac. Remove "rtems-"
	from RTEMS_VERSION. Add AC_CHECK_FUNCS([strsep strcasecmp snprintf]).
	* Makefile.am: Add libmisc to SUBDIRS.
	* configure.ac: Merge-in libmisc/configure.ac.
	* Makefile.am: Add libmisc to SUBDIRS.
	* configure.ac: Merge-in libfs/configure.ac.
	* Makefile.am: Add libfs to SUBDIRS.
	* configure.ac: Merge-in libblock/configure.ac.
	* Makefile.am: Add libblock to SUBDIRS.
	* configure.ac: Merge-in ada/configure.ac.
	* Makefile.am: Add ada to SUBDIRS.
	* itron/configure.ac: Remove (Merged-in into ../configure.ac).
	* itron/Makefile.am: Reflect having merged configure.ac into
	../configure.ac.
	* itron/src/config.h: New.
	* posix/configure.ac: Remove (Merged-in into ../configure.ac).
	* posix/Makefile.am: Reflect having merged configure.ac into
	../configure.ac.
	* posix/src/config.h: New.
	* score/cpu/Makefile.am: Add DIST_SUBDIRS = $(RTEMS_CPU).
	* libmisc/configure.ac: Remove (Merged into ../configure.ac).
	* libmisc/Makefile.am: Reflect having merged configure.ac into
	../configure.ac.
	* libmisc/capture/config.h: New.
	* libmisc/capture/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/cpuuse/config.h: New.
	* libmisc/cpuuse/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/devnull/config.h: New.
	* libmisc/devnull/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/dummy/config.h: New.
	* libmisc/dummy/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/dumpbuf/config.h: New.
	* libmisc/dumpbuf/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/monitor/config.h: New.
	* libmisc/monitor/Makefile.am: Add config.h.  Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/mw-fb/config.h: New.
	* libmisc/mw-fb/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/rtmonuse/config.h: New.
	* libmisc/rtmonuse/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/serdbg/config.h: New.
	* libmisc/serdbg/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/shell/config.h: New.
	* libmisc/shell/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/stackchk/config.h: New.
	* libmisc/stackchk/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/untar/config.h: New.
	* libmisc/untar/Makefile.am: Add config.h. Reflect having merged
	configure.ac into ../configure.ac.
	* libmisc/wrapup/Makefile.am: Reflect having merged configure.ac into
	../configure.ac.
	* libmisc/capture/capture-cli.c, libmisc/capture/capture.c,
	libmisc/cpuuse/cpuuse.c, libmisc/devnull/devnull.c,
	libmisc/dummy/dummy.c, libmisc/dumpbuf/dumpbuf.c,
	libmisc/monitor/mon-command.c, libmisc/monitor/mon-config.c,
	libmisc/monitor/mon-dname.c, libmisc/monitor/mon-driver.c,
	libmisc/monitor/mon-extension.c, libmisc/monitor/mon-itask.c,
	libmisc/monitor/mon-manager.c, libmisc/monitor/mon-monitor.c,
	libmisc/monitor/mon-mpci.c, libmisc/monitor/mon-object.c,
	libmisc/monitor/mon-prmisc.c, libmisc/monitor/mon-queue.c,
	libmisc/monitor/mon-server.c, libmisc/monitor/mon-symbols.c,
	libmisc/monitor/mon-task.c, libmisc/mw-fb/mw_fb.c,
	libmisc/mw-fb/mw_uid.c, libmisc/rtmonuse/rtmonuse.c,
	libmisc/serdbg/serdbg.c, libmisc/serdbg/serdbgio.c,
	libmisc/serdbg/termios_printk.c, libmisc/shell/cmds.c,
	libmisc/stackchk/check.c, libmisc/untar/untar.c: Add config-header
	support.
	* librpc/configure.ac: Remove (Merged-in into ../configure.ac).
	* librpc/Makefile.am, librpc/include/Makefile.am,
	librpc/src/Makefile.am, librpc/src/rpc/Makefile.am,
	librpc/src/xdr/Makefile.am: Reflect having merged configure.ac into
	../configure.ac.
	* libblock/configure.ac: Remove (Merged into ../configure.ac).
	* libblock/Makefile.am: Reflect having merged configure.ac into
	../configure.ac.
	* libfs/configure.ac: Remove (Merged-in into ../configure.ac).
	* libfs/Makefile.am, libfs/src/Makefile.am, libfs/src/dosfs/Makefile.am,
	libfs/src/imfs/Makefile.am: Reflect having merged configure.ac into
	../configure.ac.
	* libfs/src/dosfs/config.h: New.
	* libfs/src/dosfs/Makefile.am: Add config.h.
	* libfs/src/imfsfs/config.h: New.
	* libfs/src/imfs/Makefile.am: Add config.h.  Remove COMMON_C_FILES,
	DOC_FILES (Unused).
	* libfs/src/dosfs/fat.c: include config-header "config.h".
	* libfs/src/dosfs/fat_fat_operations.c, libfs/src/dosfs/fat_file.c,
	libfs/src/dosfs/msdos_conv.c: Ditto.
	* libcsupport/configure.ac: Remove (Merged-in into ../configure.ac).
	* libcsupport/Makefile.am: DOC_FILES = src/TODO src/CASES, Reflect
	having merged configure.ac into ../configure.ac.
	* libcsupport/src/config.h: New.
	* libnetworking/configure.ac: Remove (Merged into ../configure.ac).
	* libnetworking/Makefile.am, libnetworking/libc/Makefile.am,
	libnetworking/lib/Makefile.am, libnetworking/wrapup/Makefile.am: Reflect
	having merged configure.ac into ../configure.ac.
	* libnetworking/kern/kern_mib.c: Use RTEMS_VERSION to setup osrelease.

2003-07-08	Joel Sherrill <joel@OARcorp.com>

	PR 419/rtems
	* libcsupport/src/termios.c: Removed warning.

2003-07-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/configure.ac: Remove RTEMS_BSP from
	RTEMS_CHECK_MULTIPROCESSING.

2003-07-07	Joel Sherrill <joel@OARcorp.com>

	PR 417/rtems
	* score/src/coresemsurrender.c: Correct incorrect check for
	maximum_count reported by Sergei Organov <osv@topconrd.ru>.

2003-07-03	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20030703.

2003-07-02	Chris Johns <cjohns@cybertec.com.au>

	* libfs/src/dosfs/Makefile.am, libfs/src/dosfs/msdos.h,
	libfs/src/dosfs/msdos_conv.c, libfs/src/dosfs/msdos_create.c,
	libfs/src/dosfs/msdos_dir.c, libfs/src/dosfs/msdos_misc.c: Patch from
	Victor V. Vengerov <vvv@oktet.ru> to remove Linux code.
	* libfs/src/dosfs/fat.c, libfs/src/dosfs/fat.h: Comment have been
	updated.
	* libcsupport/include/rtems/libio.h, libcsupport/src/termios.c: Add the
	rtems_termios_bufsize call.

2003-06-13	Joel Sherrill <joel@OARcorp.com>

	* score/src/threadloadenv.c: Removed warnings.

2003-06-12	Joel Sherrill <joel@OARcorp.com>

	* score/src/objectmp.c, rtems/include/rtems/rtems/msgmp.h,
	rtems/include/rtems/rtems/partmp.h,
	rtems/include/rtems/rtems/regionmp.h, rtems/include/rtems/rtems/semmp.h,
	rtems/src/msgmp.c, rtems/src/partmp.c, rtems/src/regionmp.c,
	rtems/src/semmp.c: Removed warnings.

2003-06-10	Phil Torre <ptorre@zetron.com>

	PR 411/filesystem
	* libfs/src/imfs/imfs_unlink.c: Fix bug where renaming a memfile and
	then unlinking it causes a memory leak.

2003-06-04	Joel Sherrill <joel@OARcorp.com>

	* libmisc/stackchk/check.c, libblock/src/ide_part_table.c: Removed
	warnings.

2003-05-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* rtems/include/rtems/rtems/types.h: Include stdint.h.
	* libcsupport/Makefile.am: Conditionally install stdint.h/inttypes.h.
	* libcsupport/configure.ac: Check for system-stdint.h/inttypes.h.

2003-05-29	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/rtems/rtems_syscall.c: Removed warnings.

2003-05-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 409/core
	* include/Makefile.am: Add rtems/stdint.h.
	* include/rtems/stdint.h: New.
	PR 321/bsps
	* aclocal/env-rtemscpu.m4: Remove support for profile-variant.
	* automake/compile.am, automake/local.am: Ditto.
	PR 409:
	* rtems/include/rtems/rtems/types.h: Include rtems/stdint.h. Apply
	c99-types to typedef rtems_[un]signed[8|16|32|64].
	PR 409:
	* libcsupport/include/stdint.h: Include rtems/stdint.h.

2003-05-15	cjohns@cybertec.com.au  <cjohns@cybertec.com.au>

	* libnetworking/netinet/in.h: PR406 - Added INET_ADDRSTRLEN per the
	SUSv3 standard.

2003-05-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove LIBSUFFIX_VA (unused).

2003-05-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemscpu.m4: Merge-in env-rtemsbsp.m4.
	* aclocal/env-rtemsbsp.m4, aclocal/enable-rtemsbsp.m4: Remove.
	* aclocal/env-rtemscpu.m4: Remove stray '/' in setting up 
	project_libdir.

2003-04-17	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	PR 399/rtems_misc
	* libcsupport/src/termios.c: In canonical mode, when input is present in
	the input buffer that contains an EOL character and some following
	characters, a read call read data behind the EOL character, although it
	should stop reading with the EOL character.

2003-04-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/dummy/Makefile.am: Remove stray dummy.rel.
	* libcsupport/src/no_posix.c: include <reent.h> instead of <sys/reent.h>.

2003-04-17	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20030417.

2003-04-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 389/rtems
	* libcsupport/src/no_posix.c: Correct _kill_r() prototype and make it
	conditional on newlib.

2003-04-15	Joel Sherrill <joel@OARcorp.com>

	PR 388/networking
	* libnetworking/kern/kern_sysctl.c: Revert previous patch and use
	strlcpy() now that it is available. Also fixed some warnings.

2003-04-11	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20020411.

2003-04-03	Eri Valette <eric.valette@free.fr>

	PR 381/core
	* libcsupport/src/newlibc.c: Switch from using _REENT_INIT to
	_REEINT_INIT_PTR to fix strange run-time problem where EIP was corrupted
	on pc386 BSP.

2003-03-27	Joel Sherrill <joel@OARcorp.com>

	* libblock/Makefile.am: ATA code depends upon libchip/ide which is not
	allowed in the cpukit source code since it must be buildable independent
	of any BSP. These files were moved to libchip/ide.
	* libblock/include/rtems/ata.h, libblock/include/rtems/ata_internal.h,
	libblock/src/ata.c: Removed.
	* libnetworking/kern/kern_sysctl.c: Converted from BSP strlcpy() to
	strncpy().

2003-03-25	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	PR 367/filesystem
	* libblock/Makefile.am, libblock/include/rtems/ide_part_table.h,
	libblock/src/ata.c, libblock/src/ide_part_table.c: Some bugs were still
	present in the DOSFS implementation: - FAT12 did not work properly on
	Big-Endian machines - Some synchronization and error handling problems
	were present - Some legal codings for EOC were not recognized.
	PR 367/filesystem
	* libfs/src/dosfs/Makefile.am, libfs/src/dosfs/fat.c,
	libfs/src/dosfs/fat.h, libfs/src/dosfs/fat_fat_operations.c,
	libfs/src/dosfs/fat_file.c, libfs/src/dosfs/msdos.h,
	libfs/src/dosfs/msdos_dir.c: Some bugs were still present in the DOSFS
	implementation: - FAT12 did not work properly on Big-Endian machines. -
	Some synchronization and error handling problems were present. - Some
	legal codings for EOC were not recognized.

2003-03-25	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/rtems/rtems_bsdnet_malloc_starvation.c: Fixed name of
	include file.

2003-03-18	Till Straumann <strauman@slac.stanford.edu>

	PR 356/bsps
	* score/src/threadhandlerc: This patch makes RTEMS/PowerPC eabi
	compliant. Let Thread_Handler verify that _init/_main are non-NULL
	before calling them (gives the linker script/user more freedom to handle
	special cases).
	PR 356/bsps
	* libnetworking/sys/linker_set.h: This patch makes RTEMS/PowerPC eabi
	compliant. Declare all linker-script defined addresses as variables of
	unknown size and not as short objects like 'int', 'void*' etc.  Since
	only addresses are used and never those variable's values, the type used
	in a declaration is not important.

2003-03-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libcsupport/configure.ac: AC_CHECK_FUNCS(strlcpy strlcat).
	* libcsupport/src/strlcat.c, libcsupport/src/strlcpy.c: New (extracted
	from pppd/utils.c).
	* libcsupport/Makefile.am: Add BSD_C_FILES, strlcat.c, strlcpy.c.

2003-03-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Remove '/' after $(DESTDIR) to work around Cygwin
	mistreating paths.

2003-03-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Reflect changes to project_libdir.
	* aclocal/env-rtemscpu.m4: Remove obsolete comment. Add MULTISUBDIR to
	project_libdir.
	* aclocal/env-rtemscpu.m4: Remove RTEMS_ROOT (Unused).
	* aclocal/env-rtemsbsp.m4: Remove RTEMS_ROOT (Unused). Remove
	RTEMS_PROJECT_ROOT (Unused).
	* aclocal/tool-paths.m4: Delete.

2003-03-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove AC_CONFIG_AUX_DIR.
	* aclocal/rtems-top.m4: Add AC_CONFIG_AUX_DIR.
	* configure.ac: AC_PREREQ(2.57).
	* configure.ac: Remove sptables.h.in.
	* itron/configure.ac: Remove AC_CONFIG_AUX_DIR.
	* sapi/Makefile.am: Remove stray reference to sptables.h.in.
	* sapi/include/rtems/sptables.h: New.
	* sapi/include/rtems/sptables.h.in, sapi/include/.cvsignore,
	sapi/include/rtems/.cvsignore, sapi/inline/.cvsignore,
	sapi/inline/rtems/.cvsignore, sapi/macros/.cvsignore,
	sapi/macros/rtems/.cvsignore, sapi/src/.cvsignore: Remove.
	* libmisc/configure.ac, libblock/configure.ac, libfs/configure.ac,
	libcsupport/configure.ac, libnetworking/configure.ac: Remove
	AC_CONFIG_AUX_DIR.
	* libnetworking/netinet/in_chksum.c: Remove duplicate case to include
	in_chksum_arm.c.

2003-02-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove AC_SUBST(RTEMS_VERSION). AC_DEFINE(RTEMS_VERSION)
	to propagate it through cpuopts.h.
	* sapi/include/rtems/sptables.h.in: Remove RTEMS_VERSION (Moved to
	cpuopts.h).

2003-02-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: AC_SUBST(RTEMS_VERSION,_RTEMS_VERSION).

2003-02-20	Wolfram Wadepohl <W.Wadepohl@indumat.de>

	PR 357/rtems_misc
	* libcsupport/src/termios.c (rtems_termios_open): Fixed code the
	incorrectly checked that the wrong pointer during allocation was NULL.

2003-02-20	Till Straumann <strauman@slac.stanford.edu>

	PR 351/networking
	* libnetworking/nfs/bootp_subr.c: Fix ridiculous leak in bootp and use
	strdup_bootp_realloc() everywhere for sake of consistency.

2003-02-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/gcc-isystem.m4: New.
	* aclocal/gcc-specs.m4: Remove.
	* aclocal/prog-cc.m4: Remove RTEMS_GCC_SPECS. Add RTEMS_GCC_ISYSTEM.
	Reformat setting up RTEMS_CPPFLAGS.
	* automake/local.am: Introduce depend-gcc. Remove ${ARCH}.
	* automake/compile.am: Remove GCCSPECS, GCC_SPECS, CONFIG.CC, CC, CPP.
	Add ${ARCH}. depend-gcc.
	* aclocal/prog-cc.m4: Set up RTEMS_CPPFLAGS.
	* aclocal/env-rtemscpu.m4: Remove GCC_SPECS.
	* aclocal/env-rtemsbsp.m4: Remove GCC_SPECS. capture/capture-cli.c: Add
	proper definition to avoid compiler warnings. Apply int = getchar().
	* libcsupport/src/privateenv.c: Fix prototype for free_user_env.

2003-02-14	Till Straumann <strauman@slac.stanford.edu>

	PR 352/rtems_misc
	* libmisc/shell/shell.c: make rtems_shell main task an FP enabled task.

2003-02-14	Joel Sherrill <joel@OARcorp.com>

	AMD a29k declared obsolete.
	* score/cpu/Makefile.am: Removed reference.
	* score/cpu/a29k/.cvsignore, score/cpu/a29k/ChangeLog,
	score/cpu/a29k/Makefile.am, score/cpu/a29k/amd.ah, score/cpu/a29k/asm.h,
	score/cpu/a29k/configure.ac, score/cpu/a29k/cpu.c,
	score/cpu/a29k/cpu_asm.S, score/cpu/a29k/pswmacro.ah,
	score/cpu/a29k/register.ah, score/cpu/a29k/sig.S,
	score/cpu/a29k/rtems/.cvsignore, score/cpu/a29k/rtems/score/.cvsignore,
	score/cpu/a29k/rtems/score/a29k.h, score/cpu/a29k/rtems/score/cpu.h,
	score/cpu/a29k/rtems/score/cpu_asm.h,
	score/cpu/a29k/rtems/score/types.h: Removed.

2003-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/canonical-target-name.m4: Transform tic4x -> RTEMS_CPU=c4x.

2003-02-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* itron/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* itron/configure.ac: AC_PREREQ(2.57).
	* posix/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* posix/configure.ac: AC_PREREQ(2.57).
	* librpc/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* librpc/configure.ac: AC_PREREQ(2.57).
	* libblock/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* libblock/configure.ac: AC_PREREQ(2.57).
	* libfs/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* libfs/configure.ac: AC_PREREQ(2.57).
	* libcsupport/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* libcsupport/configure.ac: AC_PREREQ(2.57).
	* libnetworking/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* libnetworking/configure.ac: AC_PREREQ(2.57).

2003-02-11	Mike Siers <mikes@poliac.com>

	* libnetworking/rtems/rtems_glue.c: A small patch to the network daemon
	task code.  I just added code to check the return value of the
	rtems_bsdnet_event_receive function.  Only when this function returns a
	SUCCESSFUL status, will the event flags be checked.  This is more of a
	code cleanup issue than a bug.  The patch will just ensure the ipintr()
	and arpintr() functions are only called when a event is signaled.

2003-02-06	Mike Siers <mikes@poliac.com>

	PR 342/networking
	* libnetworking/kern/uipc_mbuf.c: The RTEMS version of the m_copyback is
	changing the m_len value of the mbuf.  I looked into the source from
	another BSD system and the mbuf length is not changed inside this
	function.  The m_copyback function is only being used in the
	net/rtsock.c file.  So I think this problem is only visable under
	certain routing table conditions.

2003-02-06	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/include/sys/ioccom.h: Include <sys/types.h> not
	<machine/types.h> so Linux port builds.

2003-02-05	Till Straumann  <strauman@slac.stanford.edu>

	PR 340/filesystem
	* libcsupport/src/fcntl.c: Add missing _fcntl_r assumed to exist by
	newlib.

2003-02-05	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	PR 341/networking
	* libnetworking/lib/ftpfs.c: Account for NULL at end of strings when
	malloc()'ing memory.

2003-02-05	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/include/sys/ioccom.h: Fix so not using internal RTEMS
	types in libc code.

2003-02-03	Till Straumann  <strauman@slac.stanford.edu>

	PR 339/filesystem
	* libcsupport/src/chroot.c: Fix violation of FS node object copy
	semantics.

2003-02-03	Steven Johnson <sjohnson@neurizon.net>

	PR 338/filesystem
	* libfs/src/imfs/ioman.c: Fix reentrancy problem with 
	rtems_io_lookup_name() (API change).

2003-02-03	Joel Sherrill <joel@OARcorp.com>

	PR 338/filesystem
	* sapi/include/rtems/io.h, sapi/src/io.c: Side-effect of fixing
	reentrancy problem with rtems_io_lookup_name() (API change).
	PR 338/filesystem
	* libcsupport/src/unixlibc.c: Side-effect of fixing reentrancy problem
	with  rtems_io_lookup_name() (API change).

2003-01-28	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20030128.
	* libnetworking/Makefile.am: Add kern/kern_sysctl.c to Makefile.am so
	networking tests build. This was subsequently reported as PR337 before I
	committed the fix.

2003-01-27	Till Straumann <strauman@SLAC.Stanford.edu>

	* libnetworking/libc/getproto.c, libnetworking/libc/getprotoname.c:
	modification to call getprotoent_static() if fopen() on /etc/protocols
	fails.

2003-01-27	Juan Zamorano <jzamora@fi.upm.es>

	* posix/src/ptimer1.c: Correct problem which could lead to overflow in
	time math.

2003-01-27	Eugeny S. Mints <Eugeny.Mints@oktet.ru>

	* libblock/src/blkdev.c: Per PR331 fix bug which is tripped by writing
	512 byte blocks to 512 byte aligned positions.

2003-01-27	Dan Smisko <dan@balanced.com>

	* libmisc/stackchk/check.c: Fix problem where _Objects_Get_information()
	will dereference a null pointer when checking the interrupt stack. If
	there's something at 0, you may be ok at run time but it is wrong.
	* libmisc/monitor/mon-command.c: Correct two potential NULL references.

2003-01-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/local.am: Remove distclean-local. Remove PROJECT_TOOLS.

2003-01-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove CLEAN_DEPEND (Unused).  Remove
	CLOBBER_DEPEND (Unused).

2003-01-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/netinet/tcp_subr.c, libnetworking/netinet/udp_usrreq.c:
	Add args to INP_INFO_RLOCK, INP_INFO_RUNLOCK,  INP_LOCK, INP_UNLOCK
	macros.

2003-01-10	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libcsupport/Makefile.am: Eliminate OBJS.

2003-01-10	Joel Sherrill <joel@OARcorp.com>

	* score/src/objectmp.c: Corrected use of name parameter to reflect that
	it is actually the name not a pointer to the name.
	* rtems/src/msg.c, rtems/src/part.c, rtems/src/sem.c, rtems/src/tasks.c:
	Correct object class control structure initialization for
	multiprocessing configurations.
	* libcsupport/include/rtems/libio.h: Rename __dev_t to __rtems_dev_t to
	avoid conflict with GNU/Linux header files.

2003-01-03	Till Straumann  <strauman@slac.stanford.edu>

	PR 303
	* libcsupport/src/base_fs.c, libcsupport/src/getpwent.c,
	libcsupport/src/privateenv.c: Fix violation of node_access  copy
	symantics.

2003-01-03	Joel Sherrill <joel@OARcorp.com>

	* posix/ChangeLog: Corrected entry for sysconf.c which did not include
	PR.

2003-01-03	Jitendra Vegiraju <jvegiraju@netscape.net>

	* libnetworking/sys/queue.h: Fix alignment problem on ARM.

2003-01-03	Jay Monkman <jtm@smoothsmoothie.com>

	* posix/src/mqueueopen.c: Actually open the message queue descriptor so
	it is available for others to use.

2003-01-03	Eugeny S. Mints <Eugeny.Mints@oktet.ru>

	* libblock/src/ata.c, libblock/src/bdbuf.c: Correct invocation of
	rtems_task_mode() so the task's preemption mode setting is properly
	maintained.
	* libfs/src/dosfs/msdos_initsupp.c: Specify inherited priority as 0
	since this is a FIFO queuing semaphore.

2003-01-03	Chris Johns <cjohns@cybertec.com.au>

	* libnetworking/Makefile.am: Added sys/linker_set.h.
	* libnetworking/kern/Makefile.am: Added kern_mib.c and kern_sysctl.c.
	* libnetworking/kern/uipc_socket.c: OID changed from KERN_SOMAXCONN to
	KIPC_SOMAXCONN.
	* libnetworking/kern/uipc_socket2.c: OID changed from KERN_MAXSOCKBUF to
	KIPC_MAXSOCKBUF.
	* libnetworking/net/if_ethersubr.c: FreeBSD 2.2.2 does not have a
	_net_link node while 5.0 does.
	* libnetworking/net/if_ppp.c: Removed the TEXT_SET define as these
	macros are now implemented.
	* libnetworking/net/rtsock.c: Enable sysctl support plus fix the bug
	with the lastest FreeBSD sysctl header file.
	* libnetworking/netinet/icmp_var.h: FreeBSD 2.2.2 does not have a
	_net_inet_icmp node while 5.0 does.
	* libnetworking/netinet/if_ether.c: FreeBSD 2.2.2 does not have a
	_net_link_ether node while 5.0 does.
	* libnetworking/netinet/igmp_var.h: FreeBSD 2.2.2 does not have a
	_net_inet_igmp node while 5.0 does.
	* libnetworking/netinet/in_pcb.c: Fixed the arguments to the sysctl
	call. Add inp_gencnt and ipi_count. These are used when listing
	connections.
	* libnetworking/netinet/in_pcb.h: Added counters to aid the listing of
	connections.
	* libnetworking/netinet/in_var.h: Provide the _net_inet_ip and
	_net_inet_raw nodes.
	* libnetworking/netinet/ip_fw.c: Disable the firewall sysctl calls.
	* libnetworking/netinet/tcp_subr.c: Merge tcp_pcblist from the lastest
	FreeBSD source.
	* libnetworking/netinet/tcp_var.h: Add structures needed by net-snmp to
	list connections.
	* libnetworking/netinet/udp_usrreq.c: Merged udp_pcblist from the
	lastest FreeBSD source.
	* libnetworking/netinet/udp_var.h: Added the sysctl id UDPCTL_PCBLIST.
	Used by net-snmp.
	* libnetworking/rtems_glue.c: Call sysctl_register_all when initialising
	the network stack to register all the sysctl calls. These are in the
	special sections and required an updated linker script.
	* libnetworking/rtems/rtems_syscall.c: Add the sysctl call.
	* libnetworking/sys/kernel.h: Use the lastest FreeBSD method of handling
	sysctl structures.  This now held in the sys/linker_set.h file.
	* libnetworking/sys/queue.h: This is from the lastest FreeBSD code with
	the circular  code merged back in as it is not used in the lastest
	FreeBSD kernel.
	* libnetworking/sys/sysctl.h: The lastest sysctl. This was needed to use
	with the new linker set method. The FreeBSD 2.2.2 version has asm hacks.
	The lastest version of the FreeBSD does not have these hacks. It uses
	gcc attribute directives.

2002-12-26	Till Straumann  <strauman@slac.stanford.edu

	* libcsupport/src/fchdir.c: PR302 fix violation of FS node object copy
	semantics.

2002-12-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove $(RTEMS_BSP_CFLAGS).

2002-12-18	Eric Norum <eric.norum@usask.ca>

	* libnetworking/Makefile.am: Include netinet sources.

2002-12-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Fix path to libxdr and librpc (Another typo in
	from the 2002-12-12 patch).

2002-12-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Fix typo in yesterday's patch.

2002-12-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Don't create $ARCH. Use install-data-local to
	install librtemscpu.a.
	* wrapup/Makefile.am: Add libmisc.
	* configure.ac: Add AC_CONFIG_SUBDIR(libmisc).
	* itron/Makefile.am, posix/Makefile.am: Don't create $ARCH as
	side-effect of compilation.
	* score/Makefile.am: Don't create $ARCH.
	* sapi/Makefile.am: Don't create $ARCH as side-effect of compilation.
	* rtems/Makefile.am: Don't create $ARCH as side-effect of compilation.
	Re-order all-local.
	* libmisc/configure.ac: Require autoconf-2.57+automake-1.7.2.
	* libmisc/capture/Makefile.am: Eliminate C_O_FILES.
	* libmisc/cpuuse/Makefile.am, libmisc/devnull/Makefile.am,
	libmisc/dummy/Makefile.am, libmisc/dumpbuf/Makefile.am,
	libmisc/monitor/Makefile.am, libmisc/rtmonuse/Makefile.am,
	libmisc/serdbg/Makefile.am, libmisc/shell/Makefile.am,
	libmisc/stackchk/Makefile.am, libmisc/untar/Makefile.am: Ditto.
	* libmisc/mw-fb/Makefile.am: Eliminate C_O_FILES. Eliminate SRCS. Moving
	libmisc from rtems/c/src to rtems/cpukit.
	* libmisc/Makefile.am: Reflect new path.
	* libmisc/configure.ac: Reflect new path.  Use RTEMS_ENV_RTEMSCPU
	instead of RTEMS_ENV_RTEMSBSP. Remove RTEMS_PROJECT_ROOT.
	* libmisc/capture/Makefile.am: Reflect new path. Remove OBJS from
	all-local.
	* libmisc/cpuuse/Makefile.am, libmisc/devnull/Makefile.am,
	libmisc/dummy/Makefile.am, libmisc/dumpbuf/Makefile.am,
	libmisc/monitor/Makefile.am, libmisc/mw-fb/Makefile.am,
	libmisc/rtmonuse/Makefile.am, libmisc/serdbg/Makefile.am,
	libmisc/shell/Makefile.am, libmisc/stackchk/Makefile.am,
	libmisc/untar/Makefile.am: Ditto.
	* libmisc/wrapup/Makefile.am: Reflect new path.
	* libblock/Makefile.am: Eliminate C_O_FILES. Eliminate SRCS.
	* libfs/src/imfs/Makefile.am: Eliminate C_O_FILES.
	* libfs/src/dosfs/Makefile.am: Ditto.
	* libnetworking/Makefile.am: Merge-in kern/Makefile.am, net/Makefile.am,
	netinet/Makefile.am, netinet/Makefile.am, nfs/Makefile.am, 
	rtems/Makefile.am.
	* libnetworking/kern/Makefile.am, libnetworking/net/Makefile.am,
	libnetworking/netinet/Makefile.am, libnetworking/nfs/Makefile.am,
	libnetworking/rtems/Makefile.am: Remove.
	* libnetworking/wrapup/Makefile.am: Reflect changes above.
	* libnetworking/configure.ac: Ditto.

2002-12-11	Vladimir Nesic <vnesic@dkts.co.yu>

	* posix/src/cancelrun.c, posix/src/cleanuppop.c: Get the last real node
	not the permanent null last node.

2002-12-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/kern/Makefile.am: Remove C_O_FILES.  Don't let all-local
	depend on $OBJS).
	* libnetworking/lib/Makefile.am, libnetworking/libc/Makefile.am,
	libnetworking/net/Makefile.am, libnetworking/netinet/Makefile.am,
	libnetworking/nfs/Makefile.am, libnetworking/rtems/Makefile.am: Ditto.

2002-12-10	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
	* libmisc/capture/Makefile.am, libmisc/cpuuse/Makefile.am,
	libmisc/devnull/Makefile.am, libmisc/dummy/Makefile.am,
	libmisc/dumpbuf/Makefile.am, libmisc/monitor/Makefile.am,
	libmisc/mw-fb/Makefile.am, libmisc/rtmonuse/Makefile.am,
	libmisc/serdbg/Makefile.am, libmisc/shell/Makefile.am,
	libmisc/stackchk/Makefile.am, libmisc/untar/Makefile.am,
	libmisc/wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.

2002-12-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemsbsp.m4, aclocal/env-rtemscpu.m4: Remove
	RTEMS_CHECK_CUSTOM_BSP.
	* aclocal/check-bsps.m4: Remove.
	* wrapup/Makefile.am: Remove *_OBJS, use LIBS+= instead.
	* configure.ac: Require autoconf >= 2.54, automake-1.7.2.
	* wrapup/Makefile.am, configure.ac: Reflect changes to score/.
	* wrapup/Makefile.am, configure.ac: Reflect changes to sapi/.
	* configure.ac: Add AC_SUBST(INLINEdir).
	* wrapup/Makefile.am, configure.ac: Reflect changes to rtems/.
	* wrapup/Makefile.am: Reflect changes to posix/. Reflect changes to
	itron/.
	* itron/include/Makefile.am, itron/inline/Makefile.am,
	itron/macros/Makefile.am, itron/src/Makefile.am: Remove.
	* itron/Makefile.am: Merge-in removed Makefile.ams.
	* itron/configure.ac: Reflect changes above.
	* posix/include/Makefile.am, posix/inline/Makefile.am,
	posix/macros/Makefile.am, posix/src/Makefile.am: Remove.
	* posix/Makefile.am: Merge-in removed Makefile.ams.
	* posix/configure.ac: Reflect changes above.
	* score/Makefile.am: Fix macro-file installation.
	* score/Makefile.am: Move include/rtems/score/cpuopts.h to STD_H_FILES.
	* score/include/Makefile.am, score/inline/Makefile.am,
	score/macros/Makefile.am, score/src/Makefile.am: Remove.
	* score/Makefile.am: Merge-in removed Makefile.ams.
	* sapi/include/Makefile.am, sapi/inline/Makefile.am,
	sapi/macros/Makefile.am, sapi/src/Makefile.am: Remove.
	* sapi/Makefile.am: Merge-in removed Makefile.ams.
	* rtems/include/Makefile.am, rtems/inline/Makefile.am,
	rtems/macros/Makefile.am, rtems/src/Makefile.am: Remove.
	* rtems/Makefile.am: Merge-in removed Makefile.ams.

2002-12-06	Vladimir Nesic <vnesic@dkts.co.yu>

	* posix/inline/rtems/posix/cond.inl, posix/macros/rtems/posix/cond.inl:
	Implemented PTHREAD_COND_INITIALIZER support.  Vladimir implemented the
	inline version and Joel adapted it to the macro version.

2002-12-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Rework *FLAGS, AM_*FLAGS handling.
	* automake/multilib.am: Don't include @RTEMS_BSP@.cfg.
	* automake/compile.am: Remove hard-coded CFLAGS_PROFILE_V. Add
	autoconf-supplied CPU_CFLAGS, CFLAGS_OPTIMIZE_V, CFLAGS_DEBUG_V, 
	CFLAGS_PROFILE_V. Hard-code RTEMS_CFLAGS_PROFILE = -pg.
	* aclocal/prog-cc.m4: Sync with toplevel/aclocal/prog-cc.m4. Remove
	GCCSED.
	* aclocal/env-rtemsbsp.m4: Add AC_ARG_VAR for CPU_CFLAGS,
	CFLAGS_OPTIMIZE_V, CFLAGS_DEBUG_V, CFLAGS_PROFILE_V.
	* aclocal/rtems-flags.m4: New.
	* libcsupport/configure.ac: Add various checks to enhance portability.
	* libcsupport/src/termios.c: Reflect changes to configure.ac.

2002-12-06	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/src/malloc.c: Fixed code that incorrected did a disable
	dispatch instead of locking and unlocking the allocator mutex.

2002-12-02	Joel Sherrill <joel@OARcorp.com>

	* posix/include/rtems/posix/timer.h, posix/src/keygetspecific.c,
	posix/src/posixtimespecsubtract.c, posix/src/ptimer1.c,
	posix/src/semunlink.c: Added casts to eliminate warnings on 16-bit
	targets like the h8300.
	* score/include/rtems/score/object.h, score/include/rtems/score/tod.h,
	rtems/include/rtems/rtems/support.h: Added casts to eliminate warnings
	on 16 bit targets like the h8300.
	* libmisc/stackchk/check.c: Better handling of task name.
	* libblock/src/bdbuf.c: Added cast to remove warning.
	* libfs/src/dosfs/fat.h, libfs/src/dosfs/msdos.h: Added casts to remove
	warnings on 16 bit targets like the h8300.
	* libcsupport/include/rtems/libio.h: Internally use a union of an
	unsigned64 and major/minor device so we don't get into trouble shifting.
	The h8300 seemed to be impossible to remove warnings otherwise.
	Eventually the structure definition of a dev_t might be better anyway.
	* libcsupport/include/sys/ioccom.h: Added casts to remove warnings on 16
	bit targets.

2002-11-29	Eric Norum <eric.norum@usask.ca>

	PR 316
	* posix/src/sysconf.c: Add support for _SC_GETPW_R_SIZE_MAX. Return
	error rather than panic if argument is unsupported.

2002-11-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove CFLAGS_DEBUG_OPTIMIZE_V (Unused).
	* aclocal/sysv-ipc.m4: Adaptation to autoconf-2.5x.
	* aclocal/check-newlib.m4: Sync with ../aclocal/check-newlib.m4.
	* itron/configure.ac: Cosmetical fixes.
	* itron/configure.ac: Fix package name.
	* posix/configure.ac: Cosmetical fixes.
	* posix/configure.ac, librpc/configure.ac, libblock/configure.ac: Fix
	package name.
	* libfs/configure.ac: Cosmetical fixes.
	* libfs/configure.ac: Fix package name.
	* libcsupport/configure.ac: Cosmetical fixes.
	* libcsupport/configure.ac, libnetworking/configure.ac: Fix package name.

2002-11-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* include/rtems/libio_.h: Remove.
	* libcsupport/configure.ac: Check for sys/cdefs.h, Add NEED_SYS_CDEFS_H.
	Add check for CHAR_BIT.
	* libcsupport/Makefile.am: Conditionally install sys/cdefs.h iff using
	newlib or if the host does not provide sys/cdefs.h (Fixes Linux/posix).
	* libcsupport/configure.ac: Remove -ansi -fasm. Add checks to diagnose
	potential system header conflicts.
	* libcsupport/Makefile.am: Unconditionally install sys/cdefs.h.
	* libnetworking/Makefile.am: Merge-in HEADER-handling from
	net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am.
	* libnetworking/net/Makefile.am, libnetworking/netinet/Makefile.am,
	libnetworking/nfs/Makefile.am: Remove *_HEADERS.

2002-11-18	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20021118.

2002-11-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* include/rtems/userenv.h: Rely upon <limits.h> for
	_POSIX_LOGIN_NAME_MAX.
	* aclocal/prog-cc.m4: Acknowledge configuration-time CFLAGS.
	* automake/compile.am: Acknowledge configuration-time CFLAGS. Remove
	CFLAGS_DEFAULT.
	* libmisc/monitor/mon-commands.c: Removed warnings for RTEMS_UNIX.
	* libblock/src/diskdevs.c: Include <unistd.h> to remove warning.
	* libnetworking/Makefile.am: Merge-in arpa/Makefile.am,
	machine/Makefile.am, sys/Makefile.am, vm/Makefile.am. Add . to SUBDIRS.
	* libnetworking/arpa/Makefile.am, libnetworking/machine/Makefile.am,
	libnetworking/sys/Makefile.am, libnetworking/vm/Makefile.am: Remove.
	* libnetworking/configure.ac: Reflect changes above.

2002-11-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/capture/Makefile.am, libmisc/serdbg/Makefile.am: Remove
	AUTOMAKE_OPTIONS.
	* libmisc/serdbg/serdbgio.c: Add #include <unistd.h>.
	* libmisc/shell/Makefile.am, libmisc/wrapup/Makefile.am: Add
	RTEMS_LIBSHELL conditional.
	* libmisc/configure.ac: Check for stdio assignments. Add RTEMS_LIBSHELL
	conditional.

2002-11-14	Joel Sherrill <joel@OARcorp.com>

	* score/macros/rtems/score/object.inl: Keep consistent with inline
	version.

2002-11-13	Paul Whitfield <paulw@microsol.iinet.net.au>

	* rtems/src/regionreturnsegment.c: When RTEMS_REGION_SHRED_ON_FREE is
	set, there should have been an & in front of size.

2002-11-11	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20021111.

2002-11-07	<strauman@slac.stanford.edu>

	* libcsupport/src/mount.c: Per PR297, correct fs_mountme failure paths.

2002-11-06	Chris Johns <ccj@acm.org>

	* libnetworking/sys/select.h: Add C++ to C external.

2002-11-04	Joel Sherrill <joel@OARcorp.com>

	* librpc/src/rpc/pmap_rmt.c: Removed warnings.

2002-11-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/kern/uipc_mbuf.c: Comment out m0 in m_copydata to
	suppress warning.

2002-11-01	Joel Sherrill <joel@OARcorp.com>

	* ChangeLog, posix/ChangeLog: Corrected.
	* libmisc/stackchk/check.c: Removed warnings.
	* libcsupport/ChangeLog, libnetworking/ChangeLog: Corrected.

2002-11-01	Eric Norum <eric.norum@usask.ca>

	* libnetworking/nfs/bootp_subr.c, libnetworking/rtems/rtems_bsdnet.h,
	libnetworking/rtems/rtems_glue.c: Till Straumann's patch (PR295) to use
	bootp option 129 to get command line string.  Till Straumann's patch to
	change inet_ntoa->inet_ntop.

2002-10-31	Joel Sherrill <joel@OARcorp.com>

	* score/src/heapgetinfo.c: Fixed comment.
	* score/src/mpci.c: Removed warning.
	* rtems/src/regiongetinfo.c: Corrected return value check.
	* libmisc/stackchk/check.c: Removed warning.
	* librpc/src/rpc/svc_run.c: Remove warning.
	* libcsupport/src/mallocfreespace.c: Corrected sense of status check to 
	match change inside RTEMS.
	* libcsupport/src/newlibc.c: Removed warning.
	* libnetworking/libc/rcmd.c, libnetworking/netinet/in_cksum_arm.c:
	Removed warnings.

2002-10-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-bsp-cache.m4: Remove.

2002-10-30	Eric Norum <eric.norum@usask.ca>

	* include/rtems/bspIo.h: Add vprintk function for kernel printing from
	routines which have already obtained the va_list pointer.
	* posix/src/psignal.c: Fix counting problem which resulted in too many
	entries being in the POSIX signals default behavior table.
	* posix/src/psignal.c: Reflect changes to signal names in newlib.
	* libcsupport/src/printk.c: Add vprintk function for kernel printing
	from routines which have already obtained the va_list pointer.

2002-10-29	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/multilib.m4: Remove RTEMS_ENABLE_MULTILIB_MASTER.

2002-10-28	Joel Sherrill <joel@OARcorp.com>

	* score/src/threadhandler.c: Prototype _init() and _main() if they are
	needed to avoid a warning.
	* rtems/src/timerserver.c: Add useless return to avoid warning.
	* librpc/src/rpc/clnt_tcp.c, librpc/src/rpc/clnt_udp.c,
	librpc/src/rpc/pmap_rmt.c, librpc/src/rpc/rtime.c,
	librpc/src/rpc/svc_tcp.c: Add include of <sys/select.h> to eliminate
	warning.
	* librpc/src/rpc/rpcdname.c: Add prototype of getdomainname() to
	eliminate warning.
	* libcsupport/include/rtems/libio.h: Change
	rtems_filesystem_node_types_t from enumeration to int to eliminate
	warnings when values are overridden.
	* Pass to eliminate warnings.
	* libnetworking/kern/uipc_mbuf.c: Conditional SYSINIT() usage on
	__rtems__. Fix return statement without a value.
	* libnetworking/lib/ftpfs.c: read and write filesystem routines return
	ssize_t.
	* libnetworking/lib/syslog.c: Add include of <string.h> to eliminate
	warning.
	* libnetworking/lib/tftpDriver.c: read and write filesystem routines
	return ssize_t.
	* libnetworking/libc/gethostbydns.c: Prototype abort().
	* libnetworking/libc/inet_ntoa.c: Prototype strcpy().
	* libnetworking/libc/rcmd.c: Add include of <sys/select.h>.
	* libnetworking/net/if_loop.c: Turn token at end of endif to comment.
	* libnetworking/net/rtsock.c, libnetworking/nfs/bootp_subr.c:
	Conditional SYSINIT() usage on __rtems__.
	* libnetworking/rtems/rtems_bootp.c: Add include of
	<rtems/rtems_bsdnet_internal.h>.
	* libnetworking/rtems/rtems_bsdnet_internal.h: Added prototypes for
	memcpy() and memset() since the BSD code tries to avoid using libc .h
	files  since it is used to being in the kernel.
	* libnetworking/rtems/rtems_syscall.c: read and write filesystem
	routines return ssize_t.

2002-10-28	Eugeny S. Mints <Eugeny.Mints@oktet.ru>

	* libblock/*: Added ATA support.
	* libblock/include/rtems/blkdev.h: Added last IO status.
	* libblock/include/rtems/ata.h, libblock/include/rtems/ata_internal.h,
	libblock/include/rtems/ide_part_table.h, libblock/src/ata.c,
	libblock/src/ide_part_table.c: New files.

2002-10-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/monitor/mon-command.c: Don't build rtems_monitor_line_editor
	for RTEMS_UNIX to avoid gcc warning.

2002-10-25	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac, itron/configure.ac, posix/configure.ac,
	librpc/configure.ac, libblock/configure.ac, libfs/configure.ac,
	libcsupport/configure.ac, libnetworking/configure.ac: Add nostdinc to
	AM_INIT_AUTOMAKE.
	* libnetworking/Makefile.am: Remove bogus reference to CHANGELOG.

2002-10-24	Fabrizio Pirovano <pirovano.thysys@tiscalinet.it>

	* libmisc/capture/capture.c, libmisc/monitor/mon-manager.c,
	libmisc/stackchk/check.c: Patch to remove problems introduced by object
	name rework.

2002-10-24	<strauman@slac.stanford.edu>

	* libcsupport/src/eval.c: Per PR293, added freenode calls for evaluate
	link failures.

2002-10-23	<strauman@slac.stanford.edu>

	PR 290
	* src/mount.c: Add check for ops->node_type_h.
	PR 291
	* src/mknod.c: Remove erroneous call to freenod.

2002-10-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* .cvsignore, itron/.cvsignore, posix/.cvsignore, libmisc/.cvsignore,
	librpc/.cvsignore, libblock/.cvsignore, libfs/.cvsignore,
	libcsupport/.cvsignore, libnetworking/.cvsignore: Reformat. Add
	autom4te*cache. Remove autom4te.cache.

2002-10-21	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-20021021-test.

2002-10-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/net/if_ethersubr.c: Add comments to #endif NETATALK to
	stop gcc from complaining.

2002-10-07	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20021007.

2002-10-07	Eric Norum <eric.norum@usask.ca>

	* libnetworking/netinet/tcp_var.h: Corrected typo in ARM alignment patch
	which  broke all other ports.

2002-10-04	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-JUNK.
	* aclocal/version.m4: Updated to rtems-ss-20021004.

2002-10-04	Jay Monkman <jtm@smoothsmoothie.com>

	* libnetworking/netinet/in_cksum.c, libnetworking/netinet/ip_icmp.h,
	libnetworking/netinet/ip_input.c, libnetworking/netinet/tcp_input.c,
	libnetworking/netinet/tcp_subr.c, libnetworking/netinet/tcp_var.h,
	libnetworking/sys/queue.h: Address alignment requirements for the ARM.
	* libnetworking/rtems/rtems_glue.c: Add IP aliasing ioctls SIOCAIFADDR
	and SIOCDIFADDR.

2002-10-02	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/kern/uipc_socket.c: Make sure that small non-zero delays
	work. Suggested cleanup from Eric Norum.

2002-10-02	Jennifer Averett <jennifer@OARcorp.com>

	* libfs/src/imfs/memfile.c: Fixed case where last close of unlinked file
	did not remove the resources associated with that file.  Reported by
	Till Straumann <strauman@slac.stanford.edu> on the mailing list.

2002-10-02	Eric Norum <eric.norum@usask.ca>

	* libcsupport/src/getpwent.c: Per PR283, reimplement to address
	reentrancy problems.
	* libcsupport/src/getgrent.c: Removed as functionality is now just a
	wrapper for  common routines in src/getpwent.c.
	* libcsupport/Makefile.am: Reflect file removal.
	* libnetworking/rtems/mkrootfs.c: As part of PR283, remove redundant
	code that creates /etc/passwd and /etc/group.

2002-09-16	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/netinet/Makefile.am, libnetworking/netinet/udp_usrreq.c:
	Back off some of the IP_FORWARD patch as it appears to not compile in
	the  current tree.

2002-09-14	Vyacheslav V. Burdjanadze <wr@zelax.ru>

	* libnetworking/kern/uipc_mbuf.c, libnetworking/sys/mbuf.h,
	libnetworking/netinet/udp_usrreq.c: Add  optional UDP broadcast
	forwarding support.
	* libnetworking/netinet/Makefile.am: Defined FORWARD_PROTOCOL to enabled
	UDP broadcast forwarding.

2002-09-14	Joel Sherrill <joel@OARcorp.com>

	* posix/src/psignal.c: Remove duplication from rtems/posix/psignal.h.
	* rtems/src/dpmemcreate.c, rtems/src/dpmemident.c,
	rtems/src/msgqcreate.c, rtems/src/msgqident.c, rtems/src/partcreate.c,
	rtems/src/partident.c, rtems/src/ratemoncreate.c,
	rtems/src/ratemonident.c, rtems/src/regioncreate.c,
	rtems/src/regionident.c, rtems/src/semcreate.c, rtems/src/semident.c,
	rtems/src/taskcreate.c, rtems/src/taskident.c, rtems/src/timercreate.c,
	rtems/src/timerident.c: Added casts to Objects_Name to eliminate
	warnings.
	* libfs/src/dosfs/fat.c, libfs/src/imfs/deviceio.c,
	libfs/src/imfs/imfs.h, libfs/src/imfs/imfs_directory.c,
	libfs/src/imfs/imfs_fchmod.c, libfs/src/imfs/memfile.c: Eliminated
	warnings.  A lot of this focus was on changing read and write entry
	points to return ssize_t as read(2) and write(2) now do.
	* libcsupport/include/rtems/libio.h: Change rtems_filesystem_read_t and
	rtems_filesystem_write_t to return ssize_t to match read(2) and write(2)
	respectively.
	* libnetworking/kern/uipc_socket.c: Fix case on SO_RCVTIMEO and
	SO_SNDTIMEO where conversion into ticks can result in a 0 ticks timeout
	which is  the same as requesting no timeout.  Reported by Sergei Organov
	<osv@javad.ru>.

2002-09-14	Eric Norum <eric.norum@usask.ca>

	* libcsupport/src/readdir_r.c: New file.
	* libcsupport/Makefile.am: Reflect above.

2002-09-07	Joel Sherrill <joel@OARcorp.com>

	* libblock/src/bdbuf.c: Previous fix for PR282 regressed mutex changes.

2002-09-06	Alexander M. Kukuta <kam@oktet.ru>

	* libblock/src/bdbuf.c: Per PR282, correct problem in function
	rtems_bdbuf_read() where device ioctl() is called with the logical
	device number used instead of corresponding physical device number.

2002-09-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/netinet/in_cksum.c: #include <string.h> for puts in
	generic routines.

2002-08-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/shell/shell.c: #include <time.h>.
	* libmisc/wrapup/Makefile.am: Eliminate LIBNAME.

2002-08-30	Joel Sherrill <joel@OARcorp.com>

	* sapi/src/io.c: Fixed some spacing.

2002-08-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/Makefile.am: Remove cpuopt.h generation.
	* configure.ac: Correct package name. Don't build ada if POSIX is
	disabled. Generate cpuopt.h on the fly, filter out autoconf-2.53 PACKAGE
	crap.
	* aclocal/prog-gnat.m4: New.
	* configure.ac: Add ada subdir handling.

2002-08-21	Joel Sherrill <joel@OARcorp.com>

	* posix/src/adjtime.c: New file -- adjtime() support required by the
	Network Time Protocol (NTP) port to RTEMS.
	* posix/src/Makefile.am: Modified to reflect above.

2002-08-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-alias.m4: Remove.

2002-08-20	Joel Sherrill <joel@OARcorp.com>

	* librpc/src/xdr/xdr_stdio.c: Per PR268, add include of <netinet/in.h>
	to avoid warning on ntohl().

2002-08-20	Eric Norum <eric.norum@usask.ca>

	* libnetworking/rtems/rtems_glue.c: Per PR270, the BSD network code
	expects that the value of the number of seconds since boot is non-zero. 
	The RTEMS network initialization code assures this by waiting for a
	second.  A more efficient technique is to simply wait until the number
	of seconds since boot is non-zero.

2002-08-14	Joel Sherrill <joel@OARcorp.com>

	* score/macros/rtems/score/coremsg.inl: Add <string.h> to remove warning.
	* score/src/threadidlebody.c: Add return 0 to avoid warning.

2002-08-12	Eric Norum <eric.norum@usask.ca>

	* libcsupport/src/write.c (_write_r): Change prototype to match newlib's
	reent.h.

2002-08-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/capture/Makefile.am, libmisc/cpuuse/Makefile.am,
	libmisc/devnull/Makefile.am, libmisc/dummy/Makefile.am,
	libmisc/dumpbuf/Makefile.am, libmisc/monitor/Makefile.am,
	libmisc/mw-fb/Makefile.am, libmisc/rtmonuse/Makefile.am,
	libmisc/serdbg/Makefile.am, libmisc/shell/Makefile.am,
	libmisc/stackchk/Makefile.am, libmisc/untar/Makefile.am: Use .$(OBJEXT)
	instead of .o.
	* librpc/src/rpc/rtems_portmapper.c: include <stdlib.h> (Get rid of
	gcc31 warnings about abort/exit).

2002-08-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/shell/Makefile.am: Remove shell.h from EXTRA_DIST.

2002-08-09	Joel Sherrill <joel@OARcorp.com>

	* posix/src/cancelrun.c: Remove check for PTHREAD_CANCELED not being
	defined to ensure that newlib patch includes it.
	* libnetworking/libc/getservent.c: Per PR265, add  #include
	<netinet/in.h> for ntohl() function.

2002-08-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add missing ',' to librpc activation. Add
	AC_MSG_CHECKING/AC_MSG_RESULT.
	* aclocal/check-networking.m4: Let AC_MSG_CHECKING refer to CPU.
	* configure.ac: Fix bug in librpc activation, having introduced by
	yesterday's patch.

2002-08-07	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20020807.
	* libnetworking/netinet/in.h: Per PR263, added include of
	<machine/endian.h> to <netinet/in.h> so it includes prototypes of
	ntohl() family of routines.

2002-08-07	Chris Johns <ccj@acm.org>

	* score/src/coretodset.c: Correct calculation of ticks until next
	section boundary.  It was incorrectly based upon current time not the
	time that is being set.

2002-08-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemsbsp.m4: Remove RTEMS_CONFIG_PER_BSP.
	* aclocal/env-rtemscpu.m4: Remove RTEMS_CONFIG_PER_BSP. Use AS_IF
	instead of if/then/else/fi.

2002-08-06	Joel Sherrill <joel@OARcorp.com>

	* configure.ac, librpc/configure.ac: or32 does not currently support
	librpc.

2002-08-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Use librtems.a.
	* wrapup/Makefile.am: Use libsapi.a.
	* sapi/src/Makefile.am: Add libsapi.a.
	* rtems/src/Makefile.am: Add librtems.a.
	* libnetworking/wrapup/Makefile.am: Don't install.

2002-08-01	Joel Sherrill <joel@OARcorp.com>

	* libmisc/cpuuse/cpuuse.c (CPU_usage_Dump) : Corrected so it honors when
	an object name is raw versus being a string.
	* libnetworking/machine/param.h, libnetworking/sys/syslimits.h: In the
	continued effort to eliminate .h conflicts between newlib and RTEMS,
	these were moved to newlib.
	* libnetworking/machine/Makefile.am, libnetworking/sys/Makefile.am:
	Reflect above.

2002-07-31	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Use libscore.a.
	* aclocal/canonicalize-tools.m4, automake/lib.am: Remove LD.
	* Makefile.am: Put preinstall-stamp into CLEANFILES.
	* aclocal/rtems-top.m4: Use with_project_root and MULTIBUILDTOP to 
	compose PROJECT_TOPdir (Fixes hppa1.1/genoffset problem).
	* wrapup/Makefile.am: LIBBLOCK_OBJS = ../libblock/$(ARCH)/libblock.a.
	* posix/src/mqueuecreatesupp.c: #include <stdlib.h> (malloc).
	* score/src/Makefile.am: Build into libscore.a.
	* libblock/Makefile.am: Merge src/Makefile.am.
	* libblock/src/Makefile.am: Remove.
	* libblock/configure.ac: Remove src/Makefile.am.
	* libfs/wrapup/Makefile.am, libfs/wrapup/.cvsignore: Remove.
	* libfs/Makefile.am: Remove wrapup SUBDIR.
	* libfs/configure.ac: Remove wrapup/Makefile.

2002-07-31	Joel Sherrill <joel@OARcorp.com>

	* aclocal/rtems-cpu-subdirs.m4: Removed the or16 port was just a stub
	and only the OR32 port is getting worked on.

2002-07-30	Joel Sherrill <joel@OARcorp.com>

	* libmisc/stackchk/check.c: Don't reference the RTEMS allocated
	interrupt stack if the port doesn't configure using it.
	* libcsupport/include/sys/utime.h: Removed as file is now part of the
	RTEMS newlib support.
	* libcsupport/Makefile.am: Reflect above.
	* libcsupport/include/rtems/termiostypes.h: Avoid use of __P.
	* libnetworking/sys/param.h: Removed as a simpler version of this file
	is now part of the RTEMS newlib support.
	* libnetworking/sys/Makefile.am: Modified to reflect above.
	* libnetworking/machine/types.h: Removed as a simpler version of this
	file is now part of the RTEMS newlib support.
	* libnetworking/machine/Makefile.am, libnetworking/machine/endian.h,
	libnetworking/nfs/bootp_subr.c,
	libnetworking/rtems/rtems_bsdnet_internal.h,
	libnetworking/sys/Makefile.am, libnetworking/sys/systm.h: Minor
	modifications to use the simpler machine/types.h.  Mostly more complete
	sets of #include's to account for machine/types.h no longer doing this.

2002-07-30	Jay Monkman <jtm@smoothsmoothie.com>

	* libnetworking/netinet/in_cksum.c,
	libnetworking/netinet/in_cksum_arm.c: Added ARM in_cksum support.

2002-07-29	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* librpc/src/rpc/Makefile.am: Merge src/rpc/PSD.doc/Makefile.am.
	* librpc/include/Makefile.am: Merge include/rpc/Makefile.am. Merge
	include/rpcsvc/Makefile.am.
	* librpc/include/rpc/Makefile.am, librpc/include/rpcsvc/Makefile.am,
	librpc/src/rpc/PSD.doc/Makefile.am: Remove.
	* librpc/configure.ac: Remove duplicate AC_PROG_RANLIB. Remove
	include/rpc/Makefile. Remove include/rpcsvc/Makefile. Remove
	src/rpc/PSD.doc/Makefile.

2002-07-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Use .$(OBJEXT) instead of .o.

2002-07-24	Joel Sherrill <joel@OARcorp.com>

	* libmisc/wrapup/Makefile.am: Temporarily don't include serdbg since it
	causes some BSPs to not link "main(){}" as required by autoconf.
	* libnetworking/sys/select.h: Add a prototype of select() to avoid
	warnings. In particular a C++ application using select() required a
	prototype.
	* libnetworking/Makefile.am, libnetworking/libc/res_send.c: Do not
	install or use <poll.h> since RTEMS does not support it.

2002-07-23	Joel Sherrill <joel@OARcorp.com>

	* librpc/src/rpc/pmap_clnt.c (pmap_set): Changed prototype to match .h.

2002-07-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
	* wrapup/Makefile.am: Use project_libdir instead of
	$(PROJECT_RELEASE)/lib. Eliminate LIBNAME. Pickup *.o's instead of
	*.rels for CPU_OBJS. Manually create $(project_libdir)$(MULTISUBDIR).
	* automake/lib.am: Use project_libdir instead of $(PROJECT_RELEASE)/lib.
	* aclocal/env-rtemsbsp.m4, aclocal/env-rtemscpu.m4: Remove
	RTEMS_BSP_SPECS, PROJECT_RELEASE. Add project_libdir, libdir. New
	GCC_SPECS. Various cleanups.
	* aclocal/rtems-top.m4: New PROJECT_ROOT handling.
	* automake/compile.am: Remove RTEMS_BSP_SPECS, LD* flags, LINK,
	references to bsp_specs. Use project_libdir instead of
	$(PROJECT_RELEASE)/lib.
	* itron/src/Makefile.am: Use .$(OBJEXT) instead of .o.
	* itron/src/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES.
	* posix/src/Makefile.am: Use .$(OBJEXT) instead of .o.
	* posix/src/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES.
	* score/src/Makefile.am, sapi/src/Makefile.am, rtems/src/Makefile.am,
	librpc/src/xdr/Makefile.am, librpc/src/rpc/Makefile.am: Use .$(OBJEXT)
	instead of .o.
	* librpc/src/xdr/Makefile.am, librpc/src/rpc/Makefile.am: Eliminate
	LIBNAME.
	* libblock/src/Makefile.am: Use .$(OBJEXT) instead of .o.
	* libblock/src/Makefile.am: Eliminate LIBNAME. Cosmetical cleanups.
	* libcsupport/Makefile.am: Use .$(OBJEXT) instead of .o.
	* libcsupport/Makefile.am: Eliminate LIBNAME. Use AM_CPPFLAGS instead of
	INCLUDES (Upcoming automake standard).
	* libnetworking/kern/Makefile.am: Use .$(OBJEXT) instead of .o.
	* libnetworking/lib/Makefile.am, libnetworking/libc/Makefile.am,
	libnetworking/net/Makefile.am, libnetworking/netinet/Makefile.am,
	libnetworking/nfs/Makefile.am, libnetworking/rtems/Makefile.am,
	libnetworking/wrapup/Makefile.am: Ditto.
	* libnetworking/kern/Makefile.am: Eliminate LIBNAME.
	* libnetworking/lib/Makefile.am, libnetworking/libc/Makefile.am,
	libnetworking/net/Makefile.am, libnetworking/netinet/Makefile.am,
	libnetworking/nfs/Makefile.am, libnetworking/rtems/Makefile.am: Ditto.
	* libnetworking/wrapup/Makefile.am: Use project_libdir instead of
	$(PROJECT_RELEASE)/lib.

2002-07-22	Joel Sherrill <joel@OARcorp.com>

	* score/include/rtems/score/apimutex.h (_API_Mutex_Lock): Per PR253 add
	the missing _ISR_Disable.  This fix was already applied to the old
	location (c/src/exec/score/...).

2002-07-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/capture/capture.c, libmisc/capture/capture-cli.c: include
	<string.h> for memset.

2002-07-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-top.m4: Reflect relocation of c/src/exec to cpukit.
	* aclocal/check-cpu.m4, aclocal/check-bsps.m4: Ditto.

2002-07-17	Jay Monkman <jtm@smoothsmoothie.com>

	* libnetworking/netinet/in.h, libnetworking/netinet/ip.h,
	libnetworking/netinet/ip_var.h, libnetworking/netinet/tcp.h: Modified to
	added packed attribute.o.

2002-07-16	Joel Sherrill <joel@OARcorp.com>

	* score/macros/rtems/score/object.inl: Corrected typos in 
	_Objects_Open, _Objects_Close, and _Objects_Namespace_remove.

2002-07-05	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/multilib.am: Add install-multi.
	* aclocal/rtems-top.m4: Reflect new RTEMS_TOPdir to detecting
	version.m4. Add --with-project-root. Reflect --with-project-root to
	setting up PROJECT_ROOT.
	* aclocal/env-rtemscpu.m4: Reflect new RTEMS_TOPdir (HACK).
	* aclocal/check-cpu.m4, aclocal/check-bsps.m4: Reflect new RTEMS_TOPdir.
	* configure.ac: RTEMS_TOP(..).
	* itron/configure.ac, posix/configure.ac, librpc/configure.ac,
	libblock/configure.ac, libfs/configure.ac, libcsupport/configure.ac,
	libnetworking/configure.ac: RTEMS_TOP(../..).

2002-07-05	Joel Sherrill <joel@OARcorp.com>

	* posix/include/rtems/posix/cancel.h, posix/src/cancel.c,
	posix/src/cancelrun.c, posix/src/mqueue.c, posix/src/pthread.c,
	posix/src/semaphore.c, posix/src/setcancelstate.c,
	posix/src/setcanceltype.c, posix/src/testcancel.c: Per PR164, corrected
	the behavior of thread cancellation and did some cleanup as a
	side-effect.
	* score/macros/rtems/score/object.inl: Corrected implementation of
	_Objects_Open, _Objects_Close, and _Objects_Namespace_remove to be
	consistent with the inline implementation.
	* rtems/src/dpmemident.c, rtems/src/msgqident.c, rtems/src/partident.c,
	rtems/src/ratemonident.c, rtems/src/regionident.c, rtems/src/semident.c,
	rtems/src/timerident.c: Corrected use of name parameter to  be
	consistent with fixes implemented to string name processing which were
	committed with the POSIX Message Queue update.

2002-07-04	Joel Sherrill <joel@OARcorp.com>

	* Jump table for single entry point removed.
	* sapi/include/rtems/directives.h, sapi/src/entrytable.c: Removed.
	* sapi/include/Makefile.am, sapi/src/Makefile.am, sapi/src/exinit.c:
	Modified to reflect above.

2002-07-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Install by using cpulibdir, cpulib_DATA.
	* aclocal/check-bsp-cache.m4: Remove RTEMS_BSP_FAMILY.
	* configure.ac: Remove RTEMS_PROJECT_ROOT.
	* aclocal/project-root.m4: Remove.
	* aclocal/enable-multiprocessing.m4: Fix typo.
	* aclocal/prog-cc.m4: Remove obsolete comments. Comment out GCCSED.
	* itron/configure.ac, posix/configure.ac, librpc/configure.ac,
	libblock/configure.ac, libfs/configure.ac, libcsupport/configure.ac,
	libnetworking/configure.ac: Remove RTEMS_PROJECT_ROOT.

2002-07-01	Joel Sherrill <joel@OARcorp.com>

	* Mega patch merge to change the format of the object IDs to loosen the
	dependency between the SCORE and the various APIs. There was
	considerable work to simplify the object name management and it appears
	that the name_table field is no longer needed. This patch also includes
	the addition of the internal mutex which is currently only used to
	protect some types of allocation and deallocation.  This significantly
	can reduce context  switch latency under certain circumstances.  In
	particular, some heap/region operations were O(n) and had dispatching
	disabled.  This should help enormously.  With this merge, the patch is
	not as clean as it should be.  In particular, the documentation has not
	been modified to reflect the new object ID layout, the IDs in the test
	screens are not updated, and _Objects_Get_information needs to be a real
	routine not inlined. As part of this patch a lot of MP code for
	thread/proxy blocking was made conditional and cleaned up.
	* itron/src/cre_mbf.c, itron/src/cre_sem.c, itron/src/eventflags.c,
	itron/src/fmempool.c, itron/src/itronsem.c, itron/src/mbox.c,
	itron/src/msgbuffer.c, itron/src/port.c, itron/src/task.c,
	itron/src/vmempool.c: Modified as part of above.
	* Mega patch merge to change the format of the object IDs to loosen the
	dependency between the SCORE and the various APIs. There was
	considerable work to simplify the object name management and it appears
	that the name_table field is no longer needed. This patch also includes
	the addition of the internal mutex which is currently only used to
	protect some types of allocation and deallocation.  This significantly
	can reduce context  switch latency under certain circumstances.  In
	particular, some heap/region operations were O(n) and had dispatching
	disabled.  This should help enormously.  With this merge, the patch is
	not as clean as it should be.  In particular, the documentation has not
	been modified to reflect the new object ID layout, the IDs in the test
	screens are not updated, and _Objects_Get_information needs to be a real
	routine not inlined. As part of this patch a lot of MP code for
	thread/proxy blocking was made conditional and cleaned up.
	* posix/include/rtems/posix/key.h, posix/src/cond.c,
	posix/src/condinit.c, posix/src/intr.c, posix/src/key.c,
	posix/src/keycreate.c, posix/src/keydelete.c, posix/src/killinfo.c,
	posix/src/mqueue.c, posix/src/mqueuecreatesupp.c, posix/src/mutex.c,
	posix/src/mutexinit.c, posix/src/psignal.c, posix/src/pthread.c,
	posix/src/semaphore.c, posix/src/semaphorecreatesupp.c: Modified as part
	of above.
	* Mega patch merge to change the format of the object IDs to loosen the
	dependency between the SCORE and the various APIs. There was
	considerable work to simplify the object name management and it appears
	that the name_table field is no longer needed. This patch also includes
	the addition of the internal mutex which is currently only used to
	protect some types of allocation and deallocation.  This significantly
	can reduce context  switch latency under certain circumstances.  In
	particular, some heap/region operations were O(n) and had dispatching
	disabled.  This should help enormously.  With this merge, the patch is
	not as clean as it should be.  In particular, the documentation has not
	been modified to reflect the new object ID layout, the IDs in the test
	screens are not updated, and _Objects_Get_information needs to be a real
	routine not inlined. As part of this patch a lot of MP code for
	thread/proxy blocking was made conditional and cleaned up.
	* score/include/Makefile.am, score/include/rtems/score/coremsg.h,
	score/include/rtems/score/coremutex.h,
	score/include/rtems/score/coresem.h, score/include/rtems/score/object.h,
	score/include/rtems/score/threadq.h,
	score/inline/rtems/score/object.inl,
	score/inline/rtems/score/thread.inl,
	score/macros/rtems/score/object.inl, score/src/Makefile.am,
	score/src/coremsg.c, score/src/coremutex.c, score/src/coresem.c,
	score/src/mpci.c, score/src/objectcomparenameraw.c,
	score/src/objectextendinformation.c,
	score/src/objectinitializeinformation.c, score/src/objectnametoid.c,
	score/src/thread.c, score/src/threadclose.c, score/src/threadget.c,
	score/src/threadq.c, score/src/threadqextractwithproxy.c: Modified as
	part of above.
	* score/include/rtems/score/apimutex.h,
	score/src/objectgetnoprotection.c: New files.
	* Mega patch merge to change the format of the object IDs to loosen the
	dependency between the SCORE and the various APIs. There was
	considerable work to simplify the object name management and it appears
	that the name_table field is no longer needed. This patch also includes
	the addition of the internal mutex which is currently only used to
	protect some types of allocation and deallocation.  This significantly
	can reduce context  switch latency under certain circumstances.  In
	particular, some heap/region operations were O(n) and had dispatching
	disabled.  This should help enormously.  With this merge, the patch is
	not as clean as it should be.  In particular, the documentation has not
	been modified to reflect the new object ID layout, the IDs in the test
	screens are not updated, and _Objects_Get_information needs to be a real
	routine not inlined. As part of this patch a lot of MP code for
	thread/proxy blocking was made conditional and cleaned up.
	* sapi/include/confdefs.h, sapi/src/exinit.c, sapi/src/extension.c,
	sapi/src/itronapi.c, sapi/src/posixapi.c, sapi/src/rtemsapi.c: Modified
	as part of above.
	* Mega patch merge to change the format of the object IDs to loosen the
	dependency between the SCORE and the various APIs. There was
	considerable work to simplify the object name management and it appears
	that the name_table field is no longer needed. This patch also includes
	the addition of the internal mutex which is currently only used to
	protect some types of allocation and deallocation.  This significantly
	can reduce context  switch latency under certain circumstances.  In
	particular, some heap/region operations were O(n) and had dispatching
	disabled.  This should help enormously.  With this merge, the patch is
	not as clean as it should be.  In particular, the documentation has not
	been modified to reflect the new object ID layout, the IDs in the test
	screens are not updated, and _Objects_Get_information needs to be a real
	routine not inlined. As part of this patch a lot of MP code for
	thread/proxy blocking was made conditional and cleaned up.
	* rtems/include/rtems.h, rtems/inline/rtems/rtems/region.inl,
	rtems/macros/rtems/rtems/region.inl, rtems/src/dpmem.c,
	rtems/src/dpmemcreate.c, rtems/src/msg.c, rtems/src/msgqcreate.c,
	rtems/src/part.c, rtems/src/partcreate.c, rtems/src/ratemon.c,
	rtems/src/ratemoncreate.c, rtems/src/region.c, rtems/src/regioncreate.c,
	rtems/src/regiondelete.c, rtems/src/regionextend.c,
	rtems/src/regiongetinfo.c, rtems/src/regiongetsegment.c,
	rtems/src/regiongetsegmentsize.c, rtems/src/regionident.c,
	rtems/src/regionreturnsegment.c, rtems/src/rtemstimer.c,
	rtems/src/sem.c, rtems/src/semcreate.c, rtems/src/taskcreate.c,
	rtems/src/taskident.c, rtems/src/tasks.c, rtems/src/timercreate.c:
	Modified as part of above.
	* libmisc/capture/capture-cli.c, libmisc/cpuuse/cpuuse.c,
	libmisc/monitor/mon-monitor.c, libmisc/monitor/mon-object.c,
	libmisc/monitor/monitor.h: Corrected use of _Objects_Information_table
	now that it is a two dimensional array based upon API and class.  In
	addition, in the monitor,  corrected an error which occured when a
	target has 64 bit pointers.
	* libmisc/stackchk/check.c: Corrected use of _Objects_Information_table
	now that it is a two dimensional array based upon API and class.
	* Mega patch merge to change the format of the object IDs to loosen the
	dependency between the SCORE and the various APIs. There was
	considerable work to simplify the object name management and it appears
	that the name_table field is no longer needed. This patch also includes
	the addition of the internal mutex which is currently only used to
	protect some types of allocation and deallocation.  This significantly
	can reduce context  switch latency under certain circumstances.  In
	particular, some heap/region operations were O(n) and had dispatching
	disabled.  This should help enormously.  With this merge, the patch is
	not as clean as it should be.  In particular, the documentation has not
	been modified to reflect the new object ID layout, the IDs in the test
	screens are not updated, and _Objects_Get_information needs to be a real
	routine not inlined. As part of this patch a lot of MP code for
	thread/proxy blocking was made conditional and cleaned up.
	* libblock/src/bdbuf.c: Modified as part of above.
	* libcsupport/src/__times.c: Corrected from previous attempt to cleanup.

2002-06-28	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/src/__times.c: Cleaned up comments, return more
	information, and eliminated the fatal error on clock not set since it
	cannot occur.

2002-06-27	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	* Addition of a ftp client filesystem, comparable to the tftp one.
	* libnetworking/lib/ftpfs.c, libnetworking/rtems/ftpfs.h: New files.
	* libnetworking/lib/Makefile.am, libnetworking/rtems/Makefile.am:
	Modified to reflect above.

2002-06-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/prog-ccas.m4: New.
	* aclocal/canonicalize-tools.m4: Remove AS, OBJCOPY, NM, SIZE, STRIP.
	RTEMS_GCC_PRINT.
	* aclocal/check-multiprocessing.m4: Fix typo.
	* automake/compile.am: Remove CXX support. Replace AS by CCAS. Remove
	LINK_LIBS, LINK_OBJS, LINK_FILES.
	* configure.ac: Use AC_CONFIG_AUX_DIR(..).
	* itron/configure.ac, posix/configure.ac, librpc/configure.ac,
	libblock/configure.ac, libfs/configure.ac, libcsupport/configure.ac,
	libnetworking/configure.ac: Use AC_CONFIG_AUX_DIR(../..). Add
	AC_PROG_RANLIB.

2002-06-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove references to RTEMS_BSP.
	* aclocal/check-multiprocessing.m4: Remove references to RTEMS_BSP.
	Allow building w/ --enable-multiprocessing --enable-multilib.
	* aclocal/enable-multiprocessing.m4: Eliminate RTEMS_HAS_MULTIPROCESSING.
	* itron/configure.ac: Remove references to RTEMS_BSP.
	* itron/src/Makefile.am: Add libitron.a.
	* posix/configure.ac: Remove references to RTEMS_BSP.
	* posix/src/Makefile.am: Add libposix.a.
	* libmisc/wrapup/Makefile.am: Don't preinstall libmisc.a.
	* libblock/src/Makefile.am: Don't preinstall libblock.a.
	* libfs/wrapup/Makefile.am: Don't preinstall libfs.a.
	* libnetworking/wrapup/Makefile.am: Don't preinstall libnetworking.a.

2002-06-25	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	* With the addition of serdbg, the standard polled I/O functions for
	gdbstub and/or printk are optionally routed to any termios-aware device
	driver, that supports polled mode. See libmisc/serdbg/README.
	* libmisc/serdbg/Makefile.am, libmisc/serdbg/README,
	libmisc/serdbg/serdbg.c, libmisc/serdbg/serdbg.h,
	libmisc/serdbg/serdbgcnf.h, libmisc/serdbg/serdbgio.c,
	libmisc/serdbg/termios_printk.c, libmisc/serdbg/termios_printk.h,
	libmisc/serdbg/termios_printk_cnf.h, libmisc/serdbg/.cvsignore: New
	files.
	* libmisc/configure.ac, libmisc/Makefile.am, libmisc/wrapup/Makefile.am:
	Modified to reflect addition.

2002-06-25	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Fix stupid typo in previous patch.
	* configure.ac: Add librpc. AC_PROG_RANLIB.
	* wrapup/Makefile.am: Add librpc. Use relative path to lib*.a for
	POSIX_OBJS, ITRON_OBJS, NETWORKING_OBJS.
	* librpc/configure.ac: RTEMS_TOP(../../../..).
	AC_CONFIG_AUX_DIR(../../../..). Remove RTEMS_CANONICAL_HOST. Use
	RTEMS_ENV_RTEMSCPU. Add AC_PROG_RANLIB.
	* librpc/include/rpc/Makefile.am, librpc/include/Makefile.am,
	librpc/include/rpcsvc/Makefile.am: Include
	$(top_srcdir)/../automake/*.am.
	* librpc/Makefile.am: Include $(top_srcdir)/../automake/*.am.
	ACLOCAL_AMFLAGS = -I ../aclocal.
	* librpc/src/rpc/PSD.doc/Makefile.am, librpc/src/rpc/Makefile.am,
	librpc/src/xdr/Makefile.am, librpc/src/Makefile.am: Include
	$(top_srcdir)/../automake/*.am.

2002-06-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/subdirs.m4: Remove.

2002-06-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Use relative path to lib*.a for LIBCSUPPORT_OBJS,
	LIBBLOCK_OBJS, LIBDOSFS_OBJS, LIBIMFS_OBJS.
	* libblock/Makefile.am: Merge-in include/Makefile.am.
	* libblock/include/Makefile.am: Remove.
	* libblock/configure.ac: Reflect changes above.
	* libnetworking/Makefile.am: Remove commented out net-apps.

2002-06-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Include $(top_srcdir)/automake/*.am. Use aclocal.
	* sapi/include/Makefile.am, sapi/Makefile.am, sapi/inline/Makefile.am,
	sapi/macros/Makefile.am, sapi/src/Makefile.am,
	score/include/Makefile.am, score/Makefile.am, score/cpu/Makefile.am,
	score/inline/Makefile.am, score/macros/Makefile.am,
	score/src/Makefile.am, wrapup/Makefile.am, include/Makefile.am,
	rtems/include/Makefile.am, rtems/Makefile.am, rtems/inline/Makefile.am,
	rtems/macros/Makefile.am, rtems/src/Makefile.am: Include
	$(top_srcdir)/automake/*.am.
	* aclocal/bsp-alias.m4: Copied over from aclocal/.
	* aclocal/canonical-host.m4, aclocal/canonical-target-name.m4,
	aclocal/canonicalize-tools.m4, aclocal/check-bsp-cache.m4,
	aclocal/check-bsps.m4, aclocal/check-cpu.m4, aclocal/check-itron.m4,
	aclocal/check-multiprocessing.m4, aclocal/check-networking.m4,
	aclocal/check-newlib.m4, aclocal/check-posix.m4, aclocal/check-tool.m4,
	aclocal/enable-bare.m4, aclocal/enable-inlines.m4,
	aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4,
	aclocal/enable-networking.m4, aclocal/enable-posix.m4,
	aclocal/enable-rtemsbsp.m4, aclocal/env-rtemsbsp.m4,
	aclocal/env-rtemscpu.m4, aclocal/gcc-pipe.m4, aclocal/gcc-specs.m4,
	aclocal/multi.m4, aclocal/multilib.m4, aclocal/prog-cc.m4,
	aclocal/project-root.m4, aclocal/rtems-cpu-subdirs.m4,
	aclocal/rtems-debug.m4, aclocal/rtems-top.m4, aclocal/subdirs.m4,
	aclocal/sysv-ipc.m4, aclocal/tool-paths.m4, aclocal/version.m4: Ditto.
	* itron/include/Makefile.am: Include $(top_srcdir)/../automake/*.am.
	* itron/Makefile.am: Include $(top_srcdir)/../automake/*.am. Use
	../aclocal.
	* itron/inline/Makefile.am, itron/macros/Makefile.am,
	itron/src/Makefile.am, posix/include/Makefile.am: Include
	$(top_srcdir)/../automake/*.am.
	* posix/Makefile.am: Include $(top_srcdir)/../automake/*.am. Use
	../aclocal.
	* posix/inline/Makefile.am, posix/macros/Makefile.am,
	posix/src/Makefile.am, libblock/include/Makefile.am: Include
	$(top_srcdir)/../automake/*.am.
	* libblock/Makefile.am: Include $(top_srcdir)/../automake/*.am. Use
	../aclocal.
	* libblock/src/Makefile.am, libfs/src/dosfs/Makefile.am,
	libfs/src/Makefile.am, libfs/src/imfs/Makefile.am: Include
	$(top_srcdir)/../automake/*.am.
	* libfs/Makefile.am: Include $(top_srcdir)/../automake/*.am. Use
	../aclocal.
	* libfs/wrapup/Makefile.am: Include $(top_srcdir)/../automake/*.am.
	* libcsupport/Makefile.am: Merge src/Makefile.am.
	* libcsupport/configure.ac: Reflect changes above.
	* libcsupport/src/Makefile.am: Remove.
	* libcsupport/Makefile.am: Include $(top_srcdir)/../automake/*.am. Use
	../aclocal.
	* libcsupport/src/Makefile.am, libnetworking/arpa/Makefile.am,
	libnetworking/kern/Makefile.am: Include $(top_srcdir)/../automake/*.am.
	* libnetworking/Makefile.am: Include $(top_srcdir)/../automake/*.am. Use
	../aclocal.
	* libnetworking/lib/Makefile.am, libnetworking/libc/Makefile.am,
	libnetworking/machine/Makefile.am, libnetworking/net/Makefile.am,
	libnetworking/netinet/Makefile.am, libnetworking/nfs/Makefile.am,
	libnetworking/rtems/Makefile.am, libnetworking/sys/Makefile.am,
	libnetworking/vm/Makefile.am, libnetworking/wrapup/Makefile.am: Include
	$(top_srcdir)/../automake/*.am.

2002-06-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am, automake/lib.am, automake/local.am,
	automake/multilib.am, automake/subdirs.am: Copied over from automake/.
	* Makefile.am: Add automake/*.am.

2002-06-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/rtems/Makefile.am: include multilib.am instead of
	RTEMS_BSP.cfg.

2002-05-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/configure.ac: Remove RTEMS_CHECK_POSIX_API. Remove
	RTEMS_ENABLE_POSIX. Remove RTEMS_CHECK_CUSTOM_BSP. Remove
	RTEMS_ENABLE_POSIX.

2002-05-29	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add libnetworking.
	* wrapup/Makefile.am: Ditto. Relocate c/src/libnetworking.
	* libnetworking/Makefile.am: Reflect moval.
	* libnetworking/machine/Makefile.am, libnetworking/net/Makefile.am,
	libnetworking/lib/Makefile.am, libnetworking/netinet/Makefile.am,
	libnetworking/vm/Makefile.am, libnetworking/libc/Makefile.am,
	libnetworking/sys/Makefile.am, libnetworking/arpa/Makefile.am,
	libnetworking/nfs/Makefile.am, libnetworking/kern/Makefile.am,
	libnetworking/rtems/Makefile.am, libnetworking/configure.ac: Ditto.
	* libnetworking/wrapup/Makefile.am: Ditto. Remove references to
	networking apps.

2002-05-24	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/configure.ac, libmisc/Makefile.am: Remove references to rootfs.

2002-05-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add libblock. Add libfs. Add AM_CONDITIONAL(UNIX).
	* wrapup/Makefile.am: Add libblock, libfs/dosfs, libfs/imfs.
	* libblock/configure.ac, libblock/Makefile.am,
	libblock/include/Makefile.am, libblock/src/Makefile.am: Reflect move
	from c/src/libblock to c/src/exec/libblock.
	* libfs/configure.ac: Reflect move from c/src/libfs to c/src/exec/libfs.
	* libfs/Makefile.am, libfs/src/Makefile.am, libfs/src/dosfs/Makefile.am,
	libfs/src/imfs/Makefile.am, libfs/wrapup/Makefile.am: Ditto.
	* libnetworking/rtems_telnetd/pty.c: Remove bsp.h. Include
	<rtems/bspIo.h>.

2002-05-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/rootfs/.cvsignore, libmisc/rootfs/Makefile.am,
	libmisc/rootfs/mkrootfs.h, libmisc/rootfs/mkrootfs.c: Remove.
	* libmisc/configure.ac: Remove rootfs and NETWORKING macros.
	* libmisc/wrapup/Makefile.am: Remove rootfs and HAS_NETWORKING.
	* libnetworking/rtems/mkrootfs.c: Add (relocated from libmisc/rootfs).
	* libnetworking/rtems/mkrootfs.h: Ditto.
	* libnetworking/rtems/Makefile.am: Reflect changes above.

2002-05-16	Chris Johns <ccj@acm.org>

	PR 194
	* libmisc/*: Added the Capture engine.
	* libmisc/capture/Makefile.am, libmisc/capture/README,
	libmisc/capture/capture-cli.c, libmisc/capture/capture-cli.h,
	libmisc/capture/capture.c, libmisc/capture/capture.h,
	libmisc/capture/.cvsignore: New files.
	* libmisc/Makefile.am, libmisc/configure.ac, libmisc/wrapup/Makefile.am:
	Modified to reflect addition.

2002-05-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add libcsupport.
	* wrapup/Makefile.am: Ditto.
	* Makefile.am: Add preinstall-stamp.

2002-05-15	Chris Johns <ccj@acm.org>

	* score/include/rtems/score/thread.h,
	score/inline/rtems/score/thread.inl, score/src/threaddispatch.c,
	score/src/threadinitialize.c: Move the C library re-enterrant support
	directly into the thread dispatch code. RTEMS needs libc and so
	requiring libc to use a user extension with its overhead is not the best
	solution. This patch lowers the overhead to 2 pointer moves.

2002-05-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/sys/ioctl.h, libnetworking/sys/sockio.h,
	libnetworking/sys/filio.h: Remove.
	* libnetworking/sys/Makefile.am: Reflect changes above.

2002-05-03	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/Makefile.am: Work-around to autoconf-2.53 adding
	PACKAGE_* to autoheaders - sed out *PACKAGE* from cpuopts-tmp.h.

2002-05-03	Ralf Corsepius <corsepiu@faw.uni-ulm.de>	

	* posix/include/sys/utsname.h: Remove.
	* posix/include/Makefile.am: Reflect changes above.
	* posix/src/utsname.c: Remove.
	* posix/src/Makefile.am: Reflect changes above.

2002-05-01	Eric Norum <eric.norum@usask.ca>

	* libnetworking/machine/in_cksum.h: Per PR200 fix multi-line inline
	assembly  to satisfy gcc 3.1 and newer.

2002-04-26	Eric Norum <eric.norum@usask.ca>

	* libnetworking/netinet/in_cksum_i386.c: Add volatile so the more
	agressive optimization in gcc 3.1 does not reorder things.

2002-04-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/rtems/system.h: Remove targopts.h.
	* libnetworking/pppd/utils.c: Adapt to gcc-3.x.

2002-04-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/rtems/system.h: Add the sparc to the target supporting
	multlibs.

2002-04-16	Chris Johns <ccj@acm.org>

	* score/src/threadinitialize.c: Per PR181, clear the array of user
	extension pointers. This lets user extensions that have hooked the
	switch handler know if a task has been processed by the user extension
	before. If a user extension is created after a task is started it may
	not know it.

2002-04-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove ENABLE_GCC28.

2002-04-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/rtems/system.h: Add i386 to multilib-able targets.

2002-04-11	Chris Johns <ccj@acm.org>

	PR 59/networking
	* libnetworking/c/src/libnetworking/rtems/rtems_bsdnet.h: Add the
	drv_ctrl driver control block field to the ifconfig network driver
	structure. This field is needed by the i82586 driver which was ported
	from NetBSD as it had better hardware abstraction.

2002-04-10	Victor V. Vengerov <vvv@oktet.ru>

	PR 385/filesystem
	* libblock/src/ramdisk.c: The "from" and "to" locations are calculated
	as the start of the block within the ram that data is to be transferred
	from/to for reads and writes respectively.  However, within the loops,
	the "from" and "to" locations are never updated.  The loop should have
	been updated as: from += rd->block_size; and to += rd->block_size;
	within the for loops in the ramdisk_read and ramdisk_write routines,
	respectively.

2002-04-08	Chris Johns <ccj@acm.org>

	* Per PR142, make task switch extension its own list.
	* posix/src/pthread.c (_POSIX_Threads_User_extensions): Reflect above.
	* Per PR141 and PR174, make task switch extension its own list and fix
	all odd problems introduced by providing macro version.
	* score/inline/rtems/score/userext.inl: Fix.
	* Per PR142, make task switch extension its own list.
	* score/include/rtems/score/userext.h: Reflect above by adding 
	User_extensions_Switch_control and adding it to User_extenions_Control.
	* score/inline/rtems/score/userext.inl: Allocate all memory in one chunk
	to minimize overhead.  Address processing dedicated switch chain.
	* Per PR142, make task switch extension its own list.
	* score/include/rtems/score/userext.h: Reflect above by adding 
	User_extensions_Switch_control and adding it to User_extenions_Control.
	* score/inline/rtems/score/userext.inl: Allocate all memory in one chunk
	to minimize overhead.  Address processing dedicated switch chain.
	* Per PR142, make task switch extension its own list.
	* rtems/src/tasks.c (_RTEMS_tasks_User_extensions): Reflect above.

2002-04-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* include/rtems/bspIo.h: Fix cpp-guards, remove references to i386.
	* posix/src/psignal.c: Include <stdlib.h>.
	* libblock/src/ramdisk.c, libblock/src/blkdev.c,
	libfs/src/imfs/imfs_getchild.c: include <string.h>.
	* libfs/src/imfs/imfs_gtkn.c, libfs/src/imfs/ioman.c,
	libfs/src/imfs/linearfile.c, libfs/src/imfs/memfile.c: Include
	<string.h>.
	* libnetworking/ChangeLog: Fix dates.

2002-04-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/monitor/mon-monitor.c: Replace done with return (gcc3).
	* libfs/src/dosfs/fat.h: Include <string.h>. Remove DBG1 and DBG2
	(unused).
	* Per PR169.
	* libfs/src/dosfs/config.h.in, libfs/src/dosfs/stamp-h2.in: Removed from
	CVS.

2002-04-03	Alexander Kukuta <kam@oktet.ru>

	* libblock/include/rtems/bdbuf.h: Address PR168 by changing
	bdbuf_buffer.avl.bal and bdbuf_buffer.avl.cache to signed char instead
	of char.

2002-04-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* posix/src/getegid.c: Remove <errno.h>.
	* posix/src/geteuid.c, posix/src/getgid.c, posix/src/getuid.c: Ditto.
	* posix/src/getlogin.c: Move <errno.h>.

2002-03-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/libc/rcmd.c: Replace __rtems w/ __rtems__.

2002-03-27	Thomas.Doerfler@imd-systems.de

	PR 144
	* libnetworking/nfs/bootp_subr.c bootpc_init(): Performs a write to
	memory address 0 when called for the first time. This is done when
	trying to clear the variable "dhcp_hostname".

2002-03-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* include/Makefile.am, Makefile.am, wrapup/Makefile.am: Remove
	AUTOMAKE_OPTIONS.
	* itron/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* itron/include/Makefile.am, itron/Makefile.am,
	itron/inline/Makefile.am, itron/macros/Makefile.am,
	itron/src/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* posix/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* posix/src/Makefile.am, posix/Makefile.am, posix/include/Makefile.am,
	posix/inline/Makefile.am, posix/macros/Makefile.am,
	score/cpu/Makefile.am, score/src/Makefile.am, score/Makefile.am,
	score/include/Makefile.am, score/inline/Makefile.am,
	score/macros/Makefile.am, sapi/Makefile.am, sapi/include/Makefile.am,
	sapi/inline/Makefile.am, sapi/macros/Makefile.am, sapi/src/Makefile.am,
	rtems/Makefile.am, rtems/include/Makefile.am, rtems/inline/Makefile.am,
	rtems/macros/Makefile.am, rtems/src/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libmisc/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* libmisc/Makefile.am, libmisc/cpuuse/Makefile.am,
	libmisc/devnull/Makefile.am, libmisc/dummy/Makefile.am,
	libmisc/dumpbuf/Makefile.am, libmisc/monitor/Makefile.am,
	libmisc/mw-fb/Makefile.am, libmisc/rootfs/Makefile.am,
	libmisc/rtmonuse/Makefile.am, libmisc/shell/Makefile.am,
	libmisc/stackchk/Makefile.am, libmisc/untar/Makefile.am,
	libmisc/wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librpc/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* librpc/include/rpc/Makefile.am, librpc/include/Makefile.am,
	librpc/include/rpcsvc/Makefile.am, librpc/Makefile.am,
	librpc/src/rpc/PSD.doc/Makefile.am, librpc/src/rpc/Makefile.am,
	librpc/src/xdr/Makefile.am, librpc/src/Makefile.am: Remove
	AUTOMAKE_OPTIONS.
	* libblock/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* libblock/include/Makefile.am, libblock/Makefile.am,
	libblock/src/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libfs/src/dosfs/fat_file.c: Remove bsp.h.  fat_file_write(.. const
	char*buf ..).
	* libfs/src/dosfs/fat_file.h: fat_file_write(.. const char*buf ..).
	* libfs/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* libfs/src/dosfs/Makefile.am, libfs/src/Makefile.am,
	libfs/src/imfs/Makefile.am, libfs/Makefile.am, libfs/wrapup/Makefile.am:
	Remove AUTOMAKE_OPTIONS.
	* libnetworking/configure.ac:
	AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define
	foreign 1.6]).
	* libnetworking/arpa/Makefile.am, libnetworking/kern/Makefile.am,
	libnetworking/Makefile.am, libnetworking/lib/Makefile.am,
	libnetworking/libc/Makefile.am, libnetworking/machine/Makefile.am,
	libnetworking/net/Makefile.am, libnetworking/netinet/Makefile.am,
	libnetworking/nfs/Makefile.am, libnetworking/pppd/Makefile.am,
	libnetworking/rtems/Makefile.am,
	libnetworking/rtems_servers/Makefile.am,
	libnetworking/rtems_telnetd/Makefile.am,
	libnetworking/rtems_webserver/Makefile.am,
	libnetworking/sys/Makefile.am, libnetworking/vm/Makefile.am,
	libnetworking/wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.

2002-03-27	Ilya Alexeev <ilya@continuum.ru>

	PR 162
	* libnetworking/net/if_ppp.c ppp_txdaemon(),
	libnetworking/net/if_pppvar.h pppstart(): Local variables must not be
	used in a device write routines.  Now ppp_softc structure have own
	character for writing to device (sc_outchar).  I think that converting
	local variables to static is not a right solution, because problems will
	occur in the case of two or more ppp instances.
	* libnetworking/net/ppp_tty.c pppstart(): Type of the ioffset variable
	must be u_long, otherwise in the case of the big output packet endless
	loop may occur.

2002-03-25	Eric Norum <norume@aps.anl.gov>

	PR 374/networking
	* libnetworking/Makefile.am, libnetworking/rtems/rtems_bsdnet.h,
	libnetworking/rtems/rtems_glue.c: The patch sent as part of PR270 got
	applied to the wrong place.   The effect was that (1) startup was no
	faster than before and (2) malloc starvation messages came way too
	quickly.  The attached patch fixes both these problems and also provides
	a mechanism for applications to handle malloc starvation conditions as
	they see fit.
	* libnetworking/rtems/rtems_bsdnet_malloc_starvation.c: New file.

2002-03-21	Ilya Alexeev <ilya@continuum.ru>

	* libnetworking/net/if_ppp.c, libnetworking/net/ppp_tty.c: Initial
	preparations for multiple PPPD connections.

2002-03-21	Alexander Kukuta <kam@oktet.ru>

	* libblock/src/bdbuf.c (avl_insert, libblock/avl_remove): Reimplemented
	from scratch to avoid using GPLed sources in RTEMS core.
	* libblock/src/bdbuf.c, libblock/include/rtems/bdbuf.h: Remove "binary
	tree" implementation which was used for debugging only.

2002-03-20	Chris Johns <ccj@acm.org>

	PR 192
	* libmisc/monitor/mon-command.c: The RTEMS monitor makes everything
	lowercase. The capture engine need to set triggers or watches on task
	with uppercase names.   Also stop the monitor repeating command when
	enter is pressed.
	PR 148.
	* libmisc/monitor/mon-prmisc.c: Fixed to print task states correctly.

2002-03-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 140
	* libfs/src/dosfs/config.h.in, libfs/src/dosfs/stamp-h2.in: Removed.
	* libfs/.cvsignore: Add config.h*, stamp-h*.
	* libfs/configure.ac: Remove AC_SRC_DIR(.../dosfs.h). Remove
	AM_CONFIG_HEADER(src/dosfs/config.h). Remove
	AM_CONFIG_HEADER(src/imfs/config.h). Add AM_CONFIG_HEADER(config.h).
	* libfs/src/dosfs/Makefile.am, libfs/src/imfs/Makefile.am: INCLUDES =
	-I../...

2002-03-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 130
	* libfs/src/dosfs/Makefile.am: Reworked, Disable dosfs for UNIX.
	* libfs/wrapup/Makefile.am: Disable dosfs for UNIX.

2002-03-13	Victor V. Vengerov <vvv@oktet.ru>

	* libblock/src/bdbuf.c (find_or_assign_buffer,
	libblock/rtems_bdbuf_read, libblock/rtems_bdbuf_sync,
	libblock/rtems_bdbuf_syncdev, libblock/bdbuf_swapout_task): Fix bug:
	disable interrupts and set level properly before _CORE_mutex_Seize
	invocation).

2002-03-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/rtems/system.h: Add __RTEMS_REVISION__.

2002-03-01	Eric Norum <eric.norum@usask.ca>

	* posix/src/pthreadonce.c: Task is not preemptable while running a 
	pthread_once init function.  This is slightly less heavy handed than
	disabling dispatching and seems better than consuming a mutex.

2002-02-28	Victor V. Vengerov <vvv@oktet.ru>

	* DOS filesystem including FAT12, FAT16, and FAT32 support submitted.
	* libfs/src/dosfs, libfs/src/dosfs/Makefile.am,
	libfs/src/dosfs/stamp-h2.in, libfs/src/dosfs/config.h.in,
	libfs/src/dosfs/dosfs.h, libfs/src/dosfs/fat.c, libfs/src/dosfs/fat.h,
	libfs/src/dosfs/fat_fat_operations.c,
	libfs/src/dosfs/fat_fat_operations.h, libfs/src/dosfs/fat_file.c,
	libfs/src/dosfs/fat_file.h, libfs/src/dosfs/msdos.h,
	libfs/src/dosfs/msdos_create.c, libfs/src/dosfs/msdos_dir.c,
	libfs/src/dosfs/msdos_eval.c, libfs/src/dosfs/msdos_file.c,
	libfs/src/dosfs/msdos_free.c, libfs/src/dosfs/msdos_fsunmount.c,
	libfs/src/dosfs/msdos_handlers_dir.c,
	libfs/src/dosfs/msdos_handlers_file.c, libfs/src/dosfs/msdos_init.c,
	libfs/src/dosfs/msdos_initsupp.c, libfs/src/dosfs/msdos_misc.c,
	libfs/src/dosfs/msdos_mknod.c, libfs/src/dosfs/msdos_node_type.c,
	libfs/src/dosfs/.cvsignore: New files.
	* libfs/configure.ac, libfs/src/Makefile.am, libfs/wrapup/Makefile.am:
	Modified to reflect addition.

2002-02-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/rtems/system.h: Add __RTEMS_MAJOR__, __RTEMS_MINOR__.

2002-02-28	Joel Sherrill <joel@OARcorp.com>

	* Submitted by Victor V. Vengerov <vvv@oktet.ru> and merged into the
	RTEMS source.
	* libblock/ChangeLog, libblock/Makefile.am, libblock/README,
	libblock/configure.ac, libblock/include/Makefile.am,
	libblock/include/rtems/bdbuf.h, libblock/include/rtems/blkdev.h,
	libblock/include/rtems/diskdevs.h, libblock/include/rtems/ramdisk.h,
	libblock/include/rtems/.cvsignore, libblock/include/.cvsignore,
	libblock/src/Makefile.am, libblock/src/bdbuf.c, libblock/src/blkdev.c,
	libblock/src/diskdevs.c, libblock/src/ramdisk.c,
	libblock/src/.cvsignore, libblock/.cvsignore: New files.

2002-02-27	Ilya Alexeev <ilya@continuum.ru>

	* libnetworking/net/if_ppp.c, libnetworking/pppd/auth.c,
	libnetworking/pppd/chat.c, libnetworking/pppd/pppd.h,
	libnetworking/pppd/sys-rtems.c: Add server with pap-authorization 
	capabilities as well as eliminate some warnings.

2002-02-27	Eric Norum <eric.norum@usask.ca>

	* libnetworking/net/radix.c: Properly handle fetching the default route
	when there is no route.  This was a bug in the original FreeBSD code and
	this fix is from an updated version of their code.

2002-02-16	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.clib/tftpDriver.c: Fix TFTP block number
	checking.

2002-02-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* posix/src/getegid.c: Add #include <rtems/userenv.h>. Remove #include
	<rtems/libio_.h>.
	* posix/src/geteuid.c, posix/src/getgid.c, posix/src/getlogin.c,
	posix/src/getuid.c: Ditto.

2002-02-05	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Readded reference to wrapup.
	* posix/configure.ac: AC_CONFIG_SRCDIR([src/pthreads.c]).
	* posix/src/psignal.c: #include <string.h>.
	* libnetworking/pppd/sys-rtems.c: Remove unused variable status from
	dodefaultroute.

2002-02-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/lib/tftpDriver.c: Remove set_errno_and_return_minus_one,
	include <rtems/seterr.h>.

2002-02-01	Mike Siers <mikes@poliac.com>

	* libnetworking/pppd/rtemspppd.c (rtems_pppd_disconnect): Modified to
	avoid bringing the link down too fast. NOTE: Mike reports successfully
	running at 56K baud on a direct link.

2002-01-31	Mike Siers <mikes@poliac.com>

	* libnetworking/pppd/rtemsdialer.h: New file missed in previous commit.
	* libnetworking/*: Update of PPPD support which eliminates the
	requirement that drivers be in the termios TASK_DRIVEN mode. Mike did
	significant testing and reports that it seems to be more stable and
	handle larger packets better.  This patch replaces the termios tasks
	with more general pppd network driver tasks.  The functions pppinput()
	and pppstart() get  called from the interrupt service routine.
	* libnetworking/Makefile.am, libnetworking/configure.ac,
	libnetworking/net/Makefile.am, libnetworking/net/bpf.h,
	libnetworking/net/ethernet.h, libnetworking/net/if.c,
	libnetworking/net/if.h, libnetworking/net/if_arp.h,
	libnetworking/net/if_dl.h, libnetworking/net/if_ethersubr.c,
	libnetworking/net/if_llc.h, libnetworking/net/if_loop.c,
	libnetworking/net/if_ppp.h, libnetworking/net/if_pppvar.h,
	libnetworking/net/if_types.h, libnetworking/net/netisr.h,
	libnetworking/net/ppp-comp.h, libnetworking/net/ppp_defs.h,
	libnetworking/net/pppcompress.h, libnetworking/net/radix.c,
	libnetworking/net/radix.h, libnetworking/net/raw_cb.c,
	libnetworking/net/raw_cb.h, libnetworking/net/raw_usrreq.c,
	libnetworking/net/route.c, libnetworking/net/route.h,
	libnetworking/net/rtsock.c, libnetworking/pppd/Makefile.am,
	libnetworking/pppd/README, libnetworking/pppd/STATUS,
	libnetworking/pppd/auth.c, libnetworking/pppd/cbcp.c,
	libnetworking/pppd/ccp.c, libnetworking/pppd/ccp.h,
	libnetworking/pppd/chap.c, libnetworking/pppd/chap.h,
	libnetworking/pppd/chap_ms.c, libnetworking/pppd/chap_ms.h,
	libnetworking/pppd/chat.c, libnetworking/pppd/demand.c,
	libnetworking/pppd/fsm.c, libnetworking/pppd/fsm.h,
	libnetworking/pppd/ipcp.c, libnetworking/pppd/ipcp.h,
	libnetworking/pppd/ipxcp.c, libnetworking/pppd/ipxcp.h,
	libnetworking/pppd/lcp.c, libnetworking/pppd/lcp.h,
	libnetworking/pppd/magic.c, libnetworking/pppd/magic.h,
	libnetworking/pppd/options.c, libnetworking/pppd/patchlevel.h,
	libnetworking/pppd/pathnames.h, libnetworking/pppd/pppd.8,
	libnetworking/pppd/pppd.h, libnetworking/pppd/rtemsmain.c,
	libnetworking/pppd/rtemspppd.c, libnetworking/pppd/rtemspppd.h,
	libnetworking/pppd/sys-rtems.c, libnetworking/pppd/upap.c,
	libnetworking/pppd/upap.h, libnetworking/pppd/utils.c,
	libnetworking/pppd/example/README,
	libnetworking/pppd/example/netconfig.h,
	libnetworking/wrapup/Makefile.am: Modified.
	* libnetworking/net/bsd-comp.c, libnetworking/net/if_ppp.c,
	libnetworking/net/ppp-deflate.c, libnetworking/net/ppp.h,
	libnetworking/net/ppp_tty.c, libnetworking/net/pppcompress.c,
	libnetworking/net/zlib.c, libnetworking/net/zlib.h: New file.
	* libnetworking/modem/, libnetworking/modem/.cvsignore,
	libnetworking/modem/Makefile.am, libnetworking/modem/ppp.c,
	libnetworking/modem/ppp.h, libnetworking/modem/ppp_tty.c,
	libnetworking/modem/pppcompress.c: Subdirectory removed.

2002-01-29	Joel Sherrill <joel@OARcorp.com>

	* score/include/rtems/score/watchdog.h: Added WATCHDOG_MAXIMUM_INTERVAL.

2002-01-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/shell/shell.c: Remove #undef __STRICT_ANSI__.

2002-01-25	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/configure.ac: Fix tests for GCC.

2002-01-24	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/configure.ac: Add check for weak function attribute. Remove
	AM_CONDITIONAL([RTEMS_LIBSHELL]. Add AM_CONDITIONAL(LIBSHELL),
	AM_CONDITIONAL(LIBSERDBG).
	* libmisc/capture/Makefile.am, libmisc/cpuuse/Makefile.am,
	libmisc/devnull/Makefile.am, libmisc/dummy/Makefile.am,
	libmisc/dumpbuf/Makefile.am, libmisc/monitor/Makefile.am,
	libmisc/mw-fb/Makefile.am, libmisc/rtmonuse/Makefile.am: Use *.a instead
	of *-tmp.a.
	* libmisc/serdbg/Makefile.am: Use *.a instead of *-tmp.a. Build iff
	LIBSERDBG is true.
	* libmisc/shell/Makefile.am: Use *.a instead of *-tmp.a. Build iff
	LIBSHELL is true.
	* libmisc/stackchk/Makefile.am, libmisc/untar/Makefile.am: Use *.a
	instead of *-tmp.a.
	* libmisc/wrapup/Makefile.am: Reflect changes above.

2002-01-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/rtems_telnetd/pty.c: Move config.h to were it belongs.
	Remove printf (Reported by Till Straumann <strauman@SLAC.Stanford.EDU>).

2002-01-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/rtems/system.h: Fix typo in yesterday's change:
	RTEMS_MULTILIBS.

2002-01-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Apply @subdirs. Remove POSIX_SUBDIRS. Remove
	ITRON_SUBDIRS.
	* configure.ac: Rework enable_unixlib handling.  Add RTEMS_MULTILIBS to
	cpuopts.h.
	* include/Makefile.am: Add rtems/fs.h, rtems/userenv.h. Add
	$(PROJECT_INCLUDE)/rtems. Remove libio_.h.

2002-01-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Add install-hook.  Remove SIZE_RTEMS.
	* include/rtems/fs.h: New, extracted from libio_.h.
	* include/rtems/userenv.h: New. extracted from libio_.h.
	* libmisc/rootfs/Makefile.am: Use include_rtems_HEADERS instead of
	H_FILES.
	* libfs/src/imfs/imfs_load_tar.c: Add include <sys/types.h>. Add include
	<sys/stat.h>. Add include <fcntl.h>.
	* libfs/src/imfs/imfs_rmnod.c: Add include <stdlib.h>.

2002-01-07	Joel Sherrill <joel@OARcorp.com>

	* posix/optman/, posix/optman/.cvsignore, posix/optman/Makefile.am,
	sapi/optman/, sapi/optman/.cvsignore, sapi/optman/Makefile.am,
	sapi/optman/no-ext.c, sapi/optman/no-io.c, rtems/optman/,
	rtems/optman/.cvsignore, rtems/optman/Makefile.am,
	rtems/optman/no-dpmem.c, rtems/optman/no-event.c, rtems/optman/no-mp.c,
	rtems/optman/no-msg.c, rtems/optman/no-part.c, rtems/optman/no-region.c,
	rtems/optman/no-rtmon.c, rtems/optman/no-sem.c,
	rtems/optman/no-signal.c, rtems/optman/no-timer.c: Removed entire
	contents of optman/ directory since it has been moved.

2002-01-06	Joel Sherrill <joel@OARcorp.com>

	* wrapup/.cvsignore: Readded.
	* include/.cvsignore: New file.

2002-01-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/rtems/seterr.h: Add do {..} while (0) in defines. Rename
	set_errno_and_return_minus_one into rtems_set_errno_and_return_minus_one.
	* libmisc/mw-fb/mw_uid.c: Apply rtems_set_errno_and_return_minus_one.
	* libfs/src/imfs/imfs_eval.c, libfs/src/imfs/memfile.c,
	libfs/src/imfs/imfs_readlink.c, libfs/src/imfs/imfs_unlink.c,
	libfs/src/imfs/imfs_link.c, libfs/src/imfs/imfs_chown.c,
	libfs/src/imfs/ioman.c, libfs/src/imfs/imfs_mount.c,
	libfs/src/imfs/imfs_directory.c, libfs/src/imfs/imfs_stat.c,
	libfs/src/imfs/imfs_fchmod.c, libfs/src/imfs/imfs_symlink.c,
	libfs/src/imfs/imfs_mknod.c, libfs/src/imfs/linearfile.c,
	libfs/src/imfs/imfs_unmount.c: Include <rtems/seterr.h>. Apply
	rtems_set_errno_and_return_minus_one.
	* libfs/src/imfs/imfs.h: Apply rtems_set_errno_and_return_minus_one.
	Comment out increment_and_check_linkcounts.

2002-01-04	Joel Sherrill <joel@OARcorp.com>

	* Makefile.am, configure.ac: Remove references to wrapup subdirectory.

2001-12-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Use AS_IF instead of if/then/else. Add
	AC_DEFINE_UNQUOTED(RTEMS_UNIX) for RTEMS_CPU==unix. Add
	AC_DEFINE_UNQUOTED(RTEMS_UNIXLIB) for RTEMS_CPU==unix. Add
	include/Makefile to CONFIG_FILES. Add AC_ENABLE_MULITLIB. Remove
	wrapup/rtems, wrapup/itron, wrapup/posix. Remove */optman/Makefile from
	CONFIG_FILES.
	* Makefile.am: Add include to SUBDIRS.
	* rtems/Makefile.am, sapi/Makefile.am: Remove optman from SUBDIRS.
	* include/Makefile.am: New file.
	* include/rtems/bspIo.h, include/rtems/libio_.h: Relocated from
	lib/include.
	* posix/configure.ac: Remove optman/Makefile from CONFIG_FILES.
	* posix/Makefile.am: Remove optman from SUBDIRS.

2001-12-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/posix/Makefile.am, wrapup/itron/Makefile.am,
	wrapup/rtems/Makefile.am, Makefile.am, itron/src/Makefile.am: Add
	multilib support.
	* posix/optman/Makefile.am: Add multilib support. Remove ASM4FLAGS.
	* posix/src/Makefile.am: Add multilib support.
	* score/inline/rtems/score/object.inl,
	score/macros/rtems/score/object.inl: Add add casts to Objects_Id in
	_Objects_Build_ids to avoid implicit typecasts from enum to int16 on
	bit16 targets (here: h8300).
	* score/src/Makefile.am, sapi/optman/Makefile.am, sapi/src/Makefile.am,
	rtems/src/Makefile.am, rtems/optman/Makefile.am: Add multilib support.

2001-12-18	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Allow chdir() to work on TFTP
	`directories' (path names with a / at the end) while disallowing open()
	operations on TFTP `directories'.

2001-12-07	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Restore write capability.

2001-11-29	Victor V. Vengerov <vvv@oktet.ru>

	* AVL trees implementation added.

2001-11-28	Joel Sherrill <joel@OARcorp.com>,

	PR 91
	* score/include/rtems/score/isr.h, score/inline/rtems/score/isr.inl,
	score/macros/rtems/score/isr.inl: Modified to allow any port to provide 
	its own implementation of the macro _ISR_Is_in_progress.  If the port
	overrides this macro, it must provide a non-inlined function
	implementation.

2001-11-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libfs/wrapup/Makefile.am: Remove HAS_IMFS.

2001-11-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libfs/src/imfs/Makefile.am: Cleanup.
	* libnetworking/arpa/Makefile.am: Remove stray lines.

2001-11-20	Joel Sherrill <joel@OARcorp.com>

	* score/src/threadhandler.c: When __USE__MAIN__ is defined by the
	toolset, invoke the global constructors via __main.  Reported as tested
	by  Alexandra Kossovsky <sasha@oktet.ru> and  Victor V. Vengerov
	<vvv@oktet.ru> in conjunction with a new set of tool RPMs
	(gcc2.95.3newlib1.9.0-3).  This was tracked as GNATS PR tools/84.

2001-11-16	Victor V. Vengerov <vvv@oktet.ru>

	* libblock/include/rtems/bdbuf.h,
	libblock/src/bdbuf.c(rtems_bdbuf_syncdev): New.

2001-11-07	Victor V. Vengerov <vvv@oktet.ru>

	* libblock/ChangeLog: New file.
	* libblock/src/, libblock/include/, libblock/include/rtems/: New
	directories.
	* libblock/README, libblock/configure.ac, libblock/Makefile.am,
	libblock/src/Makefile.am, libblock/include/Makefile.am,
	libblock/include/rtems/bdbuf.h include/rtems/blkdev.h  
	include/rtems/diskdevs.h include/rtems/ramdisk.h src/bdbuf.c
	src/blkdev.c src/diskdevs.c src/ramdisk.c: New files.

2001-11-07	Joel Sherrill <joel@OARcorp.com>

	Discovered while fixing PR36 reported by Todor.Todorov@barco.com.
	* itron/include/rtems/itron/object.h: Corrected _ITRON_Objects_Get()  to
	use _Objects_Get_by_index().
	PR 36 (Reported by Todor.Todorov@barco.com)
	* score/include/rtems/score/object.h: Added prototype for
	_Objects_Get_by_index().
	* score/src/objectget.c, score/src/objectgetisr.c: Corrected procedure
	for getting index from Id so it is correct and optimal for both single
	and multiprocessor configurations.

2001-11-07	Jennifer Averett <jennifer@OARcorp.com>

	Reported by Ibragimov Ilya <ibr@oktet.ru> and tracked as PR49.
	* libfs/ src/imfs/imfs_directory.c: Do not calculate the offset twice.

2001-10-26	Victor V. Vengerov <vvv@oktet.ru>

	* libfs/src/imfs/imfs_load_tar.c: Minor modification so this will
	compile with gcc-2.95.3 with the arguments "-m5200 -O4".

2001-10-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* rtems/macros/Makefile.am: Replace INLINES w/ MACROS (Fix stupid typo
	in previous patch).

2001-10-23	Joel Sherrill <joel@OARcorp.com>

	* rtems/macros/rtems/rtems/asr.nil: Fixed typo.

2001-10-22	Joel Sherrill <joel@OARcorp.com>

	* score/src/threadhandler.c: Use __USE_INIT_FINI__ since USE_INIT_FINI
	pollutes the application namespace.

2001-10-18	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Properly handles ../ components in
	chdir() and open() operations within the TFTP file system.

2001-10-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Use RTEMS_CPU_SUBDIRS to make autoconf-2.52 happy.
	* configure.ac: Use AC_CONFIG_SUBDIRS for posix and itron. Reflect
	changes to configuration of rtems, score and sapi subdirs.
	* Makefile.am: require automake-1.5.
	* itron/include/itronsys/Makefile.am, itron/include/rtems/Makefile.am,
	itron/include/rtems/itron/Makefile.am, itron/inline/rtems/Makefile.am,
	itron/inline/rtems/itron/Makefile.am, itron/macros/rtems/Makefile.am,
	itron/macros/rtems/itron/Makefile.am: Remove.
	* itron/include/Makefile.am, itron/inline/Makefile.am,
	itron/macros/Makefile.am: handle subdirs.
	* itron/configure.ac: Reflect changes above.
	* posix/include/sys/Makefile.am, posix/include/rtems/Makefile.am,
	posix/include/rtems/posix/Makefile.am: Remove.
	* posix/include/Makefile.am: Handle subdirs.
	* posix/inline/rtems/Makefile.am, posix/inline/rtems/posix/Makefile.am:
	Remove.
	* posix/inline/Makefile.am: Handle subdirs.
	* posix/macros/rtems/Makefile.am, posix/macros/rtems/posix/Makefile.am:
	Remove.
	* posix/macros/Makefile.am: Handle subdirs.
	* posix/configure.ac: Reflect changes above.
	* score/include/rtems/Makefile.am, score/include/rtems/Makefile.am:
	Remove.
	* score/include/Makefile.am: Handle subdirs, require automake-1.5.
	* score/macros/rtems/Makefile.am, score/macros/rtems/score/Makefile.am:
	Remove.
	* score/macros/Makefile.am: Handle subdirs, require automake-1.5.
	* score/inline/rtems/Makefile.am, score/inline/rtems/score/Makefile.am:
	Remove.
	* score/inline/Makefile.am: Handle subdirs, require automake-1.5.
	* score/Makefile.am: require automake-1.5.
	* sapi/include/rtems/Makefile.am: Remove.
	* sapi/include/Makefile.am: Handle subdirs, require automake-1.5.
	* sapi/inline/rtems/Makefile.am: Remove.
	* sapi/inline/Makefile.am: Handle subdirs, require automake-1.5.
	* sapi/macros/rtems/Makefile.am: Remove.
	* sapi/Makefile.am: require automake-1.5.
	* rtems/include/rtems/Makefile.am,
	rtems/include/rtems/rtems/Makefile.am: Remove.
	* rtems/include/Makefile.am: Handle subdirs, require automake-1.5.
	* rtems/inline/rtems/Makefile.am, rtems/inline/rtems/rtems/Makefile.am:
	Remove.
	* rtems/inline/Makefile.am: Handle subdirs, require automake-1.5.
	* rtems/macros/rtems/Makefile.am, rtems/macros/rtems/rtems/Makefile.am:
	Remove.
	* rtems/macros: Handle subdirs, require automake-1.5.
	* rtems/Makefile.am: require automake-1.5.

2001-10-16	Joel Sherrill <joel@OARcorp.com>

	* score/.cvsignore: Add stamp-h.in.
	* score/include/Makefile.am: Fixed path to cpuopts-tmp.h.

2001-10-16	Chris Johns <ccj@acm.org>

	* sapi/include/confdefs.h, sapi/include/rtems/config.h,
	sapi/include/rtems/io.h, sapi/optman/no-io.c, sapi/src/exinit.c,
	sapi/src/io.c: Added a device driver register/unregister interface to
	allow device drivers to be installed and removed at runtime. This means
	you do not need devices present in the device table when you build.
	* libfs/imfs/imfs_load_tar.c: Changed the code around to remove an
	internal compiler error on the Coldfire target.

2001-10-12	Mike Siers <mikes@poliac.com>

	* Update to stable working state.
	* libnetworking/modem_example/16550.h,
	libnetworking/modem_example/README, libnetworking/modem_example/modem.c,
	libnetworking/modem_example/modem.h, libnetworking/modem_example/ppp.c,
	libnetworking/modem_example/ppp.h,
	libnetworking/modem_example/pppcompress.c: Files removed.
	* libnetworking/pppd/example/pppd.options: New file.
	* libnetworking/pppd/README, libnetworking/pppd/STATUS,
	libnetworking/pppd/cbcp.c, libnetworking/pppd/cbcp.h,
	libnetworking/pppd/chat.c, libnetworking/pppd/pppd.h,
	libnetworking/pppd/rtemsmain.c: Updated.

2001-10-12	Joel Sherrill <joel@OARcorp.com>

	* sapi/include/rtems/directives.h, libmisc/rootfs/mkrootfs.c,
	libmisc/rootfs/mkrootfs.h: Fixed typo.

2001-10-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* .cvsignore: Add autom4te.cache for autoconf > 2.52.
	* configure.in: Remove.
	* configure.ac: New file, generated from configure.in by autoupdate.
	* itron/.cvsignore: Add autom4te.cache for autoconf > 2.52.
	* itron/configure.in: Remove.
	* itron/configure.ac: New file, generated from configure.in by
	autoupdate.
	* posix/.cvsignore: Add autom4te.cache for autoconf > 2.52.
	* posix/configure.in: Remove.
	* posix/configure.ac: New file, generated from configure.in by
	autoupdate.
	* libmisc/.cvsignore: Add autom4te.cache for autoconf > 2.52.
	* libmisc/configure.in: Remove.
	* libmisc/configure.ac: New file, generated from configure.in by
	autoupdate.
	* librpc/.cvsignore: Add autom4te.cache for autoconf > 2.52.
	* librpc/configure.in: Remove.
	* librpc/configure.ac: New file, generated from configure.in by
	autoupdate.
	* libfs/.cvsignore: Add autom4te.cache for autoconf > 2.52.
	* libfs/configure.in: Remove.
	* libfs/configure.ac: New file, generated from configure.in by
	autoupdate.
	* libnetworking/.cvsignore: Add autom4te.cache for autoconf > 2.52.
	* libnetworking/configure.in: Remove.
	* libnetworking/configure.ac: New file, generated from configure.in by
	autoupdate.

2001-10-10	Joel Sherrill <joel@OARcorp.com>

	* libfs/src/imfs/imfs_getchild.c: Correct length of static string as
	reported by Ibragimov Ilya <ibr@oktet.ru>.

2001-09-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/rtems/score/Makefile.am,
	score/include/rtems/Makefile.am, score/inline/rtems/score/Makefile.am,
	score/macros/rtems/score/Makefile.am, sapi/include/rtems/Makefile.am,
	sapi/include/Makefile.am, sapi/inline/rtems/Makefile.am,
	sapi/macros/rtems/Makefile.am, rtems/include/rtems/rtems/Makefile.am,
	rtems/include/Makefile.am, rtems/inline/rtems/rtems/Makefile.am,
	rtems/macros/rtems/rtems/Makefile.am, libmisc/untar/Makefile.am,
	libmisc/monitor/Makefile.am, libmisc/shell/Makefile.am,
	libmisc/devnull/Makefile.am, libmisc/dumpbuf/Makefile.am,
	libmisc/mw-fb/Makefile.am, libmisc/stackchk/Makefile.am,
	libmisc/rtmonuse/Makefile.am, libmisc/cpuuse/Makefile.am,
	libmisc/rootfs/Makefile.am, librpc/include/rpc/Makefile.am,
	libfs/src/imfs/Makefile.am: Use 'PREINSTALL_FILES ='.

2001-09-28	Joel Sherrill <joel@OARcorp.com>

	* posix/src/mqueueopen.c, posix/src/semopen.c: Clarify type on va_arg.
	* libmisc/dummy/dummy.c: Now a useful configuration that starts main().
	* libmisc/wrapup/Makefile.am: Include a base level configuration in
	RTEMS library.

2001-09-27	Joel Sherrill <joel@OARcorp.com>

	* libmisc/ChangeLog: Fixed typo in date.

2001-09-27	Eric Norum <eric.norum@usask.ca>

	* score/src/threadhandler.c: Now process C++ global constructors (_init)
	as part of the first task execution not in BSP space. This depends on
	the toolset defining USE_INIT_FINI so you have to have the right toolset
	version.
	* libnetworking/lib/tftpDriver.c: Add limited chdir() support to the
	TFTP  filesystem.

2001-09-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* itron/include/itronsys/Makefile.am,
	itron/include/rtems/itron/Makefile.am, itron/include/Makefile.am,
	itron/inline/rtems/itron/Makefile.am,
	itron/macros/rtems/itron/Makefile.am, posix/include/sys/Makefile.am,
	posix/include/rtems/posix/Makefile.am, posix/include/Makefile.am,
	posix/inline/rtems/posix/Makefile.am,
	posix/macros/rtems/posix/Makefile.am,
	score/include/rtems/score/Makefile.am, score/include/rtems/Makefile.am,
	score/inline/rtems/score/Makefile.am,
	score/macros/rtems/score/Makefile.am, libnetworking/machine/Makefile.am,
	libnetworking/net/Makefile.am, libnetworking/netinet/Makefile.am,
	libnetworking/vm/Makefile.am, libnetworking/pppd/Makefile.am,
	libnetworking/sys/Makefile.am, libnetworking/rtems_servers/Makefile.am,
	libnetworking/arpa/Makefile.am, libnetworking/nfs/Makefile.am,
	libnetworking/rtems_webserver/Makefile.am,
	libnetworking/rtems/Makefile.am,
	libnetworking/rtems_telnetd/Makefile.am: Use 'PREINSTALL_FILES ='.

2001-09-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/rtems/Makefile.am: Fix comments to make automake-1.5 happy.
	* itron/src/Makefile.am: Revamp INCLUDES handling to make automake-1.5
	happy.
	* posix/optman/Makefile.am: Adapt ASM4FLAGS to automake-1.5 happy.
	* posix/src/Makefile.am: Adapt INCLUDES to make automake-1.5 happy.
	* sapi/optman/Makefile.am: Adapt ASM4FLAGS to automake-1.5.
	* libfs/src/imfs/Makefile.am: Revamp INCLUDES handling to make
	automake-1.5 happy.
	* libnetworking/Makefile.am: Use PREINSTALL_FILES = to make automake-1.5
	happy.

2001-09-21	Joel Sherrill <joel@OARcorp.com>

	* libmisc/configure.in, libmisc/rootfs/Makefile.am: Added conditional to
	make sure rootfs does not get built with networking is disabled.  Also
	added include of compile.am to rootfs/Makefile.am.
	* libmisc/wrapup/Makefile.am: Added rootfs conditionally if networking
	enabled.

2001-09-19	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Add some debugging capability.

2001-09-19	Chris Johns <ccj@acm.org>

	* Added support for populating the initial "root" filesystem with
	information obtained via the DHCP response.
	* libmisc/rootfs: New directory.
	* libmisc/rootfs/.cvsignore, libmisc/rootfs/Makefile.am,
	libmisc/rootfs/mkrootfs.c, libmisc/rootfs/mkrootfs.h: New files.
	* libmisc/configure.in, libmisc/Makefile.am: Modified to reflect
	addition.
	* nfs/bootp_subr.c, rtems/rtems_bootp.c, rtems/rtems_bsdnet.h,
	rtems/rtems_bsdnet_internal.h Added support for populating the initial
	"root" filesystem with information obtained via the DHCP response.

2001-09-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/aclocal/canonical-target-name.m4: Use AC_CANONICAL_TARGET
	instead of AC_CANONICAL_SYSTEM.
	* libmisc/aclocal/config-subdirs.m4: Use AS_MKDIR_P instead of
	mkinstalldirs and mkdir.
	* libmisc/aclocal/target.m4: Obsolete RTEMS_OUTPUT_BUILD_SUBDIRS, hack
	RTEMS_CONFIG_BUILD_SUBDIRS, introduce _RTEMS_OUTPUT_BUILD_SUBDIRS.
	* libmisc/aclocal/canonical-target-name.m4: Use AC_CANONICAL_TARGET
	instead of AC_CANONICAL_SYSTEM.
	* libmisc/aclocal/config-subdirs.m4: Use AS_MKDIR_P instead of
	mkinstalldirs and mkdir.
	* libmisc/aclocal/target.m4: Obsolete RTEMS_OUTPUT_BUILD_SUBDIRS, hack
	RTEMS_CONFIG_BUILD_SUBDIRS, introduce _RTEMS_OUTPUT_BUILD_SUBDIRS.

2001-09-14	Fernando Ruiz <fernando.ruiz@ctv.es>

	* rtems/src/tasks.c: Dereference pointer passed to destructor.
	* libmisc/shell/shell.c: Don't close file it wasn't open.

2001-09-13	Joel Sherrill <joel@OARcorp.com>

	* posix/src/sysconf.c: Fix typo syntax error accidentally committed.
	* posix/src/mprotect.c: New file. Stub required by some gcc's to pass
	tests. In particular, about 350 ACATS tests fail if this is not present.
	* posix/src/getpagesize.c: Ditto.
	* posix/src/sysconf.c: Addition of Solaris value for _SC_STACK_PROT
	required to pass about 350 ACATS test cases.
	* posix/src/Makefile.am: Added new files.
	* libmisc/devnull/devnull.c: Eliminate warning.

2001-08-30	Joel Sherrill <joel@OARcorp.com>

	* posix/macros/rtems/posix/mqueue.inl: Add cast so negation works.
	* score/ src/coremutex.c, score/src/coremutexseize.c,
	score/src/coremutexsurrender.c, score/inline/rtems/score/coremutex.inl:
	The per thread field resource_count should only be manipulated when a
	mutex is priority ceiling or priority inherit.  This was reported by
	Chris Johns <ccj@acm.org> who also noticed that the use of switches for
	all disciplines generated less efficient code than using explicit tests
	for the one or two cases we were really interested in.  Further review
	of his modifications made it apparent that the "isa" methods to test
	mutex discipline were not being used so this modification was swept into
	the code as well.
	* score/src/coremutexseize.c: Add missing code for proper handling of
	nesting acquisitions.  This only impacts building with inlines disabled
	on the source with the "fast mutex" optimizations. This was post the 4.5
	branch and did not impact released versions.
	* rtems/inline/rtems/rtems/attr.inl: Correct typo and use correct
	attribute RTEMS_SYSTEM_TASK. Reported by Chris Johns <ccj@acm.org>.

2001-08-16	Mike Siers <mikes@poliac.com>

	* libnetworking/pppd/STATUS: Updated by Joel based upon email from Mike.
	* libnetworking/pppd/cbcp.c, libnetworking/pppd/cbcp.h: Readded files. 
	These support callback functionality that has not even been compiled
	under RTEMS yet.
	* libnetworking/pppd/*: Update of PPPD to 2.3.11 from 2.3.5 and addition
	of an example application. - renamed error() function because of
	namespace problems. - removed calls to the exit() function. - removed
	extra files from the pppd source directory. - defined pppd task constant
	values in rtemspppd.h. - modifyied example code to get actual tick per
	second value. - placed the pppd 2.3.11 man page file (pppd.8) into the
	pppd directory.
	* libnetworking/pppd/cbcp.c, libnetworking/pppd/cbcp.h,
	libnetworking/pppd/main.c, libnetworking/pppd/ppp_tty.c,
	libnetworking/pppd/pppmain.c, libnetworking/pppd/rtems-ppp.c,
	libnetworking/pppd/rtems-ppp.c: Deleted.
	* libnetworking/pppd/pppd.8, libnetworking/pppd/rtemsmain.c,
	libnetworking/pppd/rtemspppd.c, libnetworking/pppd/rtemspppd.h,
	libnetworking/pppd/sys-rtems.c, libnetworking/pppd/utils.c,
	libnetworking/pppd/example/Makefile, libnetworking/pppd/example/README,
	libnetworking/pppd/example/init.c,
	libnetworking/pppd/example/netconfig.h,
	libnetworking/pppd/example/ppp.conf,
	libnetworking/pppd/example/pppdapp.c,
	libnetworking/pppd/example/system.h: New files.
	* libnetworking/modem/ppp_tty.c, libnetworking/net/if_ppp.h,
	libnetworking/pppd/Makefile.am, libnetworking/pppd/README,
	libnetworking/pppd/STATUS, libnetworking/pppd/auth.c,
	libnetworking/pppd/ccp.c, libnetworking/pppd/ccp.h,
	libnetworking/pppd/chap.c, libnetworking/pppd/chap.h,
	libnetworking/pppd/chap_ms.c, libnetworking/pppd/chap_ms.h,
	libnetworking/pppd/chat.c, libnetworking/pppd/demand.c,
	libnetworking/pppd/fsm.c, libnetworking/pppd/fsm.h,
	libnetworking/pppd/ipcp.c, libnetworking/pppd/ipcp.h,
	libnetworking/pppd/ipxcp.c, libnetworking/pppd/ipxcp.h,
	libnetworking/pppd/lcp.c, libnetworking/pppd/lcp.h,
	libnetworking/pppd/magic.c, libnetworking/pppd/magic.h,
	libnetworking/pppd/options.c, libnetworking/pppd/patchlevel.h,
	libnetworking/pppd/pathnames.h, libnetworking/pppd/pppd.h,
	libnetworking/pppd/upap.c, libnetworking/pppd/upap.h: Modified.

2001-08-16	Joel Sherrill <joel@OARcorp.com>

	* posix/src/mqueuesendsupp.c: Account for possibly blocking during the
	core send operation.
	* score/src/coremutexsurrender.c: Use holder thread not executing thread
	because even though they may and often are the same it is not guaranteed
	unless the proper attribute is set.
	* score/include/rtems/score/coremsg.h, score/src/coremsgsubmit.c: Add a
	new return status to account for blocking sends.  Otherwise, the caller
	will think that the returned message status will have the ultimate
	results of the operation.  If the send times out, the final status will
	be in the return_code of the thread.
	* rtems/src/msgqsubmit.c: Add a comment indicating that we do not have
	to account for possibly blocking during the core send operation because
	Classic API message queue send is always non-blocking.
	* libnetworking/pppd/example/Makefile: Removed.
	* libnetworking/pppd/example/Makefile-user: Added was Makefile.  Renamed
	to avoid bootstrap -c clobbering it.
	* libnetworking/rtems_telnetd/.cvsignore: New file.

2001-08-09	Keith Outwater <vac4050@cae597.rsc.raytheon.com>

	* libmisc/monitor/mon-command.c: Add support for partial command
	matching. The monitor used to have this functionality before it was
	overhauled to support addition of user commands.

2001-08-09	Joel Sherrill <joel@OARcorp.com>

	* itron/src/snd_mbx.c, itron/src/tsnd_mbf.c, posix/src/mqueuesendsupp.c,
	score/include/rtems/score/coremsg.h,
	score/inline/rtems/score/coremsg.inl, score/src/coremsgsubmit.c,
	rtems/src/msgqsubmit.c: Unblocking message queue operations should NOT
	use _Thread_Executing for return status since it is permissible to
	invoke message send operations from an ISR.  This was reported by Suvrat
	Gupta <suvrat@utstar.com>.

2001-08-09	Fernando-Ruiz Casas <correo@fernando-ruiz.com>

	* libmisc/shell/pty.c: Moved to libnetworking/rtems_telnetd.
	* libmisc/shell/Makefile.am, libmisc/shell/README, libmisc/shell/cmds.c,
	libmisc/shell/shell.c, libmisc/shell/shell.h: Updates.
	* libfs/src/imfs/imfs_eval.c: The CD_UP problem in imfs_eval has been
	touched. The order of the questions is the key.
	* libnetworking/Makefile.am, libnetworking/configure.in,
	libnetworking/rtems_servers/Makefile.am,
	libnetworking/rtems_servers/telnetd.c,
	libnetworking/rtems_servers/telnetd.h,
	libnetworking/rtems_telnetd/Makefile.am,
	libnetworking/rtems_telnetd/README, libnetworking/rtems_telnetd/icmds.c,
	libnetworking/rtems_telnetd/pty.c, libnetworking/rtems_telnetd/pty.h,
	libnetworking/rtems_telnetd/telnetd.c,
	libnetworking/rtems_telnetd/telnetd.h, libnetworking/wrapup/Makefile.am:
	- pty and telnetd have a new subdir rtems_telnetd to avoid the side
	effect when ftpd change. - the tcp/ip stats have been implemented into
	icmds.c and started when telnetd daemon is started.
	* libnetworking/rtems_servers/telnetd.c,
	libnetworking/rtems_servers/telnetd.h: Removed.
	* libnetworking/rtems_telnetd: New directory.
	* libnetworking/rtems_telnetd/Makefile.am,
	libnetworking/rtems_telnetd/README, libnetworking/rtems_telnetd/icmds.c,
	libnetworking/rtems_telnetd/pty.c, libnetworking/rtems_telnetd/pty.h,
	libnetworking/rtems_telnetd/telnetd.c,
	libnetworking/rtems_telnetd/telnetd.h: New files.

2001-07-06	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	* libfs/src/imfs/deviceio.c: Make sure errno gets set to reflect the
	status from the driver.

2001-06-14	Joel Sherrill <joel@OARcorp.com>

	* libmisc/shell/telnetd.c, libmisc/shell/telnetd.h: Moved to
	libnetworking/rtems_servers so the network stack to address network
	depenendency.
	* libmisc/shell/Makefile.am: Modified to reflect above.
	* libnetworking/rtems_servers/telnetd.c, libnetworking/shell/telnetd.h:
	Moved from libmisc/shell so the network stack to address network
	depenendency.
	* libnetworking/rtems_servers/Makefile.am: Modified to reflect above.

2001-05-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/rtems_servers/Makefile.am: Deleted blank lines.

2001-05-25	Sergei Organov <osv@javad.ru>

	* score/macros/rtems/score/coresem.inl,
	score/inline/rtems/score/coresem.inl: Cut and paste problem incorrectly
	enabled interrupts twice with the first time being too early.

2001-05-25	Joel Sherrill <joel@OARcorp.com>

	* libmisc/shell/cmds.c: Removed code from inappropriate source.
	* libfs/src/imfs/imfs_initsupp.c: Create the root node with the desired
	permissions.  Nodes should be created with the right permissions because
	chmod() is not supported by the miniIMFS so changing after creation is
	not possible.

2001-05-24	Joel Sherrill <joel@OARcorp.com>

	* libcsupport/src/.cvsignore: New file.

2001-05-24	Fernando Ruiz Casas <fernando.ruiz@ctv.es>

	* posix/src/getegid.c, posix/src/geteuid.c, posix/src/getgid.c,
	posix/src/getlogin.c, posix/src/getuid.c: Now save their values in
	private user environment.
	* libmisc/monitor/mon-prmisc.c: Correct print line.
	* libmisc/shell/Makefile.am: Added new file telnetd.c.
	* libmisc/shell/telnetd.c, libmisc/shell/telnetd.h, libmisc/shell/pty.c:
	New files.
	* libmisc/shell/shell.c, libmisc/shell/cmds.c, libmisc/shell/shell.h:
	Numerous improvments: - The shell_init has a new parameter 'forever'
	because in /dev/console you need that this process runs forever but in
	tcp/ip not. (respawn?) - A new task for every session opened trought
	tcp/ip telnet client. (the chargen,daytime and more are possible of
	implementation but I ask me if they are necesary) - Exit from the
	session delete the task and when the client fails too. - More cmds have
	been implemented. (very reduced version of these) umask, chmod, id,
	whoami, rm, cat, ... - A reduced line edit has been implemented. Ctrl-C
	abort the input, Ctrl-d in the first position gives EOF (logout). '\b'
	and DEL makes the rubout operation. I think that readline() for every
	session spents a lot of resources.

2001-05-17	Joel Sherrill <joel@OARcorp.com>

	* posix/macros/rtems/posix/mqueue.inl: Implemented missing routines to
	support message queue FDs.
	* score/macros/rtems/score/thread..inl: Implemented missing routines for
	new libc reentrancy support.

2001-05-14	Till Straumann <strauman@slac.stanford.edu>

	* score/src/threaddispatch.c, score/src/threadhandler.c: Per PR211 fix
	saving/restoring floating point context.  The fpsave and fprestore
	routines are only used in a executing context which _is_ fp and hence
	has the FPU enabled. The current behavior required the FPU always to be
	on which is very dangerous if lazy context switching is used.   [Joel
	Note: Some ports explicitly enabled the FPU in the FP save and restore
	routines to avoid this.] The patch also makes sure (on powerpc only)
	that the FPU is disabled for integer tasks. Note that this is crucial if
	deferred fp context switching is used. Otherwise, fp context corruption
	may go undetected! Also note that even tasks which merely push/pop FP
	registers to/from the stack without modifying them still MUST be FP
	tasks - otherwise (if lazy FP context switching is used), FP register
	corruption (of other, FP, tasks may occur)! Furthermore, (on PPC) by
	default, lazy FP context save/restore is _disabled_.

2001-05-14	Joel Sherrill <joel@OARcorp.com>

	* libmisc/dummy/Makefile.am, libmisc/wrapup/Makefile.am: Fixed to
	generate a library of the same name.
	* libnetworking/ChangeLog: Corrected -- entry should have been in
	libchip.

2001-05-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/rtems/score/.cvsignore: Add stamp-h, cpuopts.h,
	cpuopts.h.in, cpuopts-tmp.h.
	* libnetworking/libc/Makefile.am: Remove -D__STRICT_ANSI__.

2001-05-09	Joel Sherrill <joel@OARcorp.com>

	* sapi/src/exinit.c: Slightly rework initialization so there is a valid
	thread as _Thread_Executing when the pre_tasking hook is called.  This
	allows one directives and malloc to potentially use mutex protection.

2001-04-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/shell/cmds.c, libmisc/shell/shell.c: Remove fileno-hacks.
	* libmisc/monitor/mon-symbols.c: Remove #undef __STRICT_ANSI__.

2001-04-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in, itron/configure.in, posix/configure.in,
	libfs/configure.in: Add [-ansi -fasm] to RTEMS_PROG_CC_FOR_TARGET.

2001-04-26	Joel Sherrill <joel@OARcorp.com>

	* posix/include/rtems/posix/mqueue.h,
	posix/inline/rtems/posix/mqueue.inl, posix/src/mqueue.c,
	posix/src/mqueueclose.c, posix/src/mqueuecreatesupp.c,
	posix/src/mqueuegetattr.c, posix/src/mqueuenotify.c,
	posix/src/mqueueopen.c, posix/src/mqueuerecvsupp.c,
	posix/src/mqueuesendsupp.c, posix/src/mqueuesetattr.c: Per PR81 reworked
	to add a message queue descriptor separate from the underlying message
	queue.  This allows non-blocking to follow the "open" not the underlying
	queue.
	* score/src/objectcomparenamestring.c: Fix typos.
	* score/include/rtems/score/object.h,
	score/inline/rtems/score/object.inl, score/
	src/objectcomparenamestring.c: Address PR81 that reworked POSIX message
	queues to add a descriptor separate from the underlying message queue. 
	This allows non-blocking to follow the "open" not the underlying queue. 
	As part of debugging this it became clear that
	_Objects_Compare_name_string was broken and a simple version using
	strncmp() was substituted.

2001-04-24	Joel Sherrill <joel@OARcorp.com>

	* libfs/src/imfs/memfile.c (memfile_open): Did not set iop->size and
	thus the value was incorrect.  Before this field was cleared, this
	resulted in the value from the last time that IOP was used being still
	in place.  Discovered by  Andrew Bythell <abythell@nortelnetworks.com>.

2001-04-24	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/rtems_bsdnet_ntp.c: Modifications to make the RTEMS
	NTP synchronization a little more robust -- no NTP daemon yet, but at
	least it trys a little harder when the primary NTP server is down.

2001-04-22	Joel Sherrill <joel@OARcorp.com>

	* itron/src/task.c (_ITRON_Task_User_extensions): Add new fields to  be
	correct in respect to newly added fields for separate switch list.

2001-04-20	Radzislaw Galler  <rgaller@et.put.poznan.pl>

	* libnetworking/modem/ppp.c, libnetworking/pppd/main.c,
	libnetworking/pppd/pppmain.c, libnetworking/pppd/rtems-ppp.c,
	libnetworking/pppd/modem_example/modem.c,
	libnetworking/pppd/modem_example/ppp.c: Translated Polish comments and
	other strings into English.
	* libnetworking/pppd/STATUS: updated to reflect the changes.

2001-04-20	Joel Sherrill <joel@OARcorp.com>

	* libmisc/devnull/devnull.c (null_initialize): Added check to  ensure
	that the driver is only initialized once.  Otherwise, it will abort when
	the device /dev/null is present. (null_write): Do not dereference a NULL
	pointer.
	* libfs/src/imfs/imfs_debug.c (IMFS_print_jnode): Modified to print only
	information that does not vary based on target or memory configuration. 
	The old prints are still there in case they are needed in the future to
	debug.  Printing target dependent addresses makes the test output vary
	by target unnecessarily.

2001-04-20	Jake Janovetz <janovetz@uiuc.edu>

	* libnetworking/rtems_servers/ftpd.c: Correct argument so hooks work
	again.

2001-04-20	Fernando Ruiz Casas <correo@fernando-ruiz.com>

	* Added initial shell functionality.
	* libmisc/Makefile.am, libmisc/configure.in, libmisc/wrapup/Makefile.am:
	Reflect having added shell.
	* libmisc/shell/.cvsignore, libmisc/shell/Makefile.am,
	libmisc/shell/README, libmisc/shell/cmds.c, libmisc/shell/shell.c,
	libmisc/shell/shell.h: New files.

2001-04-16	Joel Sherrill <joel@OARcorp.com>

	* sapi/include/confdefs.h: Fix real-time clock support.

2001-04-11	Joel Sherrill <joel@OARcorp.com>

	* score/macros/rtems/score/userext.inl: Now works after merging patch
	for functionality requested in PR174.
	* score/inline/rtems/score/userext.inl: Added a comment explaining the
	order in which routines appear since it is not the obvious order.

2001-04-08	Joel Sherrill <joel@OARcorp.com>

	* score/macros/rtems/score/object.inl: Corrected arguments.
	* score/macros/rtems/score/userext.inl: Updated to reflect modifications
	to inline version from PR142.
	* score/inline/rtems/score/userext.inl: Cleanup as side-effect of above.
	* rtems/src/tasks.c: Pre-initialized switch extension for list.
	* rtems/macros/rtems/score/timer.inl: Corrected typo on end of line.

2001-04-04	Joel Sherrill <joel@OARcorp.com>

	* libfs/src/dosfs/Makefile.am: Per PR129 do not install as many files to
	the $(includedir).

2001-03-29	Joel Sherrill <joel@OARcorp.com>

	* Per PR126, configuration structures now match docs.
	* sapi/include/rtems/config.h: Use public data types.
	* Per PR126, configuration structures now match docs.
	* rtems/include/rtems/rtems/config.h: Use public data types.
	* Per PR147 addressed problems when reseting and inserting a timer into
	a timer chain that did not honor time passage since the last time the
	timer server was scheduled and the new insertion.
	* rtems/include/rtems/rtems/timer.h, rtems/src/timerreset.c,
	rtems/src/timerserver.c, rtems/src/timerserverfireafter.c,
	rtems/src/timerserverfirewhen.c: Broke up the "reset server" routine
	into a set of very specific routines that allowed the server to be
	unscheduled, timer chains to be "synchronized" with the current time
	before inserting a new timer.

2001-03-28	Joel Sherrill <joel@OARcorp.com>

	* PR132 requested some tinkering ot lower memory.
	* sapi/include/confdefs.h: Lowered footprint of device driver table and
	statically configure user extensions.  Now if no static extensions are
	configured, then the table is not instantiated.

2001-03-26	Zoltan Kocsi <zoltan@bendor.com.au>

	* rtems/src/eventsurrender.c: Clear event condition when task is
	unblocked. This makes sure that subsequent event send thinks the task is
	still blocked and overwrites the initial events received.

2001-03-23	Joel Sherrill <joel@OARcorp.com>

	* libfs/src/imfs/memfile.c: Reapply fix from bug report from Jose
	Sturniolo <jsturnio@nec.com.ar> where NULL pointer was dereferenced when
	freeing a triply indirect file.   The fix was applied to the 4.5 release
	branch and not the development branch.

2001-03-20	Till Straumann <strauman@SLAC.Stanford.EDU>

	* PR158
	* libnetworking/libc/rcmd.c, libnetworking/libc/rcmd.c: Enable the
	rcmd() library call by commenting out the parts that deal with signals. 
	This enables RTEMS to 'rsh' command to a server connecting fd to remote
	stdio. The 'server-side' parts of this file which deal with
	authentication are disabled since they are not needed.

2001-03-19	Joel Sherrill <joel@OARcorp.com>

	* posix/sys/utsname.h: Added C++ wrapper.

2001-03-15	Ralf Corsepius <corsepius@faw.uni-ulm.de>

	* libnetworking/include/.cvsignore: Remove dangling file.

2001-03-15	Joel Sherrill <joel@OARcorp.com>

	* sapi/src/extension.c: Split to reduce minimum code size per PR134.
	* sapi/src/extensioncreate.c, sapi/src/extensiondelete.c,
	sapi/src/extensionident.c: New files. src/Makefile.am: Modified to
	reflect above.

2001-03-01	Joel Sherrill <joel@OARcorp.com>

	* libfs/src/imfs/.cvsignore: Added stamp-h1.in.

2001-02-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in: AC_DEFINE RTEMS_UNIX if RTEMS_CPU=unix.

2001-02-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libmisc/monitor/mon-command.c: Use #if defined(RTEMS_UNIX).

2001-02-03	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* itron/include/Makefile.am, itron/include/itronsys/Makefile.am,
	itron/include/rtems/itron/Makefile.am,
	itron/inline/rtems/itron/Makefile.am,
	itron/macros/rtems/itron/Makefile.am, posix/include/Makefile.am,
	posix/include/rtems/posix/Makefile.am, posix/include/sys/Makefile.am,
	posix/inline/rtems/posix/Makefile.am,
	posix/macros/rtems/posix/Makefile.am: Apply include_*HEADERS instead of
	H_FILES.
	* include/rtems/Makefile.am, include/rtems/score/Makefile.am,
	inline/rtems/score/Makefile.am, macros/rtems/score/Makefile.am Apply
	include_*HEADERS instead of H_FILES.
	* sapi/include/Makefile.am, sapi/include/rtems/Makefile.am,
	sapi/inline/rtems/Makefile.am, sapi/macros/rtems/Makefile.am,
	rtems/include/Makefile.am, rtems/include/rtems/rtems/Makefile.am,
	rtems/inline/rtems/rtems/Makefile.am,
	rtems/macros/rtems/rtems/Makefile.am, rtems/ rtems/optman/Makefile.am,
	libmisc/untar/Makefile.am, libmisc/monitor/Makefile.am,
	libmisc/dummy/Makefile.am, libmisc/devnull/Makefile.am,
	libmisc/dumpbuf/Makefile.am, libmisc/mw-fb/Makefile.am,
	libmisc/stackchk/Makefile.am, libmisc/rtmonuse/Makefile.am,
	libmisc/cpuuse/Makefile.am, librpc/include/rpc/Makefile.am,
	libfs/src/imfs/Makefile.am, libnetworking/Makefile.am,
	libnetworking/arpa/Makefile.am, libnetworking/machine/Makefile.am,
	libnetworking/net/Makefile.am, libnetworking/ netinet/Makefile.am,
	libnetworking/nfs/Makefile.am, libnetworking/rtems/Makefile.am,
	libnetworking/ rtems_servers/Makefile.am,
	libnetworking/rtems_webserver/Makefile.am,
	libnetworking/sys/Makefile.am, libnetworking/vm/Makefile.am: Apply
	include_*HEADERS instead of H_FILES.
	* libnetworking/include/Makefile.am: Remove.
	* libnetworking/Makefile.am: Add handling of *.h files.
	* libnetworking/configure.in: Remove include/Makefile.

2001-01-31	Sergei Organov <osv@javad.ru>

	* libnetworking/rtems_servers/ftp.d: Following changes: - Hacks with
	current dir and root dir removed in favor of new libio support for
	task-local current and root directories. - Bug in `close_data_socket()'
	introduced by previous change fixed. - `command_pasv()' changed to set
	timeout on socket we are listening on and code fixed to don't close
	socket twice on error. - `serr()' changed to clear `errno'. -
	`data_socket()' changed to clear `errno' before `bind()'. - `session()'
	changed to clear `errno' before processing session. -
	`close_data_socket()' fixed to close both active and passive sockets. -
	Initialize info->data_socket to -1 in `daemon()'. - Initialize `fname'
	to empty string  in `exec_command()'.

2001-01-31	Joel Sherrill <joel@OARcorp.com>

	* rtems/include/rtems/rtems/timer.h: Missed merging these modifications
	in previous merge of new timer functionality.

2001-01-29	Joel Sherrill <joel@OARcorp.com>

	* score/src/objectextendinformation.c: Added include of string.h to
	eliminate warning.
	* Fixed bug where resetting a timer that was not at the head of one of
	the task timer chains resulted in the Timer Server task waking up too
	far in the future.
	* Added rtems_timer_get_information() directive to support testing.
	* src/timerserver.c, include/rtems/rtems/timer.h, 
	* rtems/src/timergetinfo.c: New file.
	* rtems/src/Makefile.am: Modified to reflect above.

2001-01-28	Ralf Corsepius <corsepiu@faw.uni-ulm.d>

	* sapi/include/confdefs.h: define CONFIGURE_NEWLIB_EXTENSION 0 if not
	using NEWLIB, cleanup related comment.

2001-01-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* sapi/include/confdefs.h: include cpuopts.h, replace stubdr w/ devnull.

2001-01-25	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Reduce first timeout interval.  This
	improves throughput on systems which are dropping packets.   Only the
	first timeout is reduced.  This keeps the number of extra packets down
	on networks that are very busy and dropping lots of packets.

2001-01-24	Sergei Organov <osv@javad.ru>

	* libnetworking/rtems_servers/ftpd.c,
	libnetworking/rtems_servers/ftpd.h: - Timeouts on sockets implemented.
	'idle' field added to configuration. No timeout by default to keep
	backward compatibility. Note: SITE IDLE command not implemented yet. -
	Basic global access control implemented. 'access' field added to
	configuration. No access limitations by default to keep backward
	compatibility. - Anchor data socket for active mode (using self IP and
	port 20.) - Fixed default data port support (still not tested). - Don't
	allow IP address different from originating host in PORT command to
	improve security. - Fixed bug in MDTM command. - Check for correctness
	of parsing of argument in command_port(). - Fixed squeeze_path() to
	don't allow names like 'NAME/smth' where 'NAME' is not a directory. -
	Command parsing a little bit improved: command names are now converted
	to upper-case to be more compatible with RFC (command names are not
	case-sensitive.). - Reformat comments so that they have RTEMS
	look-and-feel. - Fixed DELE, SITE CHMOD, RMD, MKD broken by previous
	changes. - True ASCII mode implemented (doesn't work for hooks and
	/dev/null) - Passive mode implemented, PASV command added. - Default
	port for data connection could be used (untested, can't find ftp client
	that doesn't send PORT command). - SYST reply changed to UNIX, as former
	RTEMS isn't registered name. - Reply codes reviewed and fixed.

2001-01-24	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* posix/configure.in: Add src/config.h.
	* posix/src/Makefile.am: Add INCLUDES += -I. to pickup config.h.
	* posix/src/.cvsignore: Add config.h and stamp-h.
	* posix/src/*.c: Add config.h support.

2001-01-23	Joel Sherrill <joel@OARcorp.com>

	* posix/src/alarm.c: Eliminated use of C++ style comments.

2001-01-22	Michael Hamel <mhamel@adi.co.nz>

	* posix/include/rtems/posix/semaphore.h,
	posix/inline/rtems/posix/semaphore.inl, posix/ src/ptimer1.c,
	posix/include/rtems/posix/semaphore.h,
	posix/inline/rtems/posix/semaphore.inl, posix/src/alarm.c,
	posix/src/ptimer1.c, posix/src/semaphorenametoid.c, posix/src/semopen.c,
	posix/src/semunlink.c, rtems/include/rtems.h, rtems/src/signalcatch.c:
	Modifications to make CodeWarrior happy.

2001-01-22	Joel Sherrill <joel@OARcorp.com>

	* rtems/include/rtems/rtems/timer.h, rtems/src/timerserver.c: Add
	priority argument to rtems_timer_initiate_server().

2001-01-18	Joel Sherrill <joel@OARcorp.com>

	* score/include/rtems/system.h, rtems/include/rtems/system.h: Only
	include cpuopts.h when building a multilib configuration.  Some ports
	still need targopts.h but this small modification lets those ports work
	non-multilib while  fixing being fixed for multilib.

2001-01-17	Joel Sherrill <joel@OARcorp.com>

	* ChangeLog: Deleted duplicate blank line.

2001-01-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libfs/configure.in: Add src/imfs/config.h.
	* libfs/src/imfs/Makefile.am: Add INCLUDES += -I. to pickup config.h.
	* libfs/src/imfs/.cvsignore: Add config.h and stamp-h.
	* libfs/src/imfs/*.c: Add config.h support.

2001-01-16	Joel Sherrill <joel@OARcorp.com>

	* posix/inline/rtems/posix/mutex.inl (_POSIX_Mutex_Get_support):
	Corrected name of routine in header.
	* rtems/Added task-based timers to the Timer Manager.  This added three
	new directives: - rtems_timer_initiate_server -
	rtems_timer_server_fire_after - rtems_timer_server_fire_when In the
	process of doing this, a number of cleanups were made.
	* rtems/src/timerserver.c, rtems/src/timerserverfireafter.c,
	rtems/src/timerserverfirewhen.c: New files.
	* rtems/include/timer/timer.h: Added new prototypes and supporting types.
	* rtems/inline/rtems/rtems/timer.h, rtems/macros/rtems/rtems/timer.h:
	Enhanced _Timer_Is_interval_class() to cover the class
	TIMER_INTERVAL_ON_TASK.
	* rtems/src/Makefile.am: Accounted for new files.
	* rtems/src/rtemstimer.c: Added initialization of _Timer_Server variable.
	* rtems/src/timercancel.c, rtems/src/timerreset.c: Account for addition
	of timer classes.  Also corrected the headers.
	* rtems/src/timercreate.c, rtems/src/timerdelete.c,
	rtems/src/timerfireafter.c, rtems/ src/timerfireafter.c,
	rtems/src/timerident.c: Corrected header.
	* rtems/src/taskmode.c: Ensure the this service does not dispatch before
	tasking is enabled at initialization time.

2001-01-12	Sergei Organov <osv@javad.ru>

	* libnetworking/rtems_servers/ftpd.c,
	libnetworking/rtems_servers/ftpd.h: - use pool of pre-created threads to
	handle sessions instead of creating/deleting threads on the fly. - LIST
	output is now similar to what "/bin/ls -al" would output, thus FTP
	clients such Netscape are happy with it. - LIST NAME now works (both for
	files and directories) - added support for NLST, CDUP, and MDTM FTP
	commands to make more FTP clients happy . - keep track of CWD for every
	session separately. - ability to specify root directory name for FTPD in
	configuration table. FTPD will then create illusion for FTP clients that
	this is actually root directory. - ignore options sent in commands, thus
	LIST -al FILE works and doesn't try to list "-al" directory. - buffers
	are allocated on stack instead of heap where possible to eliminate
	malloc/free calls (avoid possible heap fragmentation troubles). - drop
	using of task notepad to pass parameters - use function arguments
	instead. - use snprintf() instead of sprintf() as the latter is unsafe.
	- use of PF_INET in socket() instead of AF_INET.

2001-01-12	Joel Sherrill <joel@OARcorp.com>

	* posix/src/clockgetres.c: Fixed match problem.  We are not converting
	an interval to a timespec -- it is actually a real number of
	microseconds.
	* posix/src/README.mqueue: Enhanced example.

2001-01-12	Jake Janovetz <janovetz@uiuc.edu>

	* libfs/src/imfs/imfs.h, libfs/src/imfs/imfs_creat.c,
	libfs/src/imfs/imfs_debug.c, libfs/src/imfs/imfs_eval.c,
	libfs/src/imfs/imfs_fchmod.c, libfs/src/imfs/imfs_handlers_memfile.c,
	libfs/src/imfs/imfs_init.c, libfs/src/imfs/imfs_initsupp.c,
	libfs/src/imfs/imfs_stat.c, libfs/src/imfs/memfile.c,
	libfs/src/imfs/miniimfs_init.c: Final developmental update to "tarfs".
	When rtems_tarfs_load() is called, it checks the permissions on each
	file.  If there is write permission, it just creates a  standard file
	using "creat()" and therefore, uses the IMFS MEMORY_FILE. If there is no
	write permission, it creates a LINEAR_FILE node with the appropriate
	properties.  If the permission is ever changed to writeable, IMFS_fchmod
	converts it to a regular memory file.

2001-01-08	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/src/threadinitialize.c: Removed warning.

2001-01-08	Joel Sherrill <joel@OARcorp.com>

	* score/src/threadinitialize.c: Fix my bad hack of Ralf's fp_area
	warning removal patch. :(.

2001-01-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* itron/configure.in: Add src/config.h.
	* itron/src/Makefile.am: Add INCLUDES += -I. to pickup config.h.
	* itron/src/.cvsignore: Add config.h and stamp-h.
	* itron/src/*.c: Add config.h support.

2001-01-05	Joel Sherrill <joel@OARcorp.com>

	* libmisc/devnull: New addition.  Moved from libcpu/sh.
	* libmisc/devnull/devnull.c, libmisc/devnull/devnull.h,
	libmisc/devnull/.cvsignore, libmisc/ devnull/Makefile.am: New files.
	* libmisc/Makefile.am, libmisc/configure.in, libmisc/wrapup/Makefile.am:
	Modified to reflect addition of above.

2001-01-03	Joel Sherrill <joel@OARcorp.com>

	* score/src/isr.c: Modify to properly dereference _ISR_Vector_table now
	that it is dynamically allocated.

2001-01-02	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/CHANGELOG: Removed.
	* libnetworking/README: Merged CHANGELOG contents as initial changes.

2000-12-19	Joel Sherrill <joel@OARcorp.com>

	* posix/src/pthreadgetschedparam.c: Do not set output parameters if the
	pointers are NULL.
	* score/src/isr.c: Allocate the _ISR_Vector_table all the time not just
	when we are allocating an interrupt stack.

2000-12-14	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Added write capability.

2000-12-13	Joel Sherrill <joel@OARcorp.com>

	* score/include/rtems/score/isr.h, score/src/isr.c: Allocate it from the
	workspace rather than explicitly declaring it.  This allows the size to
	be a non-constant from the perspective of score/cpu.

2000-12-12	Jake Janovetz <janovetz@uiuc.edu>

	* libfs/src/imfs/linearfile.c, libfs/src/imfs/imfs_load_tar.c: New files.
	* libfs/src/imfs/Makefile.am, libfs/src/imfs/imfs.h,
	libfs/src/imfs/imfs_creat.c, libfs/src/imfs/imfs_debug.c,
	libfs/src/imfs/imfs_eval.c, libfs/src/imfs/imfs_handlers_memfile.c,
	libfs/src/imfs/imfs_init.c, libfs/src/imfs/imfs_initsupp.c,
	libfs/src/imfs/imfs_stat.c, libfs/src/imfs/miniimfs_init.c: Added
	"tarfs". This is not really a tar filesystem.  It is a way to load a tar
	image into the IMFS but actually leave bulky file contents in the
	original tar image.  It essentially adds the linear file type and
	associated support and a loader routine.

2000-12-08	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/libc/linkaddr.c: Initialized variable to remove warning.
	* libnetworking/modem/ppp.c, libnetworking/modem/ppp_tty.c: Made
	numerous variable declarations conditional on PPP_COMPRESS and
	PPP_FILTER.  Commented out variables that were not used because the code
	using them was commented out. Removed totally unused variables.
	* libnetworking/modem/pppcompress.c: Added parentheses to avoid warnings.
	* libnetworking/pppd/pppmain.c: Removed numerous warnings.

2000-12-06	Joel Sherrill <joel@OARcorp.com>

	* posix/src/pthreadgetcpuclockid.c: Add include of <rtems/system.h> to
	eliminate warning.
	* rtems/src/regiongetinfo.c: Removed unused variable to eliminate
	warning.

2000-12-01	Joel Sherrill <joel@OARcorp.com>

	* configure.in: Removed error check for enabling macros with either
	POSIX or ITRON API.
	* Added macro support to ITRON API.  This is known to compile.
	* itron/Makefile.am: Added macros directory.
	* itron/configure.in: Removed error check for enabling macros.
	* itron/macros/.cvsignore, itron/macros/Makefile.am,
	itron/macros/rtems/.cvsignore, itron/macros/rtems/Makefile.am,
	itron/macros/rtems/itron/.cvsignore,
	itron/macros/rtems/itron/Makefile.am,
	itron/macros/rtems/itron/eventflags.inl,
	itron/macros/rtems/itron/fmempool.inl,
	itron/macros/rtems/itron/intr.inl, itron/macros/rtems/itron/mbox.inl,
	itron/macros/rtems/itron/msgbuffer.inl,
	itron/macros/rtems/itron/network.inl, itron/macros/rtems/itron/port.inl,
	itron/macros/rtems/itron/semaphore.inl,
	itron/macros/rtems/itron/sysmgmt.inl, itron/macros/rtems/itron/task.inl,
	itron/macros/rtems/itron/time.inl,
	itron/macros/rtems/itron/vmempool.inl: New files.
	* posix/include/rtems/posix/cond.h: #if 0'ed out prototype of 
	_POSIX_Condition_variables_Get to avoid conflict with macro
	implementation.
	* Added macro support to POSIX API.  This is known to compile.
	* posix/macros/rtems/posix/cond.inl, posix/macros/rtems/posix/intr.inl,
	posix/macros/rtems/posix/key.inl, posix/macros/rtems/posix/mqueue.inl,
	posix/macros/rtems/posix/mutex.inl,
	posix/macros/rtems/posix/priority.inl,
	posix/macros/rtems/posix/pthread.inl,
	posix/macros/rtems/posix/semaphore.inl,
	posix/macros/rtems/posix/timer.inl: New files.
	* posix/configure.in: Removed error check for enabling macros.
	* posix/rtems/posix/mutex.h: #if 0'ed out prototypes for inlined
	routines since you cannot have prototypes for macros.
	* posix/macros/rtems/posix/Makefile.am: Added files.
	* score/macros/rtems/score/coresem.inl: Removed comments since
	convention calls for comments to be in inline versin.
	* score/macros/rtems/score/object.inl (Objects_Get_local_object): Fixed
	style to use _ prefix on variable names and use parentheses.
	* score/macros/rtems/score/object.inl (_Objects_Namespace_remove): Added.

2000-11-30	Joel Sherrill <joel@OARcorp.com>

	* posix/inline/rtems/posix/mqueue.inl: Removed explicit dependency on
	abs().
	* General effort to make things compile with macros not inlines
	* score/inline/rtems/score/coremutex.inl: Added comment indicating for
	macros there is another copy of _CORE_mutex_Seize_interrupt_trylock() in
	src/coremutexseize.c.
	* score/src/coremutexseize.c: Added body of
	_CORE_mutex_Seize_interrupt_trylock() for macro case.
	* score/macros/rtems/score/coremutex.inl: Added prototype for 
	_CORE_mutex_Seize_interrupt_trylock() since there is a real body when
	macros are enabled.
	* score/macros/rtems/score/coresem.inl: Added macro implementation of
	_CORE_semaphore_Seize_isr_disable.
	* score/macros/score/Makefile.am: Fixed typos.
	* score/rtems/score/address.inl: Correct macro implementation of
	_Addresses_Is_aligned() so it would compile.
	* score/macros/rtems/score/coremsg.inl: Added closing parentheses.
	* rtems/src/msgqsubmit.c: Modified multiprocessing conditional so this
	would compile with both macros and inlines.
	* rtems/macros/rtems/rtems/sem.inl: Added macro implementation of
	_Semaphore_Get_interrupt_disable().
	* libmisc/mw-fb/mw_uid.c: Removed unnecessary dependency on <bsp.h>.
	* libnetworking/modem/ppp_tty.c: Changed to include
	<rtems/termiostypes.h> since that is an RTEMS specific header file.
	* libnetworking/sys/ttycom.h: Moved to lib/include/sys.
	* libnetworking/Makefile.am: Modified to reflect above.

2000-11-28	Joel Sherrill <joel@OARcorp.com>

	* libfs/src/imfs/memfile.c: Bug report from Sturniolo Jose
	<jsturnio@nec.com.ar> where NULL pointer was dereferenced.

2000-11-28	Chris Johns <ccj@acm.org>

	* score/src/heapallocate.c: Do not allow the size to overflow when
	adjusting it.  A test allocated a stack of -1 (~0). This actually
	resulted in a stack being allocated but with a size of 0xb. The
	allocator did not test the size to see if it rolled through 0 and so
	allowed the allocation to happen, the thread to get created. The task
	crashed as you would expect.

2000-11-27	Joel Sherrill <joel@OARcorp.com>

	* posix/src/sysconf.c: Add support for _SC_CLK_TCK and _SC_OPEN_MAX.
	* libnetworking/libc/res_init.c: Fix typo - adding missing # on include.

2000-11-25	Eric Norum <eric.norum@usask.ca>

	* libnetworking/libc/res_init.c: Move include to avoid compiler dumping
	core.

2000-11-25	Antti P Miettinen  <antti.p.miettinen@nokia.com>

	* libnetworking/wrapup/Makefile.am, libnetworking/configure.in,
	libnetworking/Makefile.am: Added modem subdir.
	* libnetworking/net/Makefile.am: Added if_pppvar.h, pppcompress.h.
	* libnetworking/pppd/Makefile.am: Added pppmain.c (which needs work).
	* libnetworking/pppd/chat.c, libnetworking/pppd/fsm.c,
	libnetworking/pppd/fsm.h, libnetworking/pppd/ipxcp.c,
	libnetworking/pppd/main.c, libnetworking/pppd/ppp_tty.c,
	libnetworking/pppd/upap.c: Changes from Thomas Doerfler 
	<Thomas.Doerfler@imd-systems.de> and cosmetic changes by me. Actually
	main.c and ppp_tty.c should be scratched. The modem subdir has the real
	ppp_tty.c and the real pppd main is in pppmain.c.

2000-11-17	Jennifer Averret <jennifer@OARcorp.com>

	* libfs/src/imfs/imfs_eval.c: Always return imaginary node at mount
	points.

2000-11-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am, itron/Makefile.am, posix/Makefile.am,
	libmisc/Makefile.am, librpc/Makefile.am, libfs/Makefile.am,
	libnetworking/Makefile.am: Use ... instead of RTEMS_TOPdir in
	ACLOCAL_AMFLAGS.

2000-11-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am, itron/Makefile.am, posix/Makefile.am,
	libmisc/Makefile.am, librpc/Makefile.am, libfs/Makefile.am,
	libnetworking/Makefile.am: Switch to ACLOCAL_AMFLAGS = -I
	$(RTEMS_TOPdir)/aclocal.

2000-11-02	Joel Sherrill <joel@OARcorp.com>

	* score/include/rtems/system.h: Use proper conditional (RTEMS_POSIX_API)
	so prototypes for POSIX_MP_NOT_IMPLEMENTED(), POSIX_NOT_IMPLEMENTED(),
	POSIX_BOTTOM_REACHED() are actually included.
	* score/include/rtems/system.h: Add prototypes for
	POSIX_MP_NOT_IMPLEMENTED(), POSIX_NOT_IMPLEMENTED(),
	POSIX_BOTTOM_REACHED() removed from newlib.

2000-11-01	Joel Sherrill <joel@OARcorp.com>

	* libfs/src/imfs/Makefile.am, libfs/src/imfs/deviceio.c,
	libfs/src/imfs/imfs_chown.c, libfs/src/imfs/imfs_config.c,
	libfs/src/imfs/imfs_creat.c, libfs/src/imfs/imfs_debug.c,
	libfs/src/imfs/imfs_directory.c, libfs/src/imfs/imfs_eval.c,
	libfs/src/imfs/imfs_fchmod.c, libfs/src/imfs/imfs_free.c,
	libfs/src/imfs/imfs_fsunmount.c, libfs/src/imfs/imfs_gtkn.c,
	libfs/src/imfs/imfs_init.c, libfs/src/imfs/imfs_initsupp.c,
	libfs/src/imfs/imfs_link.c, libfs/src/imfs/imfs_mknod.c,
	libfs/src/imfs/imfs_mount.c, libfs/src/imfs/imfs_readlink.c,
	libfs/src/imfs/imfs_rmnod.c, libfs/src/imfs/imfs_stat.c,
	libfs/src/imfs/imfs_symlink.c, libfs/src/imfs/imfs_unixstub.c,
	libfs/src/imfs/imfs_unlink.c, libfs/src/imfs/imfs_unmount.c,
	libfs/src/imfs/imfs_utime.c, libfs/src/imfs/ioman.c,
	libfs/src/imfs/memfile.c, libfs/src/imfs/miniimfs_init.c: assoc.h,
	error.h, libio_.h, libio.h, and libcsupport.h moved  from libc to
	lib/include/rtems and now must be referenced as <rtems/XXX.h>.  Now we
	do not have to reach up and over to libc to pick them up.

2000-10-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* posix/configure.in: Cleanup comments.

2000-10-30	Joel Sherrill <joel@OARcorp.com>

	* posix/include/Makefile.am: Updated to reflect files merged into
	newlib. This resulted in some definitions moving to other files and thus
	some secondary effects in RTEMS source code.
	* posix/include/unistd.h: Removed.  Now use newlib's.
	* posix/include/rtems/posix/mqueue.h: Add include of <signal.h>.
	* posix/include/rtems/posix/threadsup.h: Add include of <sys/signal.h>.
	* posix/src/execv.c, posix/src/execve.c, posix/src/execvp.c: Corrected
	prototype to agree with newlib.
	* posix/src/psignal.c: Rewrote reference to <siginfo.h> in comment since
	that file no longer exists.
	* posix/src/pthreadkill.c, posix/src/sigaction.c: Added include of
	<signal.h>.
	* posix/src/sigtimedwait.c: Rewrote reference to <siginfo.h> in comment
	since that file no longer exists.
	* POSIX include files merged into newlib.  This resulted in some
	definitions moving to other files and thus some secondary effects in
	RTEMS source code.
	* sapi/include/confdefs.h: Replaced include of <sys/siginfo.h> with
	<signal.h> since that file no longer exists.
	* POSIX include files merged into newlib.  This resulted in some
	definitions moving to other files and thus some secondary effects in
	RTEMS source code.
	* librpc/src/rpc/Makefile.am, librpc/src/rpc/auth_time.c,
	librpc/src/rpc/clnt_simple.c, librpc/src/rpc/clnt_tcp.c,
	librpc/src/rpc/clnt_udp.c, librpc/src/rpc/clnt_unix.c,
	librpc/src/rpc/get_myaddress.c, librpc/src/rpc/pmap_clnt.c,
	librpc/src/rpc/pmap_getmaps.c, librpc/src/rpc/pmap_getport.c,
	librpc/src/rpc/pmap_rmt.c, librpc/src/rpc/rtime.c,
	librpc/src/rpc/svc_tcp.c, librpc/src/rpc/svc_udp.c,
	librpc/src/rpc/svc_unix.c: Use of _read, _write, and _close as macros
	conflicted with newlib's use of these as routine names.  They were
	renamed to include "_RPC_" prefix.
	* POSIX include files merged into newlib.  This resulted in some
	definitions moving to other files and thus some secondary effects in
	RTEMS source code.
	* libnetworking/machine/types.h: Added _CLOCKID_T_ and _TIMER_T_ to be
	in sync with newlib's <machine/types.h>.
	* libnetworking/rtems/rtems_bsdnet_internal.h: newlib now includes
	definition of struct itimerval in <sys/time.h>.

2000-10-25	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am, itron/Makefile.am, posix/Makefile.am,
	libmisc/Makefile.am, librpc/Makefile.am, libnetworking/Makefile.am:
	ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros. Switch to GNU
	canonicalization.

2000-10-24	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libfs/Makefile.am, libfs/configure.in: Introduce GNU canonicalization
	to libfs/. The approach is currently a bit of a hack as GNU
	canonicalization does not support the per-BSP build some of the other
	directories require.  As more of the tree is converted, this will become
	less  of an issue.

2000-10-24	Joel Sherrill <joel@OARcorp.com>

	* libfs/src/imfs/imfs_config.c: New file containing IMFS configuration
	information split from libc/base_fs.c.
	* libfs/src/imfs/ioman.c: New file. Moved from lib/libc. Missed
	previously.
	* libfs/src/imfs/Makefile.am: Added imfs_config.c and ioman.c.

2000-10-19	Joel Sherrill <joel@OARcorp.com>

	* libfs/.cvsignore, libfs/src/.cvsignore, libfs/src/imfs/.cvsignore,
	libfs/wrapup/.cvsignore: New files.

2000-10-19	Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>

	* libnetworking/lib/tftpDriver.c: add comments to handlers struct
	function pointers.
	* libnetworking/rtems/rtems_glue.c: move pointer arithmetic to be
	_after_ pointer has been checked against NULL.

2000-10-18	Nick Simon <Nick.SIMON@syntegra.bt.co.uk>

	* score/src/heapgetinfo.c, score/include/rtems/score/heap.h,
	score/src/Makefile.am: Added _Heap_Get_information() and information
	control block.
	* score/src/heapgetinfo.c: New file.

2000-10-18	Joel Sherrill <joel@OARcorp.com>

	* sapi/include/confdefs.h: Set CONFIGURE_INIT_TASK_STACK_SIZE to 0 if
	there is no Classic API Initialization Tasks Table defined.
	* sapi/include/confdefs.h: Modified code that accounts for
	initialization task/threads with greater than minimum stack sizes so it
	would compile even if optional APIs are disabled.
	* rtems/src/regiongetinfo.c, rtems/include/rtems/rtems/region.h,
	rtems/include/rtems/rtems/types.h, rtems/src/Makefile.am: Added
	region_get_information() and information control block.
	* rtems/src/regiongetinfo.c: New file.

2000-10-18	Chris Johns <ccj@acm.org>

	* libfs created.
	* libfs/src, libfs/src/imfs, libfs/wrapup: New directories.
	* libfs/ChangeLog, libfs/Makefile.am, libfs/README, libfs/configure.in,
	libfs/src/Makefile.am, libfs/wrapup/Makefile.am: New files.
	* libfs/src/imfs/deviceio.c, libfs/src/imfs/imfs_getchild.c,
	libfs/src/imfs/imfs_readlink.c, libfs/src/imfs/imfs.h,
	libfs/src/imfs/imfs_gtkn.c, libfs/src/imfs/imfs_rmnod.c,
	libfs/src/imfs/imfs_chown.c, libfs/src/imfs/imfs_handlers_device.c,
	libfs/src/imfs/imfs_stat.c, libfs/src/imfs/imfs_creat.c,
	libfs/src/imfs/imfs_handlers_directory.c, libfs/src/imfs/imfs_symlink.c,
	libfs/src/imfs/imfs_debug.c, libfs/src/imfs/imfs_handlers_link.c,
	libfs/src/imfs/imfs_unixstub.c, libfs/src/imfs/imfs_directory.c,
	libfs/src/imfs/imfs_handlers_memfile.c, libfs/src/imfs/imfs_unlink.c,
	libfs/src/imfs/imfs_eval.c, libfs/src/imfs/imfs_init.c,
	libfs/src/imfs/imfs_unmount.c, libfs/src/imfs/imfs_fchmod.c,
	libfs/src/imfs/imfs_initsupp.c, libfs/src/imfs/imfs_utime.c,
	libfs/src/imfs/imfs_fcntl.c, libfs/src/imfs/imfs_link.c,
	libfs/src/imfs/memfile.c, libfs/src/imfs/imfs_fdatasync.c,
	libfs/src/imfs/imfs_mknod.c, libfs/src/imfs/miniimfs_init.c,
	libfs/src/imfs/imfs_free.c, libfs/src/imfs/imfs_mount.c,
	libfs/src/imfs/imfs_fsunmount.c, libfs/src/imfs/imfs_ntype.c: New files.
	Moved from libc.
	* libnetworking/pppd/ipxcp.c: Fixed a typo.

2000-10-12	Joel Sherrill <joel@OARcorp.com>

	* sapi/include/confdefs.h: Account for initialization tasks and threads
	which use larger than minimum stack sizes.

2000-09-29	Stephan Merker <merker@decrc.abb.de>

	* rtems/include/rtems/rtems/ratemon.h, rtems/src/ratemonperiod.c,
	rtems/src/ratemontimeout.c: Add next_length field so period length can
	be changed by the the sequence period(X), period(not X) with no
	intervening cancel or expiration.

2000-09-28	Joel Sherrill <joel@OARcorp.com>

	* sapi/include/rtems/io.h (rtems_driver_address_table): Added "_entry"
	to all names.
	* sapi/src/io.c: Accounted for above.
	* libmisc/monitor/mon-driver.c: Accounted for addition of "_entry" to
	fields in rtems_driver_address_table.
	* libnetworking/rtems_webserver/Makefile.am,
	libnetworking/rtems_webserver/base64.c,
	libnetworking/rtems_webserver/base64.c: Renamed base64.c to wbase64.c.
	* libnetworking/rtems_webserver/sock.c: Added file missed in merger.

2000-09-25	Joel Sherrill <joel@OARcorp.com>

	* score/rtems/system.h: Switched a29k and hppa1.1 to using cpuopts.h not
	targopts.h to reduce dependency on BSP.

2000-09-22	Joel Sherrill <joel@OARcorp.com>

	* librpc/src/xdr/xdr_float.c: Added A29K support.
	* libnetworking/machine/types.h, libnetworking/pppd/pppd.h,
	libnetworking/rtems/rtems_bsdnet_internal.h,
	libnetworking/rtems_webserver/webmain.c: machine/types.h  should not
	have included rtems.h.  It is now including precisely the  least amount
	of low level, yet portable .h files to get the basic RTEMS types
	defined.  This rippled into other  files since rtems_bsdnet_internal.h
	used machine/types.h to include rtems.h.

2000-09-20	Joel Sherrill <joel@OARcorp.com>

	* score/src/objectgetbyindex.c: Do not enable dispatching on an error
	path it was not disabled on.

2000-09-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/rtems/Makefile.am: Use PROJECT_TOPdir in path to size_rtems.
	* libnetworking/ChangeLog: Cleanup.

2000-09-05	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/rtems/rtems_syscall.c: Changed from O_NONBLOCK to
	internal RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY
	confusion and to work with the converted flags.

2000-09-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/itron/Makefile.am, wrapup/posix/Makefile.am, 
	wrapup/rtems/Makefile.am, itron/src/Makefile.am, posix/src/Makefile.am,
	posix/optman/Makefile.am, score/src/Makefile.am, sapi/src/Makefile.am,
	sapi/optman/Makefile.am, rtems/optman/Makefile.am,
	rtems/src/Makefile.am, libmisc/cpuuse/Makefile.am,
	libmisc/dummy/Makefile.am, libmisc/dumpbuf/Makefile.am,
	libmisc/monitor/Makefile.am, libmisc/rtmonuse/Makefile.am,
	libmisc/stackchk/Makefile.am, libmisc/untar/Makefile.am,
	libmisc/wrapup/Makefile.am, libmisc/mw-fb/Makefile.am,
	librpc/src/rpc/Makefile.am, librpc/src/xdr/Makefile.am,
	libnetworking/kern/Makefile.am, libnetworking/lib/Makefile.am,
	libnetworking/libc/Makefile.am, libnetworking/net/Makefile.am,
	libnetworking/netinet/Makefile.am, libnetworking/nfs/Makefile.am,
	libnetworking/pppd/Makefile.am, libnetworking/rtems/Makefile.am,
	libnetworking/rtems_servers/Makefile.am,
	libnetworking/rtems_webserver/Makefile.am,
	libnetworking/wrapup/Makefile.am: Include compile.am.

2000-09-01	Rosimildo daSilva <rdasilva@connecttel.com>

	* libnetworking/emfdb.c: Removed stray semi-colon.  Reported on GoAhead
	mailing lists by Jim Rudnicki <jdrudnicki@yahoo.com>.

2000-08-31	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/netinet/tcp_input.c: Spelling corrections.

2000-08-31	Joel Sherrill <joel@OARcorp.com>

	* Merged version 2.1 of GoAhead webserver.  This update was submitted by
	Antti P Miettinen <antti.p.miettinen@nokia.com>.
	* libnetworking/NOTES, libnetworking/base64.c, libnetworking/ejIntrn.h,
	libnetworking/emfdb.c, libnetworking/emfdb.h, libnetworking/md5.h,
	libnetworking/md5c.c, libnetworking/ um.c, libnetworking/um.h: New files.
	* libnetworking/wbase64.c: Removed.
	* libnetworking/Makefile.am, libnetworking/asp.c,
	libnetworking/balloc.c, libnetworking/default.c, libnetworking/ej.h,
	libnetworking/ejlex.c, libnetworking/ejparse.c, libnetworking/ form.c,
	libnetworking/h.c, libnetworking/handler.c, libnetworking/mime.c,
	libnetworking/misc.c, libnetworking/ringq.c, libnetworking/rom.c,
	libnetworking/security.c, libnetworking/ socket.c, libnetworking/sym.c,
	libnetworking/uemf.c, libnetworking/uemf.h, libnetworking/url.c,
	libnetworking/value.c, libnetworking/webcomp.c, libnetworking/webmain.c,
	libnetworking/ webpage.c, libnetworking/webrom.c, libnetworking/webs.c,
	libnetworking/webs.h, libnetworking/websuemf.c, libnetworking/wsIntrn.h:
	Modified.

2000-08-30	Joel Sherrill <joel@OARcorp.com>

	* posix/Many files, score/Many files, libmisc/Many files: Moved
	posix/include/rtems/posix/seterr.h to  score/include/rtems/seterr.h so
	it would be available within all APIs.
	* libmisc/mw-fb/.cvsignore, libnetworking/rtems_webserver/license.txt:
	New file.

2000-08-30	Joel Sherrill <joel.sherrill@OARcorp.com>

	* rtems/taskstart.c: Removed 1st cut at rtems_task_start_main_style.
	Only committed this so it could be easily revisited as we discussing
	moving main() to user space from BSP space.
	* rtems/taskstart.c: Added 1st cut at rtems_task_start_main_style.

2000-08-26	Rosimildo da Silva  <rdasilva@connecttel.com>

	* Added generic Micro FrameBuffer interface for MicroWindows. This
	interface allows MicroWindows to under RTEMS. A sample driver has been
	developed for the pc386 BSP. See pc386/fb_vga.c as a sample.
	* Added Uniform Input Device interface for MicroWindows.  See PC386 bsp
	for sample drivers for mouse and keyboard (console).
	* libmisc/mw-bf: New directory.
	* libmisc/Makefile.am, libmisc/configure.in, libmisc/wrapup/Makefile.am:
	Account for mw-fb.
	* libmisc/mw-fb/Makefile.am, libmisc/mw-fb/mw_fb.c,
	libmisc/mw-fb/mw_fb.h, libmisc/mw-fb/mw_uid.c, libmisc/mw-fb/mw_uid.h:
	New file.

2000-08-25	Joel Sherrill <joel.sherrill@OARcorp.com>

	* posix/inline/rtems/posix/timer.inl, posix/include/rtems/posix/timer.h,
	posix/ inline/rtems/posix/Makefile.am, posix/src/ptimer1.c: Redid the
	style of src/ptimer1.c.  Continued effort to make the POSIX Timer
	implementation match that of other managers. Added data structures
	required to use SuperCore Object Handler.

2000-08-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* score/include/rtems/system.h: Include cpuopts.h for __i386__.

2000-08-15	Joel Sherrill <joel@OARcorp.com>

	* posix/src/ptimer1.c: Minor formatting fixes.
	* posix/src/ptimer1.c: Removed unused routine PRINT_ERRNO_S.
	* posix/src/ptimer1.c: Removed unnecessary routine COPY_ITIMERSPEC_S and
	used structure copy instead.
	* posix/src/ptimer1.c: Renamed timer_alive_t to POSIX_Timer_Control.
	* posix/include/rtems/posix/timer.h: Ditto.
	* posix/src/ptimer1.c: Switched to using
	set_errno_and_return_minus_one() to ensure that errno was always set.
	* posix/src/ptimer1.c (timer_settime): Converted use of rtems_clock_get
	to use SuperCore _TOD_Current variable.

2000-08-10	Joel Sherrill <joel@OARcorp.com>

	* ChangeLog, itron/ChangeLog, posix/ChangeLog, score/ChangeLog,
	sapi/ChangeLog, rtems/ChangeLog, libmisc/ChangeLog, librpc/ChangeLog,
	libnetworking/ChangeLog: New file.