summaryrefslogtreecommitdiff
path: root/PACE/ChangeLog
blob: fa114b191504c9bfdf59ca371c82f367408f7907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
Wed Jul 12 17:30:54 2000  John Heitmann  <jwh1@cs.wustl.edu>

	* pace/posix/types.h
	  Fixed pace_tchar.

Wed Jul 12 16:31:51 2000  Luther J Baker  <luther@cs.wustl.edu>

	* pace/win32/types.h:

	  Fixed PACE_TCHAR.

Wed Jul 12 16:10:39 2000  John Heitmann  <jwh1@cs.wustl.edu>

	* pace/fcntl.h
	* pace/mqueue.h
	* pace/semaphore.h
	* pace/stdio.h
	* pace/unistd.h
	* pace/unistd.inl
	* pace/tests/mqueue_test.c
	  Updated all #define pace_func (X) macros to remove the need
	  for double paranthesis.

Wed Jul 12 17:01:47 2000  Ossama Othman  <ossama@uci.edu>

	* Makefile.am:
	* pace/Makefile.am:
	* pace/posix/Makefile.am:
	* tests/Makefile.am:

	  Preliminary Automake input files for PACE.  They aren't working
	  yet, but do provide a good start.

Wed Jul 12 15:27:27 2000  Luther J Baker  <luther@cs.wustl.edu>

	* pace/posix/types.h (PACE_TCHAR):
	* pace/win32/types.h (PACE_TCHAR):

	  Added typedef char PACE_TCHAR;
	  Protected some of the typedefs.

Wed Jul 12 14:26:10 2000  Luther J Baker  <luther@cs.wustl.edu>

	* pace/win32/aio.inl:

	  PACE_ERRNO_NO_SUPPORT_RETURN (-1);
	  Emulate support for these latter.

Wed Jul 12 14:15:10 2000  Luther J Baker  <luther@cs.wustl.edu>

	* pace/win32/signal.h:
	* pace/win32/time.h:

	  Added types to help win32 along.

Wed Jul 12 12:10:55 2000  David L. Levine  <levine@cs.wustl.edu>

        * pace/config/platform.h: added OSF1 support.

Wed Jul 12 11:51:52 2000  Luther J Baker  <luther@cs.wustl.edu>

	* pace/win32/errno.h:

	  Added to repository.

	* pace/win32/pace_dll.dsp:
	* pace/win32/pace_lib.dsp:

	  Modified to include the new file.

Wed Jul 12 11:45:34 2000  David L. Levine  <levine@cs.wustl.edu>

        * include/makeinclude/rules.commmon.GNU: added OSF1 support.

Wed Jul 12 10:53:01 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/win32/pace_lib.dsp:
        * pace/win32/pace_dll.dsp:

          Added the PACE/pace/*.h files. These currently contain
          the interface we need to compile into our code. Maybe
          we can change the following, but we now have
          PACE/pace/aio.h and PACE/pace/win32/aio.h
          both showing up in the VC++ list as aio.h and aio.h.
          The PACE/pace/win32 files always show up second :-)

Wed Jul 12 10:24:20 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/win32/wait.h:
        * pace/win32/utsname.h:
        * pace/win32/utime.h:
        * pace/win32/unistd.h:
        * pace/win32/types.h:
        * pace/win32/times.h:
        * pace/win32/time.h:
        * pace/win32/termios.h:
        * pace/win32/string.h:
        * pace/win32/stdlib.h:
        * pace/win32/stdio.h:
        * pace/win32/stat.h:
        * pace/win32/signal.h:
        * pace/win32/setjmp.h:
        * pace/win32/semaphore.h:
        * pace/win32/sched.h:
        * pace/win32/pwd.h:
        * pace/win32/pthread.h:
        * pace/win32/mqueue.h:
        * pace/win32/mman.h:
        * pace/win32/math.h:
        * pace/win32/locale.h:
        * pace/win32/limits.h:
        * pace/win32/grp.h:
        * pace/win32/fcntl.h:
        * pace/win32/dirent.h:
        * pace/win32/ctype.h:
        * pace/win32/assert.h:
        * pace/win32/aio.h:

          Removed function prototypes. These were moved to the PACE/*.h files.
          Removed #include *.inl files. These are inluded by the PACE/*.h files.
          Postfixed the protective preprocessor guards with _WIN32
          (ie: PACE_CTYPE_H_WIN32).

Wed Jul 12 01:25:44 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/emulation/time.c:
          Removed since it is currently empty.

        * pace/emulation/time.h:
          Minor changes to how this file is included in:

        * pace/posix/time.h:
          Changed how emulation/time.h is included on Linux

        * pace/config/compiler.h
        * pace/posix/string.inl
        * pace/posix/unistd.inl
          Changed to quell odd compiler warnings from gcc. Added
          PACE_BROKEN_INLINE.

        * pace/emulation/mqueue.*
          Improved and updated code, but it is still not complete.

        * pace/tests/mqueue_test.c
        * pace/tests/Makefile
          Added a very simple test to verify mqueue works.

Tue Jul 11 21:05:58 2000  David L. Levine  <levine@cs.wustl.edu>

        * pace/unistd.h,pace/posix/unistd.inl:
          1) pace_execl{,e,p} weren't declared/defined with
             PACE_INLINE, so they were being put into each .o.
          2) Reordered some of the function definitions in
             posix/unistd.inl, so that they appear before all uses.

Tue Jul 11 19:31:13 2000  David L. Levine  <levine@cs.wustl.edu>

        * pace/stdio.h: fixed copy+paste error in comment:
          tmpfile instead of sscanf.

Tue Jul 11 4:28:00 2000  Andrew G. Gilpin  <agg1@cs.wustl.edu>

        * rules.common.GNU:
          Added functionality so that PACE_SYSVER on Linux is in the
          same format as LINUX_VERSION_CODE from the Linux source code.
          For example, Linux version 2.2.12 -> 0x02020C == 131596

Tue Jul 11 10:24:03 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * tests/Makefile:
          Changed to always include the PACE library. This was causing
          problems for functions that are never inlined when inlining
          is enabled.

Mon Jul 10 13:47:25 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/stddef.h
        * pace/stdio.h
        * pace/string.h
        * pace/unistd.h
          Changed to new format, all functions should now be
          declared in pace/

        * pace/mqueue.h
        * pace/emulation/mqueue*
          Emulated mqueue for linux. Curently there is no support for
          mq_notify, and there is a race condition if two procs try to
          create the same queue at the same time.

        * pace/stdio.h
        * pace/posix/stdio.inl
        * pace/unistd.h
        * pace/posix/unistd.inl
          Moved ctermid back to where it should be (stdio).

        * pace/string.h
        * pace/posix/string.inl
          Added mem* functions (e.g. memset), since they are C std.

        * pace/time.h
        * pace/posix/time.inl
          ENOSYSed clock_* and timer_* functions for Linux, although
          emulation may be possible.

        * pace/posix/pthread.inl
          ENOSYSed many functions not supported on Linux. Linux should
          build clean now for the moment.

Mon Jul 10 08:50:37 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/posix/time.inl:
        * pace/posix/pthread.inl:
        * pace/posix/aio.inl:
          Changed code to use PACE_NONCONST_ARG_CAST rather than
          #idef'ing for LynxOS and doing the cast.

        * pace/config/defines.h:
          Changed order of include so that platform.h (and
          POSIX_HAS_* #defines) will be first.

        * pace/config/config.h:
          Added PACE_NONCONST_ARG_CAST macro. Needed for LynxOS
          when it doesn't use const args for POSIX functions
          taking const args.

        * tests/Makefile:
        * pace/Makefile:
          Took out common rules and included
          include/makeinclude/rules.common.GNU instead.

        * include/makeinclude/rules.common.GNU:
          Added this file to take out common rules from the
          different Makefiles.

        * tests/Posix_SP_Test.c:
          Made test more robust (e.g., check for all specified POSIX
          names for sysconf and for NULL and non-NULL arg to time)
          Also, ifdefed out some sysconf names for LynxOS since those
          names are supported. Sent email to LynuxWorks about this.

Fri Jul  7 19:11:38 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/sys/mman.h
        * pace/sys/stat.h
        * pace/sys/times.h
        * pace/sys/types.h
        * pace/sys/utsname.h
        * pace/sys/wait.h
        * pace/termios.h
        * pace/time.h
        * pace/unistd.h
        * pace/utime.h
        * pace/posix/mman.h
        * pace/posix/stat.h
        * pace/posix/termios.h
        * pace/posix/time.h
        * pace/posix/times.h
        * pace/posix/types.h
        * pace/posix/unistd.h
        * pace/posix/utime.h
        * pace/posix/utsname.h
        * pace/posix/wait.h

        Continued  changes:

        Changed the #if defined (PACE_HAS_POSIX) to #if
        PACE_HAS_POSIX per our recent conversation regarding all macros being
        assigned a value.

        Moved the prototype function signatures to the root
        directory *.h file.

        Changed the form the *.inl file was included.


Fri Jul  7 17:24:33 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/fcntl.h:

          Missing extern "C" { }.

Fri Jul  7 17:22:56 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/aio.h:
        * pace/posix/aio.h:
        * pace/assert.h:
        * pace/posix/assert.h:
        * pace/ctype.h:
        * pace/posix/ctype.h:
        * pace/dirent.h:
        * pace/posix/dirent.h:
        * pace/fcntl.h:
        * pace/posix/fcntl.h:
        * pace/grp.h:
        * pace/posix/grp.h:
        * pace/math.h:
        * pace/posix/math.h:
        * pace/mqueue.h:
        * pace/posix/mqueue.h:
        * pace/pthread.h:
        * pace/posix/pthread.h:
        * pace/pwd.h:
        * pace/posix/pwd.h:
        * pace/sched.h:
        * pace/posix/sched.h:
        * pace/semaphore.h:
        * pace/posix/semaphore.h:
        * pace/setjmp.h:
        * pace/posix/setjmp.h:
        * pace/signal.h:
        * pace/posix/signal.h:

          Changed the protection includes. Eg:
            ROOT directory PACE_ASSERT_H
            POSIX directory PACE_ASSERT_H_POSIX.

          Changed the #if defined (PACE_HAS_POSIX) to #if PACE_HAS_POSIX
          per our recent conversation regarding all macros being assigned a
          value.

          Moved the prototype function signatures to the root directory *.h file.

          Changed the form the *.inl file was included.

Fri Jul  7 16:23:57 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/errno.h:
        * pace/posix/errno.h

          Altered to fit in current

Fri Jul  7 16:04:30 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/config/platform:

          # define all unused macros so we can test them against '0'
          in the source code.

Fri Jul  7 15:24:57 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/config/compiler.h:

          # define PACE_HAS_CPLUSPLUS __cplusplus

Fri Jul 07 14:41:51 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/win32/types.h:

          Fixed some non-native type problems. Also, made some temporary
          types (pthread_*) until we actually get to win32/pthread.h at
          which point, we will correctly define these.

Fri Jul  7 02:18:02 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/posix/dirent.*:
        * pace/posix/pthread.*:
        * pace/posix/sched.h:
        * pace/posix/signal.*:
        * pace/posix/stat.*:
        * pace/posix/time.*:
        * pace/posix/utsname.inl:
          Fixed a problem with certain typedefs not being
          exposed in other .inl files due to an odd
          interaction of the #pragma once style protections
          present in the header files. A few structs were redefined
          a second time outside of their header file.

          Also, pace_stat was changed to pace_stat_s to avoid a conflict
          witht the pace_stat() function.

        * pace/win32/termios.*:
        * pace/win32/wait.h:
        * pace/win32/utsname.*:
        * pace/win32/times.*:
        * pace/win32/stat.*:
        * pace/win32/mman.*:
          Added changes made to /posix earlier.


Thu Jul  6 13:04:02 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * tests/Posix_SP_Test.c:
          Made tests more robust checking for all possible parameter
          values. Also, changed check for failure. Just because a
          function doesn't support a particular parameter value, does
          not mean the function doesn't support that function. If
          the PACE symbols can be used (i.e., the code compiles) then
          the function is supported.

Thu Jul 06 12:17:21 2000  David L. Levine  <levine@cs.wustl.edu>

        * pace/posix/pthread.inl (pace_pthread_mutex_{get,set}prioceiling):
          LynxOS does not have pthread_mutex_{get,set}prioceiling, so
          don't call them with PACE_LYNXOS.

Wed Jul 5 13:38:11 2000 John Heitmann <jwh1@cs.wustl.edu>

        * pace/types.h:
          Added #include <pthread.h> to expose types on LynxOS.

        * pace/time.inl:
          Casted away const for LynxOS.

        * pace/posix/termios.*:
          Fixed a typedef and removed tc*pgrp which didn't seem to
          take from the last commit.

        * ../ace/OS.i:
          Updated corresponding functions to those newly added in PACE.

Wed Jul  5 17:15:26 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/Makefile:
          Fixed error introduced by my earlier update.

        * pace/termios.*:
          Added typedefs and changed function signatures appropriately.
          Removed tcgetpgrp which was added to unistd earlier.

        * pace/sys/wait.h:
          Added macros.

        * pace/sys/utsname.*:
        * pace/sys/times.*:
        * pace/sys/stat.*:
        * pace/sys/mman.*
          Added typedefs and changed function parameters appropriately.

        * pace/time.h:
          Added #include "pace/signal.h"

        * pace/unistd.inl:
          Changed spelling error.

        * pace/signal.*:
        * pace/stat.*:
          Typedefs of structs later used as pointers were broken
          so I reverted back to the old way temporarily.

Wed Jul 05 16:00:32 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/win32/types.h:

          Removed redefinition of size_t.

Wed Jul 05 14:54:16 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/win32/types.h:

          Define native UNIX types to work on WIN32 types.

Wed Jul  5 15:28:25 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/Makefile:
          Fixed paths that were invalidated when wait.h and termios.h
          were moved.

Wed Jul 05 14:46:38 2000  Luther J Baker <luther@cs.wustl.edu>

        * pace/win32/aio.h:

          Removed #include <aio.h>.

Wed Jul 05 13:41:00 2000  Luther J Baker  <luther@cs.wustl.edu>

        * PACE/win32/types.h:

          Removed #include <inttypes.h>.
          Moved -*- C -*- to same line as $-Id-$

Wed Jul  5 13:25:34 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/win32/*

          Removed (posix ace) from files.

Wed Jul 05 12:49:20 2000  Luther J Baker  <luther@cs.wustl.edu>

        * PACE/config/platform.h

          WIN32 doesn't use the makefile.
          #define PACE_WIN32 2000

Wed Jul  5 12:48:41 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/win32/*.

          Update files per PACE/posix changes.

Mon Jul  3 19:30:39 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/posix/time.*:
          Added macros, typedefs, clock(), and difftime().

        * pace/posix/unistd.*:
          Added macros, typedefs, tcgetpgrp(), tcsetpgrp().

        * pace/posix/utime.*:
          Added macros and typedefs.

Mon Jul  3 9:45:00 2000 John Heitmann <jwh1@cs.wustl.edu>

        * pace/config/types.h:
          Removed. Functionality replaced by platform
          specific pace/sys/types.

        * pace/config/defines.h:
          Deleted reference to types.h.

Mon Jul  3 00:25:44 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/sys/termios.h:
          Moved to pace/

        * pace/posix/aio.*:
        * pace/posix/direnet.*:
        * pace/posix/fcntl.*:
        * pace/posix/grp.*:
        * pace/posix/locale.*:
        * pace/posix/math.*:
        * pace/posix/mqueue.*:
        * pace/posix/pthread.*:
        * pace/posix/pwd.*:
        * pace/posix/sched.*:
        * pace/posix/semaphore.*:
        * pace/posix/setjmp.*:
        * pace/posix/signal.*:
        * pace/stddef.*:
        * pace/posix/stdio.*:
        * pace/posix/stdlib.*:
        * pace/posix/string.*:
        * pace/posix/types.*:
        * pace/posix/time.*:
          Added many missing typedefs and macros. A bug has been
          added in also in types.h. It is harmless but causes a
          compiler warning that I could not fix. Files lower in
          the alphabet such as utime haven't been finished yet.

        * pace/posix/stdio.*:
          Added in the missing functions fgetpos, fsetpos, fwrite,
          setvbuf, vfprintf, vprintf, vsprintf. The last three
          are empty until passing the macro va_list is resolved.

        * pace/posix/locale.*:
          Added localeconv ().

        * pace/posix/signal.*:
          Added raise () and signal ().

        * pace/posix/unistd.*:
        * pace/posix/stdio.*:
          Moved ctermid() from stdio to unistd.

        * pace/posix/stdlib.*:
          Added abort ().

        * pace/:
          Added stddef.h and errno.h

Fri Jun 30 16:54:41 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/wait.h:
          Moved to sys/

Fri Jun 30 15:55:52 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/posix/time.h:
        * pace/posix/time.inl:
        * pace/win32/time.h:
        * pace/win32/time.inl:
          Corrected type for timeptr arg for pace_mktime function.
          Corrected non-const arg for pace_strftime. (NOTE: The
          Solaris man page incorrectly documents the constness
          of the first argument.)

        * pace/posix/stdlib.inl:
        * pace/win32/stdlib.inl:
          Corrected void return value for srand.

Fri Jun 30 15:05:08 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/posix/TODO:
          Added testing with and without PACE_HAS_POSIX_PTHREAD_SEMANTICS
          defined.

        * pace/win32/setjmp.h:
        * pace/win32/setjmp.inl:
        * pace/posix/setjmp.h:
        * pace/posix/setjmp.inl:
          Added pace_setjmp and pace_longjmp functions.

        * pace/posix/time.h:
        * pace/posix/time.inl:
        * pace/win32/time.h:
        * pace/win32/time.inl:
          Cleaned up comments and added functions pace_asctime,
          pace_ctime, pace_gmtime, pace_localtime, pace_mktime,
          and pace_strftime.
          Removed unneeded PACE_HAS_POSIX_PTHREAD_SEMANTICS guards
          in .inl files.

        * pace/win32/stdlib.h:
        * pace/win32/stdlib.inl:
        * pace/posix/stdlib.h:
        * pace/posix/stdlib.inl:
          Added functions pace_abs, pace_atof, pace_bsearch, pace_qsort,
          pace_rand, and pace_srand.
          Added "Requires PACE_HAS_REENTRANT" comment for pace_rand_r
          in header files.

        * pace/Makefile:
          Added all 18 POSIX Units of Functionality components to
          be built as separate libaries as specified on the command
          line (just like ACE).

Fri Jun 30 10:10:53 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * tests/Posix_SP_Test.c:
          Fixed description. Fixed name value arg to sysconf to be
          POSIX. Added more extensive checking and output of values
          when a function succeeds.

        * pace/Makefile:
          Removed extraneous #INCLDIRS comment.

        * pace/posix/pthread.inl:
        * pace/posix/aio.inl:
          Casted away const from certain functions for LynxOS when
          their prototypes don't have const.

        * tests/Makefile:
          Moved PACE_SYSNAME definition below wrapper_macros.GNU so
          that cross-compiled platforms (e.g., LynxOS) can define
          PACE_SYSNAME.

        * pace/config/platform.h:
          Changed of PACE_HAS_POSIX for LynxOS from PACE_LYNX to
          PACE_LYNXOS.

Thu Jun 29 19:53:10 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/config/utility.h:

          (ENOTSUP) is not defined on win32. Added support.

Thu Jun 29 19:22:46 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/win32
          Altered syntax (#include pace/posix/file.h) left over
          from copying.

Thu Jun 29 16:42:31 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/posix/pthread.{h,inl}:
        Changed pthead_condattr_init to pthread_condattr init
        and pace_pace_pthread... to pace_pthread...


Thu Jun 29 15:04:42 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/man/Makefile (index.html):
          Created PACE_DOC++ as executable to invoke and assigned
          /project/doc/pkg/bin/doc++ to it.

        * pace/posix/assert.h:
          Removed extraneous '.' in comment.

Thu Jun 29 15:04:42 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/posix/aio.h:
        * pace/posix/assert.h:
        * pace/posix/ctype.h:
        * pace/posix/dirent.h:
        * pace/posix/fcntl.h:
        * pace/posix/grp.h:
        * pace/posix/locale.h:
        * pace/posix/math.h:
        * pace/posix/mman.h:
        * pace/posix/mqueue.h:
        * pace/posix/pthread.h:
        * pace/posix/pwd.h:
        * pace/posix/sched.h:
        * pace/posix/semaphore.h:
        * pace/posix/setjmp.h:
        * pace/posix/signal.h:
        * pace/posix/stdio.h:
        * pace/posix/stdlib.h:
        * pace/posix/string.h:
        * pace/posix/time.h:
        * pace/posix/unistd.h:
        * pace/posix/utime.h:
        * pace/posix/wait.h:
          Adding doc++ html man comments.

        * pace/posix/stdio.{h,inl} (pace_printf):
          Removed pace_snprintf and pace_vsprint functions since they
          are not POSIX.

Thu Jun 29 14:47:19 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/posix/stdio.inl (pace_printf):

        * pace/man/pace.jpg:
          JPEG file of the PACE icon used in the html man pages.

        * pace/man/banner:
          Created banner file that is inserted at the bottom of
          the generated html man pages. This file contains the
          PACE logo pointing to the PACE Web page.

        * pace/man/Makefile:
          Created Makefile for the html man pages using doc++

Thu Jun 29 09:21:19 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/man/Makefile:

        * pace/config/config.h:
          Changed C++ // comment to C /* */ comment. The compiler
          (appropriately) choked on the former.

        * pace/Makefile:
          Moved defining PACE_SYSNAME until after all the macro and rules
          files are included. Otherwise, PACE_SYSNAME was not getting
          defined for LynxOS.

        * pace/posix/types.h:
          Put an #if defined (PACE_SUNOS) guard around inclusion of
          inttypes.h since this file isn't found on Lynx.

Thu Jun 29 02:38:52 2000  John Heitmann  <jwh1@cs.wustl.edu>

        * pace/posix/mman.inl:
          Added cast to char* from void* in param passing.

        * pace/posix/stdio.h:
        * pace/posix/stdio.c:
          Changed *printf from macros to functions.

        * pace/posix/unistd.c:
        * pace/posix/unistd.h:
          Changed the macros execl, execle, execlp to functions.

Wed Jun 28 11:18:17 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/Makefile:
        * tests/Makefile:
          Modified to make PACE_ROOT $(ACE_ROOT)/PACE rather than the
          previous value of $(ACE_ROOT)/pace.

Wed Jun 28 09:32:29 2000  David L. Levine  <levine@cs.wustl.edu>

        * pace/config/config.h: added platform-dependent determination
          of PACE_HAS_REENTRANT.  Also, wrapped all of the PACE_HAS...
          #defines with a check to see if it had already been defined.

        * pace/posix/stdlib.inl (pace_rand_r): use PACE_HAS_REENTRANT,
          now that the platform-dependent code is in pace/config/config.h.

Wed Jun 28 09:21:07 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * tests/Makefile:
        * pace/Makefile:
          Changed inlining to be the default.

Tue Jun 27 23:09:34 2000 John Heitmann <jwh1@cs.wustl.edu>

        * pace/posix/unistd.h:
        * pace/posix/termios.inl:
          Added #includes of <unistd.h> and <termios.h> to preclude
          undeclared token warnings without inlining enabled.

        * pace/posix/pwd.inl:
          Added PACE_UNUSED_ARG where needed.

Tue Jun 27 22:03:52 2000  David L. Levine  <levine@cs.wustl.edu>

        * pace/posix/stdlib.inl (pace_rand_r): on Linux and
          SunOS, rand_r isn't available if certains macros
          aren't defined, so reflect that.  rand_r doesn't
          appear anywhere in the LynxOS 3.1.0 headers, so
          NO_SUPPORT there as well.

Tue Jun 27 16:35:20 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/posix/aio.h:
          Removed copyrighted Solaris man text that accidentally get
          committed to the repository and replaced it with text to
          denote what really needs to go there.

Tue Jun 27 14:32:40 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/posix/aio.h:

        * tests/Makefile (ACELIB):
          Defining PACE_HAS_INLINE from the Makefile and adding the PACE
          library if we are not inlining.

        * pace/posix/stdio.inl:
          Removed function since it's now a macro in the header file.

        * pace/posix/stdio.h:
          Changed pace_sprintf from a function to a macro because of
          compilation warnings. Can be changed later.

        * pace/config/compiler.h (PACE_INLINE):
          Changed definition of PACE_INLINE depending on if PACE_HAS_INLINE
          is defined.

        * pace/config/features.h:
          Removed PACE_HAS_INLINE from here since the Makefile now
          defines it.

        * pace/Makefile:
          Defining PACE_HAS_INLINE from the Makefile.

Tue Jun 27 11:23:41 2000  David L. Levine  <levine@cs.wustl.edu>

        * pace/posix/pthread.{h,inl} (pthread_cleanup_{push,pop}):
          replaced these inline functions with macros.  They're
          supposed to be used in the same block; pthread_cleanup_pop
          refers to a local object that pthread_cleanup_push declares.
          I don't see how to implement that with inline functions.

Tue Jun 27 10:11:00 2000 John Heitmann <jwh1@cs.wustl.edu>

        * pace/tests/Posix_SP_Test.c
        * pace/tests/Stdio_Test.c
        * pace/pace/posix/time.inl
          Added more PACE_UNUSED_ARG

Tue Jun 27 9:51:43 2000 John Heitmann <jwh1@cs.wustl.edu>

        * pace/tests/Makefile
          Changed VLDLIBS := to +=

        * pace/tests/Posix_SP_Test.c
          Included pace/stdio.h

Mon Jun 26 15:07:08 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/pace/win32/pace.dsw:
        * pace/pace/win32/pace_dll.dsp:
        * pace/pace/win32/pace_lib.dsp:

          Updated to link correctly.

Mon Jun 26 13:27:02 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/pace/win32/pace.dsw:
        * pace/pace/win32/pace_dll.dsp:
        * pace/pace/win32/pace_lib.dsp:

          Added to repository.

Mon Jun 26 12:24:36 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/pace/posix/TODO:

          Updated.

        * pace/pace/win32/*.[h,inl,cpp] README TODO:

          Added to repository.

Mon Jun 26 11:03:00 2000 John Heitmann <jwh1@cs.wustl.edu>

        * pace/pace/posix/pwd.inl
        * pace/pace/posix/string.inl
        * pace/pace/posix/grp.inl
        * pace/pace/posix/dirent.inl

          Added PACE_UNUSED_ARG where needed.

Sat Jun 24 7:10 2000 <jwh1@cs.wustl.edu>

        * pace/pace/posix/unistd.inl
        * pace/pace/posix/signal.inl

          Added PACE_UNUSED_ARG where needed.

Wed Jun 21 18:50:04 2000  Luther J Baker  <luther@cs.wustl.edu>

        * in.h, inet.h, netdb.h, socket.h, strings.h, thread.h

          Not part of POSIX spec. Removed from pace.

Wed Jun 21 18:42:22 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/tests/Makefile:

          Copied changes Joe made to pace/pace/Makefile regarding
          platform definitions.

        * pace/config/config.h (PACE_HAS_EXTENSIONS):
        * pace/pace/posix/dirent.inl
        * pace/pace/posix/grp.inl
        * pace/pace/posix/mman.inl
        * pace/pace/posix/pwd.inl
        * pace/pace/posix/signal.inl
        * pace/pace/posix/stdio.inl
        * pace/pace/posix/stdlib.inl
        * pace/pace/posix/string.inl
        * pace/pace/posix/types.h
        * pace/pace/config/utility.h

          Removed deprecated definitions and non-posix functions.

Wed Jun 21 16:44:24 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/Makefile:
          Changed to define the PACE_`platform' values
          Change include directories to -I.. to resolve problems.

        * tests/Makefile:
          Change include directories to -I.. to resolve problems.

        * pace/config/platform.h:
          Modified platform #defines to PACE_`platform' (e.g., PACE_POSIX)

        * pace/posix/math.{h,inl}:
          Fixed pace_pow arguments

        * pace/posix/mman.{h,inl}:
        * pace/posix/aio.h:
        * pace/posix/locale.h:
        * pace/posix/pthread.{h,inl}:
        * pace/posix/stdio.h:
          Fixed syntax errors and typos

Wed Jun 21 13:15:47 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/posix/stdio.inl (pace_setbuf):

          Altered return value and fixed typos.

Tue Jun 20 15:39:26 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/config/compiler.h:

          Removed errant '\\' at end of lines and changed to '\'.

Tue Jun 20 15:31:43 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/posix/mman.h:
        * pace/posix/socket.h:
        * pace/posix/stat.h:
        * pace/posix/termios.h:
        * pace/posix/times.h:
        * pace/posix/types.h:
        * pace/posix/utsname.h:
        * pace/posix/in.h:
        * pace/posix/inet.h:
        * pace/posix/aio.h:
        * pace/posix/assert.h:
        * pace/posix/defines.h:
        * pace/posix/dirent.h:
        * pace/posix/fnctl.h:
        * pace/posix/grp.h:
        * pace/posix/limits.h:
        * pace/posix/locale.h:
        * pace/posix/mqueue.h:
        * pace/posix/netdb.h:
        * pace/posix/pthread.h:
        * pace/posix/pwd.h:
        * pace/posix/sched.h:
        * pace/posix/semaphore.h:
        * pace/posix/setjmp.h:
        * pace/posix/signal.h:
        * pace/posix/stdio.h:
        * pace/posix/stdlib.h:
        * pace/posix/string.h:
        * pace/posix/strings.h:
        * pace/posix/thread.h:
        * pace/posix/time.h:
        * pace/posix/unistd.h:
        * pace/posix/utime.h:
        * pace/posix/wait.h:

          Edited for consistency with previous entry.

          Removed #include "pace/defines.h".

Tue Jun 20 15:14:44 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/sys/mman.h:
        * pace/sys/socket.h:
        * pace/sys/stat.h:
        * pace/sys/termios.h:
        * pace/sys/times.h:
        * pace/sys/types.h:
        * pace/sys/utsname.h:
        * pace/netinet/in.h:
        * pace/arpa/inet.h:
        * pace/aio.h:
        * pace/assert.h:
        * pace/defines.h:
        * pace/dirent.h:
        * pace/fnctl.h:
        * pace/grp.h:
        * pace/limits.h:
        * pace/locale.h:
        * pace/mqueue.h:
        * pace/netdb.h:
        * pace/pthread.h:
        * pace/pwd.h:
        * pace/sched.h:
        * pace/semaphore.h:
        * pace/setjmp.h:
        * pace/signal.h:
        * pace/stdio.h:
        * pace/stdlib.h:
        * pace/string.h:
        * pace/strings.h:
        * pace/thread.h:
        * pace/time.h:
        * pace/unistd.h:
        * pace/utime.h:
        * pace/wait.h:

          Inserted #include "pace/config/defines.h".

        * pace/config/defines.h:

          Removed from pace/ dir and placed in config dir.

Tue Jun 20 14:53:12 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/defines.h:

          This file needs to be included first! It was calling #including
          itself from the posix directory but was doing so off of macros
          that itself defined.

Mon Jun 19 05:03:53 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/posix/ctype.h
        * pace/posix/ctype.inl
        * pace/posix/math.h
        * pace/posix/math.inl

          Correct functions added and implemented. _POSIX_C_LANG_SUPPORT.

Mon Jun 19 04:34:34 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/sys/mman.h:
        * pace/sys/socket.h:
        * pace/sys/stat.h:
        * pace/sys/termios.h:
        * pace/sys/times.h:
        * pace/sys/types.h:
        * pace/sys/utsname.h:
        * pace/netinet/in.h:
        * pace/arpa/inet.h:
        * pace/aio.h:
        * pace/assert.h:
        * pace/defines.h:
        * pace/dirent.h:
        * pace/fnctl.h:
        * pace/grp.h:
        * pace/limits.h:
        * pace/locale.h:
        * pace/mqueue.h:
        * pace/netdb.h:
        * pace/pthread.h:
        * pace/pwd.h:
        * pace/sched.h:
        * pace/semaphore.h:
        * pace/setjmp.h:
        * pace/signal.h:
        * pace/stdio.h:
        * pace/stdlib.h:
        * pace/string.h:
        * pace/strings.h:
        * pace/thread.h:
        * pace/time.h:
        * pace/unistd.h:
        * pace/utime.h:
        * pace/wait.h:

          Altered these files #ifdef macro to PACE_FILE_H_INDIRECT so that the
          implementation pace/posix/*.h files didn't conflict with the preprocessor
          name space.

          Fully qualified all the includes in these files from #include "posix/file.h"
          to #include "pace/posix/file.h"

Mon Jun 19 03:57:37 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/ctype.h:
        * pace/posix/ctype.h:
        * pace/posix/ctype.inl:
        * pace/posix/ctype.c:

        * pace/math.h:
        * pace/posix/math.h:
        * pace/posix/math.inl:
        * pace/posix/math.c:

          Added to repository.

Sat Jun 17 17:24:47 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/sys/mman.h:
        * pace/sys/socket.h:
        * pace/sys/stat.h:
        * pace/sys/termios.h:
        * pace/sys/times.h:
        * pace/sys/types.h:
        * pace/sys/utsname.h:
        * pace/netinet/in.h:
        * pace/arpa/inet.h:

          Altered these "root" files to include the correct
          subdirectory/file.

Sat Jun 17 16:46:39 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/aio.h:
        * pace/assert.h:
        * pace/defines.h:
        * pace/dirent.h:
        * pace/fnctl.h:
        * pace/grp.h:
        * pace/limits.h:
        * pace/locale.h:
        * pace/mqueue.h:
        * pace/netdb.h:
        * pace/pthread.h:
        * pace/pwd.h:
        * pace/sched.h:
        * pace/semaphore.h:
        * pace/setjmp.h:
        * pace/signal.h:
        * pace/stdio.h:
        * pace/stdlib.h:
        * pace/string.h:
        * pace/strings.h:
        * pace/thread.h:
        * pace/time.h:
        * pace/unistd.h:
        * pace/utime.h:
        * pace/wait.h:

          Altered these "root" files to include the correct
          subdirectory/file.

Fri Jun 16 17:47:59 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/pace/config/features.h

          Added to the repository to isolate user defined features.
          (ie: PACE_HAS_INLINE)

        * pace/pace/config/compiler.h

          Added *hack* to cover PACE_INLINE to static, inline
          or (blank) expansion depending on the compiler.

        * pace/pace/config/platform.h
        * pace/pace/config/config.h
        * pace/pace/config/utility.h

          Cleaned up source.

        * pace/pace/common/README
        * pace/pace/common

          Removed from the repository. Not used for anything.

        * pace/pace/*.h

          Started adding code to include the correct directory
          here, but there seems to be a better way... :-) We will
          wait and see. Do away with these .h files and simply
          go to the correct directory via the makefile.

Fri Jun 16 16:15:25 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/Makefile:
          Added POSIX Units of Functionality targets for libraries.

        * pace/{assert,locale}.h:
        * pace/posix/{assert,locale}.{h,inl,c}:
          Added new POSIX APIs for assert and setlocale.

        * pace/posix/stdio.{h,inl}:
          Added needed POSIX APIs.

        * pace/config/{compile,temp}.h:
          Redefined PACE_UNUSED_ARG and moved from temp.h to compile.h.

        * pace/posix/aio.inl:
          Made some formatting changes.

Fri Jun 16 16:05:52 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * tests/{Makefile,Stdio_Test,Posix_SP_Test.c}:
          Updated the tests to more informational and adding uname -s
          information for some different platforms.

Fri Jun 16 14:11:44 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/posix/*.h

          Added all .h files to posix directory. The implementation
          specific .h files are simply lumped together into one large
          directory while the original interface files are still
          found in the similarly names sunos directory.

          SunOS dirs (sys, netinet, arpa) ==> PACE implementation dir
          - - - -                             - - - -
          (pace/pace/sys/types.h          ==> pace/pace/posix/types.h)
          (pace/pace/unistd.h             ==> pace/pace/posix/unistd.h)

Thu Jun 15 13:49:14 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/config/defaults.h

          Removed superfluous defaults originally copied
          from ACE_OS.

Mon Jun 12 17:23:59 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/config/constants.h:

          Added POSIX minimum values in PACE format.

        * pace/config/platform.h (PACE_LINUX):

          Removed ACE code that shouldn't be included in PACE files.
          Deprecated macro that did not follow our current pattern.
          Added PACE_LINUX macro.

Mon Jun 12 15:41:51 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/config/compiler.h:

          Deprecated PACE_HAS_CPLUSPLUS.
          Current PACE_CPLUSPLUS

          We will save the 'HAS' for user defined feature macros.
          Anytime we are renaming a current macro, we will just
          prepend PACE_'xxx'. See the next ChangeLog entry. The
          same motivation applies. Once I change the source code
          to reflect this idea, I will remove the deprecated
          macro names.

          Moved error stuff from 'codes.h' to compiler.

        * pace/config/codes.h"

          Removed from repository.

        * pace/defines.h:

          Removed #include "codes.h" from repository.

Fri Jun  9 14:05:25 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/config/compiler.h:
        * pace/config/config.h:

          Moved PACE_HAS_INLINE from compiler.h to config.h.

          Deprecated macros. Left in but I will removed the
          deprecated macros once I change the code to use the
          current macros.

Fri Jun  9 13:02:26 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/*.h pace/posix/*.inl,c

          See config/types.h from previous ChangeLog. All these
          types are altered in the source code. (ie: pthread_t
          became pace_pthread_t).

          perl -pi -e `s/pid_t/pace_pid_t/` *.h posix/*.inl posix/*.c

Fri Jun  9 12:20:23 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/config/types.h:

          These are posix types in pace wrappers.
          They are macro definitions. The actual types are not
          available until the appropriate file is included.
          Thus, I didn't put them into pace/sys/types.h.

        * pace/pace/defines.h

          Added pace/config/types.h.

Thu Jun  8 15:10:24 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/tests/{Makefile,Posix_SP_Test.c}:
          Added new test for POSIX_SINGLE_PROCESS unit of functionality
          and updated Makefile for changes to the PACE library directory
          structure.

Thu Jun  8 15:10:24 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/pace/*.h:
        * pace/pace/arpa/*.h:
        * pace/pace/netinet/*.h:
        * pace/pace/sys/*.h:
          Modifying .h files to remove any path in front of .inl files.

        * pace/pace/posix/*.c:
          Modifying .c files to remove any path in front of .inl files.

        * pace/pace/posix/time.inl
          Changed PACE_SETERNNO to PACE_SET_ERRNO

Thu Jun  8 15:03:42 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/pace/Makefile:
          Added support for PACE_SYSNAME to determine appropriate platform
          subdirectory for VPATH and INCLDIRS.

Thu Jun  8 14:44:39 2000  Luther J Baker  <luther@cs.wustl.edu>

        * ../pace/linux/README
        * ../pace/linux
        * ../pace/sunos/README
        * ../pace/sunos
        * ../pace/emulation

          Removed from reposistory.

        * ../pace/linux/TODO

          Moved to ../pace/posix/TODO

        * ../pace/pace.dsw

          Moved to ../pace/win32/pace.dsw.
          Hi Darrell. This takes all traces of win32 stuff out of
          the main dir and although its slightly different than
          ace or tao, we are using our directories a little
          differently here. Nanbor thought that is might be ok so
          I will try it here until it breaks? or someone has good
          reason to move it back.

Thu Jun  8 12:09:56 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * pace/pace/sunos/*.{c,inl}:
          Removed files and put them in the posix subdirectory.
        * pace/pace/linux/*.{c,inl}:
          Removed files and put them in the posix subdirectory.
        * pace/pace/posix/*.{c,inl}:
          Added files from the linux/sunos subdirectories. (The files
          were identical from both directories aside from the $Id$ macro,
          i.e., the person who checked them in.)

Wed Jun  7 12:27:13 2000  Joe Hoffert  <joeh@cs.wustl.edu>

        * Makefile:
          Added Makefile for upper level pace directory.
        * pace/Makefile:
          Changed Makefile to fit in with the general makefile scheme in
          ACE and TAO.
        * config/compiler.h:
          Defined PACE_HAS_INLINE even for C files so that the functions
          will be directly added with the .h file.
        * tests/{Makefile,Stdio_Test.c,Posix_SP_Test.c}:
          Adding Makefile and tests to the tests directory.

Mon Jun  5 17:43:07 2000  Luther J Baker  <luther@cs.wustl.edu>

        * docs/todo.txt:

          Updated. You may go here to find current
          responsibilities.

Mon Jun  5 17:22:23 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/paces.dsp
        * pace/pacesd.dsp

          Removed from the repository.
          These files are generated (ie: paces.lib),
          not project files.

Mon Jun  5 17:19:30 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/THANKS:

          Added John Heitmann, Andrew Gilpin and Darrell Brunsch.
          Note: names and email addresses are nicely accesible
          from this alphabetical file.

Mon Jun  5 17:04:36 2000  Andrew G. Gilpin  <agg1@cs.wustl.edu>

        * [inl,c]

          Commited files to the repository in pace/linux

        * aio, dirent, fcntl, grp, in, inet, mman, mqueue,
          netdb, pthread, pwd, sched, semaphore, setjmp,
          signal, socket, stat, stdio, stdlib, string,
          strings, termios, time, times, unistd, utime,
          utsname, wait

Mon Jun  5 16:47:32 2000  Luther J Baker  <luther@cs.wustl.edu>

        * [inl,c]

          Moved files from root directory to pace/sunos.

        * aio, dirent, fcntl, grp, in, inet, mman, mqueue,
          netdb, pthread, pwd, sched, semaphore, setjmp,
          signal, socket, stat, stdio, stdlib, string,
          strings, termios, time, times, unistd, utime,
          utsname, wait

Mon Jun  5 15:23:53 2000  Luther J Baker  <luther@cs.wustl.edu>

        * /pace/linux
        * /pace/linux/README

          Added to repository.

        * /pace/emulation
        * /pace/emulation/README

          Removed from repository.

Fri Jun 02 16:55:10 2000    <luther@cs.wustl.edu>

        * ACE_wrappers/pace/pace/paces.dsp
        * ACE_wrappers/pace/pace/pacesd.dsp

          Added to repository. Naming consistency with other
          ACE libraries. Also removed pre-compiled header
          option as well as separate directories for debug
          and release versions of software.

        * ACE_wrappers/pace/pace/pace_lib.dsp

          Removed from repository. Naming consistency.

Thu Jun  1 17:41:04 2000  Luther J Baker  <luther@cs.wustl.edu>

        * ACE_wrappers/pace/pace/emulation
        * ACE_wrappers/pace/pace/common
        * ACE_wrappers/pace/pace/emulation/README
        * ACE_wrappers/pace/pace/common/README

          Added to repository.


Thu Jun  1 17:18:17 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/config/config_sunos5.7.h:
          Removed from repository.

        * ACE_wrappers/pace/pace/posix/README
        * ACE_wrappers/pace/pace/win32/README
        * ACE_wrappers/pace/pace/vxworks/README

          Added to repository to keep the directories visible.


Thu Jun 01 16:50:48 2000    <luther@cs.wustl.edu>

        * ACE_wrappers/pace/pace/pace.dsw
        * ACE_wrappers/pace/pace/pace_lib.dsp

          Added to the repository.

Tue May 30 16:54:06 2000  Luther J Baker  <luther@cs.wustl.edu>

        * THANKS:
          Added key people to this file.

Tue May 30 14:13:00 2000  Luther J Baker  <luther@cs.wustl.edu>

        * ACE_wrappers/pace/pace/posix
        * ACE_wrappers/pace/pace/win32
        * ACE_wrappers/pace/pace/vxworks
        * ACE_wrappers/pace/THANKS

          Added to the repository to facilitate cross-platform work.

Wed May 24 18:56:16 2000  Darrell Brunsch <brunsch@uci.edu>

        * docs/ACE_Integration.txt: (added)

          For the PACE crew, a file used to document our progress in
          splitting of ACE_OS and the PACE integration.

Wed May 24 14:40:41 2000  Luther J Baker  <luther@cs.wustl.edu>

        * README/VERSION:
          Added to repository.

Tue May 23 18:22:48 2000  Luther J Baker  <luther@cs.wustl.edu>

        * pace/pace/Makefile:
          Added to repository.

        * 'touch' to force dirs to show up with cvs co -P
          pace/docs/README
          pace/examples/README
          pace/pace/README
          pace/pace++/README
          pace/tests/README

Tue May 23 17:59:06 2000  Luther J Baker  <luther@cs.wustl.edu>

        * docs/todo.txt:
          Currently, all .o files appear in the
          ACE_wrappers/pace/pace directory (e.g.: nested
          files such as pace/pace/sys/socket.c generate
          pace/pace/socket.o. See pace/docs/todo.txt.

        * ACE_wrappers/pace/pace:
          Source files added.