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
|
Fri Sep 24 23:22:20 BST 1999 sll
================================
- Final clean up of the clean and veryclean rules so that it works
without omake.
external_merge/mk/afterdir.mk
external_merge/mk/beforedir.mk
src/mk/afterdir.mk
src/mk/beforedir.mk
src/lib/omniORB2/dir.mk
src/lib/omniORB2/orbcore/dir.mk
src/lib/omniORB2/dynamic/dir.mk
src/lib/omniORB2/lifecycle/dir.mk
Fri Sep 24 15:44:15 BST 1999 sll
================================
- Rearranged the order of the clean and veryclean rules in the dir.mk files
so that make veryclean can complete.
src/lib/omniORB2/dir.mk
src/lib/omniORB2/orbcore/dir.mk
src/lib/omniORB2/dynamic/dir.mk
src/lib/omniORB2/lifecycle/dir.mk
Fri Sep 24 12:30:49 BST 1999 sll
================================
- Removed else if nesting in stub dispatch function. This makes life
easier for MS VC++ when compiling an interface with a pathologically large
number of members.
src/tool/omniidl2/omniORB2_be/o2be_interface.cc
Thu Sep 23 20:52:03 BST 1999 sll
===============================
- fixed bad signature for omni_thread::stacksize(unsigned long)
include/omnithread.h
Thu Sep 23 20:04:22 BST 1999 sll
===============================
- Added static functions stacksize() in the omnithread library to control
the stack size when spawning a new thread.
include/omnithread.h
src/lib/omnithread/posix.cc
src/lib/omnithread/nt.cc
src/lib/omnithread/solaris.cc
src/lib/omnithread/mach.cc
Thu Sep 23 17:43:53 BST 1999 djr
================================
- Fixed scoping bug in omniidl2. New test case in test suite.
src/tool/omniidl2/omniORB2_be/o2be_operation.cc
Thu Sep 23 15:33:00 BST 1999 sll
================================
- Fixed a race condition which causes simple programs that exit quickly to
delay for a maximum of one scan period.
src/lib/omniORB2/orbcore/scavanger.cc
Thu Sep 23 12:09:25 BST 1999 djr
================================
- Corrected signature of in() for objref_var types.
- Added checks for assignment from self for var types.
This is disabled for the moment, until we are sure that
it works on all compilers.
include/omniORB2/templatedecls.h
Wed Sep 22 20:56:01 BST 1999 sll
================================
- typo.
src/lib/omniORB2/orbcore/tcpSocketMTfactory.cc
Wed Sep 22 19:50:20 BST 1999 sll
================================
- Documentation update
src/lib/omniORB2/orbcore/corbaOrb.cc
doc/tex/omniORB2.tex
external_merge/README.FIRST
external_merge/README.Linux
external_merge/README.SunC++5
external_merge/README.egcs
external_merge/README.unix
external_merge/ReleaseNote_omniORB_270 DELETED
external_merge/ReleaseNote_omniORB_271 DEKETED
external_merge/ReleaseNote_omniORB_280
external_merge/THIS_IS_2_8_0_PRERELEASE_2 DELETED
external_merge/THIS_IS_2_8_0_RELEASE
external_merge/doc/omniORB2.dvi
external_merge/doc/omniORB2.pdf
external_merge/doc/omniORB2.ps
external_merge/doc/omniORB2.tex
external_merge/doc/omniORB2/.ID_MAP.pag
external_merge/doc/omniORB2/.IMG_PARAMS.pag
external_merge/doc/omniORB2/.ORIG_MAP.pag
external_merge/doc/omniORB2/footnode.html
external_merge/doc/omniORB2/images.log
external_merge/doc/omniORB2/images.pl
external_merge/doc/omniORB2/images.tex
external_merge/doc/omniORB2/img12.gif DELETED
external_merge/doc/omniORB2/img8.gif DELETED
external_merge/doc/omniORB2/img9.gif
external_merge/doc/omniORB2/node1.html
external_merge/doc/omniORB2/node10.html
external_merge/doc/omniORB2/node11.html
external_merge/doc/omniORB2/node12.html
external_merge/doc/omniORB2/node13.html
external_merge/doc/omniORB2/node14.html
external_merge/doc/omniORB2/node15.html
external_merge/doc/omniORB2/node2.html
external_merge/doc/omniORB2/node3.html
external_merge/doc/omniORB2/node4.html
external_merge/doc/omniORB2/node5.html
external_merge/doc/omniORB2/node6.html
external_merge/doc/omniORB2/node7.html
external_merge/doc/omniORB2/node8.html
external_merge/doc/omniORB2/node9.html
external_merge/doc/omniORB2/omniORB2.html
Wed Sep 22 17:27:15 BST 1999 djr
================================
- Removed MT locking from DynAny.
src/lib/omniORB2/dynamic/dynAny.h
src/lib/omniORB2/dynamic/dynAny.cc
Wed Sep 22 17:09:13 BST 1999 sll
================================
- Documentation update
external_merge/ReleaseNote_omniORB_280
external_merge/THIS_IS_2_8_0_PRERELEASE_2 DELETED
src/lib/omniORB2/corbaOrb.cc
Wed Sep 22 17:06:56 BST 1999 sll
================================
- updated for openVMS
src/appl/omniNames/log.cc
src/appl/utils/catior/catior.cc
src/appl/utils/genior/genior.cc
src/appl/utils/convertior/convertior.cc
external_merge/etc/openvms.zip
Wed Sep 22 15:16:55 BST 1999 sll
================================
- updated for Solaris and IRIX 6.x
- now built shared library under Solaris with gcc
src/lib/omniORB2/dynamic/sharedlib/dir.mk
src/lib/omniORB2/lifecycle/sharedlib/dir.mk
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/sharedlib/dir.mk
src/lib/omniORB2/orbcore/sharedlib/dir.mk
src/lib/omnithread/sharedlib/dir.mk
external_merge/config/config.mk
external_merge/mk/platforms/mips_irix_6.3_n32.mk
external_merge/mk/platforms/mips_irix_6.4_64.mk
external_merge/mk/platforms/mips_irix_6.4_n32.mk
external_merge/src/lib/omniORB2/orbcore/gatekeepers/alone/gatekeeper.cc
Wed Sep 22 14:40:39 BST 1999 sll
================================
- updated for AIX 4.2/3
external_merge/mk/platforms/powerpc_aix_4.2.mk
external_merge/mk/platforms/powerpc_aix_4.3.mk NEW
include/omniORB2/CORBA_sysdep.h
src/lib/omniORB2/dynamic/sharedlib/dir.mk
src/lib/omniORB2/lifecycle/sharedlib/dir.mk
src/lib/omniORB2/orbcore/sharedlib/dir.mk
src/lib/omnithread/sharedlib/dir.mk
Wed Sep 22 13:06:18 BST 1999 sll
================================
- merged port to SCO Unixware 7
include/omnithread.h
src/lib/omniORB2/orbcore/tcpSocketMTfactory.cc
src/lib/omnithread/posix.cc
src/tool/omniidl2/driver/drv_fork.cc
src/tool/omniidl2/driver/drv_main.cc
src/tool/omniidl2/driver/drv_preproc.cc
src/tool/omniidl2/fe/idl.ll
src/tool/omniidl2/fe/lex.yy.cc
src/tool/omniidl2/include/idl.hh
external_merge/config/config.mk
external_merge/mk/afterdir.mk
external_merge/mk/platforms/x86_uw7.mk NEW
external_merge/src/lib/omniORB2/orbcore/gatekeepers/alone/gatekeeper.cc
Tue Sep 21 21:27:31 BST 1999 sll
================================
- Simplified the scavenger code and the mechanism in which connections
are shutdown. Now only one scavenger thread scans both incoming
and outgoing connections. A separate thread do the actual shutdown.
- Trace messages in various modules have been updated to use the logger class.
- omniORB::scanGranularity() now takes only one argument as there is
only one scan period parameter instead of 2.
- -ORBscanGranularity replaces -ORBscanOutgoingPeriod and
-ORBscanIncomingPeriod.
include/omniORB2/omniORB.h
include/omniORB2/rope.h
src/lib/omniORB2/bootstrap_i.h
src/lib/omniORB2/orbcore/bootstrap_i.cc
src/lib/omniORB2/orbcore/corbaBoa.cc
src/lib/omniORB2/orbcore/corbaOrb.cc
src/lib/omniORB2/orbcore/relStream.h
src/lib/omniORB2/orbcore/ropeFactory.cc
src/lib/omniORB2/orbcore/scavenger.cc
src/lib/omniORB2/orbcore/scavenger.h
src/lib/omniORB2/orbcore/strand.cc
src/lib/omniORB2/orbcore/tcpSocket.cc
src/lib/omniORB2/orbcore/tcpSocket.h
src/lib/omniORB2/orbcore/tcpSocketMTfactory.cc
Tue Sep 21 18:02:39 BST 1999 sll
================================
- removed unnecessary file
src/lib/omniORB2/orbcore/unshared.cc
Mon Sep 20 16:31:27 BST 1999 sll
================================
- make the source compile with SUN C++ 5.0 without the -g flag
- (omniidl2 now works but all examples core dump when an exception is raised
in the runtime)
src/lib/omniORB2/dynamic/dynException.cc
src/tool/omniidl2/include/ast_decl.hh
src/tool/omniidl2/include/utl_scope.hh
Mon Sep 20 11:32:34 BST 1999 sll
================================
- MS VC++ 5.0 does not pick up the const char* conversion operator of a
StringBuf automagically when passed to an iostream. Have to do an explicit
casting.
src/tool/omniidl2/omniORB2_be/o2be_operation.cc
Wed Sep 15 19:04:14 BST 1999 djr
================================
- Fixed bug in marshalling of Contexts, in the case that a specified
context-value is not present in the Context.
src/lib/omniORB2/dynamic/context.cc
Wed Sep 15 11:31:11 BST 1999 djr
================================
- omniidl2 bug fix. o2be_operation::produce_invoke() did not pass the
context argument if the operation has no (normal) arguments.
src/tool/omniidl2/omniORB2_be/o2be_operation.cc
Tue Sep 14 18:43:38 BST 1999 sll
================================
- omniidl2 bug fix
module A {
typedef string Atype;
interface B {
void op();
};
};
module C {
typedef char Atype;
interface D : A::B {
void op2(in Atype x);
};
};
The stub code for C::D::op2 refers to A::Atype instead of C::Atype.
This is a bug.
src/tool/omniidl2/util/utl_scope.cc
Tue Sep 14 17:57:42 BST 1999 djr
================================
- Bug in omniidl2. Exception constructor taking member arguments did
not duplicate an object reference argument.
src/tool/omniidl2/omniORB2_be/o2be_exception.cc
Wed Sep 8 12:42:25 BST 1999 sll
================================
- ensure that NetBufferedStream cleanup properly when the underlying strand
has been closed.
src/lib/omniORB2/orbcore/nbufferedStream.cc
Wed Sep 1 15:56:42 BST 1999 sll
================================
- workaround for Cygnus compiler problem, minor update to cope with ETS kernel
src/tool/omniidl2/ast/ast_string.cc
src/lib/omniORB2/orbcore/initFile.cc
Wed Sep 1 13:58:24 BST 1999 djr
================================
- Added atomic logging class omniORB::logger, and methods
logf() and logs().
include/omniORB2/omniORB.h
src/lib/omniORB2/logIOstream.cc
src/lib/omniORB2/corbaOrb.cc
Tue Aug 31 20:19:50 BST 1999 sll
================================
- Scavenger class inheritance revert to single inheritance because the
bug that causes occasional thread exit has been identified.
src/lib/omniORB2/orbcore/scavenger.cc
Mon Aug 30 19:46:21 BST 1999 sll
================================
- Remove default ENABLE_CLIENT_IR_SUPPORT define in CORBA_sysdep.h
Application code must define this macro explicitly if it wants to
act as a client of an interface Repository.
include/omniORB2/CORBA_sysdep.h
include/omniORB2/CORBA.h
src/lib/omniORB2/dynamic/irstub.cc
src/lib/omniORB2/dynamic/irdynstub.cc
src/lib/omniORB2/dynamic/dynamicImplementation.cc
src/lib/omniORB2/dynamic/ir.cc
src/lib/omniORB2/dynamic/nvList.cc
src/lib/omniORB2/dynamic/serverRequest.cc
src/lib/omniORB2/dynamic/corbaidlstub.cc
src/lib/omniORB2/dynamic/corbaidldynstub.cc
src/lib/omniORB2/orbcore/corbaBoa.cc
src/lib/omniORB2/orbcore/policy.cc
Mon Aug 30 19:16:15 BST 1999 sll
================================
- Removed any reference to syslog in tcpwrapper gatekeeper.
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/diag.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/fix_options.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/options.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/percent_x.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/refuse.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/rfc931.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/shell_cmd.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/socket.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/tli.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/update.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/workarounds.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/hosts_access.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/fakelog2.c
Mon Aug 30 17:41:36 BST 1999 sll
================================
- Scavenger threads now scan for idle connections and stuck remote calls.
- New omniORB APIs to control their behavior:
omniORB::scanGranularity
omniORB::callTimeOutPeriod
omniORB::idleConnectionScanPeriod
New -ORB options to control from the command line:
-ORBinConScanPeriod <n seconds>
-ORBoutConScanPeriod <n seconds>
-ORBclientCallTimeOutPeriod <n seconds>
-ORBserverCallTimeOutPeriod <n seconds>
-ORBscanOutgoingPeriod <n seconds>
-ORBscanIncomingPeriod <n seconds>
New -ORBhelp and -BOAhelp command line options to list all the
options available.
src/lib/omniORB2/orbcore/scavenger.h
src/lib/omniORB2/orbcore/scavenger.cc
src/lib/omniORB2/orbcore/giopClient.cc
src/lib/omniORB2/orbcore/giopServer.cc
src/lib/omniORB2/orbcore/strand.cc
src/lib/omniORB2/orbcore/tcpSocketMTfactory.cc
src/lib/omniORB2/orbcore/corbaOrb.cc
src/lib/omniORB2/orbcore/corbaBoa.cc
include/omniORB2/rope.h
include/omniORB2/omniORB.h
Tue Aug 24 13:33:46 BST 1999 djr
================================
- Modified CORBA::PR_structMember, TypeCode_struct and
TypeCode_except to make proper use of 'const char*',
to eliminate warnings/errors on strict compilers.
include/omniORB2/CORBA.h
src/lib/omniORB2/dynamic/typecode.h
src/lib/omniORB2/dynamic/typecode.cc
Fri Aug 20 12:41:42 BST 1999 djr
================================
- Fixed bug in omniidl2 generated MACRO (too many )'s ).
src/tool/omniidl2/omniORB2_be/o2be_union.cc
- Removed debug output (left in by mistake!).
src/tool/omniidl2/omniORB2_be/o2be_operation.cc
- Yet another TypeCode alias-expand bug.
src/lib/omniORB2/dynamic/typecode.cc
Tue Aug 17 20:16:38 BST 1999 sll
================================
- Fix to bug introduced in python binding change
src/lib/omniORB2/orbcore/giopServer.cc
Mon Aug 16 20:18:08 BST 1999 sll
================================
- Replace the use of static variables dtor for cleanup. Replace this with
explicit calls to per-compilation unit initialisation and cleanup.
- new member function CORBA::ORB::NP_destory(). This member is called by
the application to cleanup the ORB before exit.
include/omniORB2/CORBA.h
include/omniORB2/omniInternal.h
src/lib/omniORB2/orbcore/corbaOrb.cc
src/lib/omniORB2/orbcore/bootstrap_i.cc
src/lib/omniORB2/orbcore/corbaBoa.cc
src/lib/omniORB2/orbcore/initFile.cc
src/lib/omniORB2/orbcore/object.cc
src/lib/omniORB2/orbcore/objectRef.cc
src/lib/omniORB2/orbcore/ropeFactory.cc
src/lib/omniORB2/orbcore/scavenger.cc
src/lib/omniORB2/orbcore/ropeFactory.h
src/examples/echo/eg1.cc
src/examples/echo/eg2_clt.cc
src/examples/echo/eg2_impl.cc
src/examples/echo/eg3_clt.cc
src/examples/echo/eg3_impl.cc
src/examples/echo/eg3_tieimpl.cc
src/examples/anyExample/anyExample_clt.cc
src/examples/anyExample/anyExample_impl.cc
src/examples/dii/echo_diiclt.cc
src/examples/dsi/echo_dsiimpl.cc
src/examples/lifecycle/lcserver.cc
src/examples/lifecycle/lcclient.cc
src/examples/lifecycle/lcremove.cc
src/appl/utils/nameclt/nameclt.cc
Sat Aug 14 17:40:58 BST 1999 sll
================================
- Merge updates for non-supported platforms: HPUX, Irix, OpenVMS, AIX
All are just compiler flag or workarounds for specific compilers.
idl/ir.idl
include/omniORB2/CORBA.h
include/omniORB2/CORBA_basetypes.h
include/omniORB2/CORBA_sysdep.h
include/omniORB2/bufferedStream.h
include/omniORB2/seqtemplates.h
include/omniORB2/templatedecls.h
src/lib/omniORB2/dynamic/sharedlib/dir.mk
src/lib/omniORB2/lifecycle/sharedlib/dir.mk
src/lib/omniORB2/orbcore/gatekeepers/dir.mk
src/lib/omniORB2/orbcore/sharedlib/dir.mk
src/lib/omnithread/sharedlib/dir.mk
src/tool/omniidl2/omniORB2_be/o2be_cfe_interface.cc
src/tool/omniidl2/omniORB2_be/o2be_union.cc
Sat Aug 14 17:34:31 BST 1999 sll
================================
- Merged changes necessary to support the python binding.
(omni::locateObject no longer throw an exception when the object is not
found. It returns a nil pointer instead.)
include/omniORB2/omniInternal.h
src/lib/omniORB2/orbcore/giopServer.cc
src/lib/omniORB2/orbcore/ropeFactory.cc
src/lib/omniORB2/orbcore/unshared.cc
src/lib/omniORB2/orbcore/objectRef.cc
Mon Aug 9 12:20:28 BST 1999 sll
================================
- Updated the way out argument signature is generated. The old code
has been superseded by the new code to conform to CORBA 2.3
src/tool/omniild2/omniORB2_be/o2be.h
src/tool/omniild2/omniORB2_be/o2be_array.cc
src/tool/omniild2/omniORB2_be/o2be_operation.cc
src/tool/omniild2/omniORB2_be/o2be_sequence.cc
src/tool/omniild2/omniORB2_be/o2be_struct.cc
src/tool/omniild2/omniORB2_be/o2be_union.cc
Fri Aug 6 17:55:57 BST 1999 sll
================================
- Fixed a bug that affects extract the enum discriminator label from a
union typecode.
src/lib/omniORB2/dynamic/typecode.cc
Wed Aug 4 11:14:31 BST 1999 sll
================================
- Fixed a bug so that the correct stub code is generated for this IDL:
typedef Object Factory;
struct A {
Factory o;
};
Mon Aug 2 19:47:32 BST 1999 sll
================================
- Fixed bug in global scope lookup
- The bug causes the following IDL to fail
module A {
exception MyError {};
};
module B {
interface parent {};
interface child : parent {
void op() raises (A::MyError);
};
};
src/tool/omniidl2/util/utl_scope.cc
Mon Aug 2 14:41:39 BST 1999 sll
================================
- Linux glibc-2.0 platform (i586_linux_2.0_glibc) now uses gcc-2.95
- The compiler is installed in /usr/local/gcc-2.95/bin
- The compiler output is not compatible that of egcs-1.1.2
mk/platforms/i586_linux_2.0_glibc.mk
Mon Aug 2 11:56:13 BST 1999 sll
================================
- Correct non-standard C++ signature.
include/omniORB2/tcDescriptor.h
Fri Jul 23 12:24:32 BST 1999 djr
================================
- Efficient marshalling/unmarshalling of array of basic types.
include/omniORB2/bufferedStream.h
src/tool/omniidl2/o2be_operation.cc
Thu Jul 22 15:05:25 BST 1999 tjr
================================
- tidy up some java funnies.
mk/afterdir.mk - remove debugging output
idl/weatherInfo.idl - remove spurious file
Tue Jul 20 15:23:06 BST 1999 djr
================================
- Accept nil ref in DynAny::insert_reference().
- Allow DynAny with type tk_void.
src/lib/omniORB2/dynamic/dynAny.cc
- Allocate an exception list if CORBA::Request::exception() is
accessed and no exception list was given. Similarly for
context lists.
src/lib/omniORB2/dynamic/request.cc
Mon Jul 19 10:50:03 BST 1999 djr
================================
- Put back prefix Exception/UserException onto type id of exceptions.
src/tool/omniidl2/omniORB2_be/o2be_exception.cc
- Removed redundant tests for nil object references.
include/omniORB2/templatedecls.h
Fri Jul 9 22:01:23 BST 1999 sll
================================
- Now BOA::destroy() does not return until all worker threads have
exited.
src/lib/omniORB2/orbcore/tcpSocket.h
src/lib/omniORB2/orbcore/tcpSocketMTfactory.cc
Fri Jul 9 15:00:00 BST 1999 sll
================================
- Put back non-copy object reference insertion operator for Any
This operator was there in version5.5 tree and had been removed in
the version 5.6 tree (why?)
src/tool/omniidl2/omniORB2_be/o2be_interface.cc
Mon Jul 5 10:24:02 BST 1999 sll
================================
- typecode member_label for the default member should be an octet
src/lib/omniORB2/dynamic/typecode.cc
Fri Jul 2 20:10:55 BST 1999 sll
================================
- Changed Any extraction for typecode to non-copy.
The semantics can be changed back to pre-2.8.0's by setting
omniORB_27_CompatibleAnyExtraction.
- Removed inlined virtual destructors. Some compilers generate a copy of
each destructor in each compilation unit.
- typedef of a typedef of a struct, union, sequence, enum and primitive
type now translates to a C++ typedef of the typedef instead of the
real base type. This change only make a real difference with sequence type.
include/omniORB2/rope.h
src/lib/omniORB2/orbcore/ropeFactory.h
src/lib/omniORB2/orbcore/ropeFactory.cc
src/lib/omniORB2/dynamic/any.cc
src/tool/omniidl2/omniORB2_be/o2be_sequence.cc
src/tool/omniidl2/omniORB2_be/o2be_predefined_type.cc
src/tool/omniidl2/omniORB2_be/o2be_enum.cc
src/tool/omniidl2/omniORB2_be/o2be_union.cc
src/tool/omniidl2/omniORB2_be/o2be_struct.cc
src/tool/omniidl2/omniORB2_be/o2be_interface.cc
src/tool/omniidl2/omniORB2_be/o2be_root.cc
Thu Jul 1 11:17:57 BST 1999 djr
================================
- Fixed implementation of alias expansion for TypeCodes.
- Added omg.org to a number of repository IDs.
src/lib/omniORB2/dynamic/typecode.cc
src/lib/omniORB2/dynamic/typecode.h
src/lib/omniORB2/dynamic/dynException.cc
Mon Jun 28 18:35:45 BST 1999 sll
================================
- Fixed bug in marhalling Any when tcAliasExpand is set to 1.
- Added packet dump in tcpSocketMTfactory + openvms merge.
src/lib/omniORB2/dynamic/any.cc
src/lib/omniORB2/orbcore/tcpSocketMTfactory.cc
Mon Jun 28 14:29:56 BST 1999 dpg1
=================================
- Updated LifeCycle code for proxyCallWraper and Context support
include/omniLC.h
src/lib/omniORB2/lifecycle/omniLifeCycle.cc
src/lib/omniORB2/lifecycle/sharedlib/dir.mk
src/tool/omniidl2/omniORB2_be/o2be_attribute.cc
src/tool/omniidl2/omniORB2_be/o2be_operation.cc
Sat Jun 26 18:50:18 BST 1999 sll
================================
- Merged patches for unsupported platforms:
irix 6.{2-5}, openvms, freebsd, hpux 11.0
- Added rebase to avoid dll load address clash on win32
- fixed lifecycle build so that the dll on win32 correctly exports its symbols
include/omnithread.h
include/omniORB2/CORBA_sysdep.h
include/omniORB2/giopDriver.h
include/omniORB2/omniInternal.h
include/omniORB2/omniLC.h
include/omniORB2/omniORB.h
src/appl/omniNames/log.cc
src/appl/omniNames/omniNames.cc
src/appl/utils/catior/dir.mk
src/appl/utils/convertior/dir.mk
src/appl/utils/genior/dir.mk
src/examples/lifecycle/dir.mk
src/lib/dir.mk
src/lib/omniORB2/dynamic/context.cc
src/lib/omniORB2/dynamic/proxyCall.cc
src/lib/omniORB2/dynamic/sharedlib/dir.mk
src/lib/omniORB2/lifecycle/dir.mk
src/lib/omniORB2/lifecycle/sharedlib/dir.mk
src/lib/omniORB2/orbcore/corbaBoa.cc
src/lib/omniORB2/orbcore/corbaOrb.cc
src/lib/omniORB2/orbcore/dir.mk
src/lib/omniORB2/orbcore/giopServer.cc
src/lib/omniORB2/orbcore/libcWrapper.cc
src/lib/omniORB2/orbcore/objectKey.cc
src/lib/omniORB2/orbcore/proxyCall.cc
src/lib/omniORB2/orbcore/scavenger.cc
src/lib/omniORB2/orbcore/tcpSocketMTfactory.cc
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/percent_m.c
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/tcpd.h
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/sharedlib/dir.mk
src/lib/omniORB2/orbcore/sharedlib/dir.mk
src/lib/omnithread/sharedlib/dir.mk
src/tool/omkdepend/main.c
src/tool/omniidl2/driver/drv_fork.cc
src/tool/omniidl2/driver/drv_preproc.cc
src/tool/omniidl2/include/idl.hh
Fri Jun 25 16:18:33 BST 1999 sll
===============================
- more omni_thread update to avoid fatal exception when a blocking thread
is interrupted by a unix signal.
src/lib/omnithread/posix.cc
src/lib/omnithread/solaris.cc
Fri Jun 25 14:55:48 BST 1999 sll
================================
- Rename compatibility flag copyStringInAnyExtraction to
omniORB_27_CompatibleAnyExtraction.
- Changed Any extraction for object reference and to_string to non-copy.
Again the semantics can be changed back to pre-2.8.0's by setting
omniORB_27_CompatibleAnyExtraction.
- removed bogus operator Any::operator>>=(Object_ptr&)
include/omniORB2/CORBA.h
include/omniORB2/omniORB.h
src/lib/omniORB2/dynamic/any.cc
src/lib/omniORB2/dynamic/context.cc
src/tool/omniidl2/omniORB2_be/o2be_interface.cc
Wed Jun 23 10:55:25 BST 1999 sll
================================
- omni_thread::sleep() no longer throws fatal exception when it is interrupt
by a signal. Instead it blocks again with the time left to sleep.
This makes the semantics of the function the same on all platforms.
src/lib/omnithread/posix.cc
Tue Jun 22 15:51:23 BST 1999 sll
================================
- New code to do insertion and extraction of string and object reference
using the tcParser. Old code keeps a reference to String_member and
ObjRef_member within a tcDescriptor. This no longer works because sequence
type only returns these members as temporary.
- Fixed IDL compiler core dump when exception member contains a typedef of an
interface.
- put back pre-2.3 Any::operator>>=(Any&).
include/omniORB2/CORBA.h
include/omniORB2/tcDescriptor.h
src/lib/omniORB2/dynamic/any.cc
src/lib/omniORB2/dynamic/context.cc
src/lib/omniORB2/dynamic/dynException.cc
src/lib/omniORB2/dynamic/tcParser.cc
src/lib/omniORB2/dynamic/typecode.cc
src/lib/omniORB2/dynamic/unknownUserExn.cc
src/lib/omniORB2/orbcore/corbaObject.cc
src/tool/omniidl2/omniORB2_be/o2be_exception.cc
src/tool/omniidl2/omniORB2_be/o2be_interface.cc
src/tool/omniidl2/omniORB2_be/o2be_sequence.cc
src/tool/omniidl2/omniORB2_be/o2be_struct.cc
src/tool/omniidl2/omniORB2_be/o2be_union.cc
Fri Jun 18 23:33:13 BST 1999 sll
================================
- Update examples to use const char* for extraction of string from Any
src/examples/dsi/echo_dsiimpl.cc
src/examples/dii/echo_diiclt.cc
src/examples/anyExample/anyExample_impl.cc
Fri Jun 18 20:58:00 BST 1999 sll
================================
- Update mapping to conform to CORBA 2.3:
1. For interface A, class A contains typedef _ptr_type and _var_type.
2. For struct, union and sequence, each type contains typedef _var_type.
3. Added T_out& operator=(const T_out&) for T_out types.
4. Generate typedef for anonymous sequence in struct.
e.g. struct A { // IDL
sequence <long> s;
};
class A { // C++
typedef ... _s_seq;
_s_seq s;
};
5. Generate typedef for anonymous sequence in union.
e.g. union node switch(long) { // IDL
case 0: sequence<node> s;
default: long v;
};
class node { // C++
typedef ... _s_seq;
};
6. New members for sequence:
- get_buffer, replace, release
7. Any type
- new operator boolean operator>>=(const Any&, const T*&);
- new from_string(), to_string() ctors with const char* argument
- new void type(TypeCode_ptr) member.
8. Exception
- new member _downcast()
- new Any insertion and extraction operators
9. TypeCode
- new members equivalent()
get_compact_typecode()
- Any string extraction now return a string which is still owned by Any.
New omniORB::copyStringInAnyExtraction variable is defined.
If set to 1, revert to the old behaviour. That is the returned string is
copied.
- TypeCode equal() now returns true if the typecode is identical.
Internally, all typecode comparisons now use equivalent().
- Sequence of object reference and string re-implemented. Previous version
cannot support the new member functions.
- _LC_attr CPP macro in stubs is now replaced with _core_attr and _dyn_attr.
This allows stubs to be separated into two NT DLLs, one for *SK.cc and the
other for *DynSK.cc.
include/omniORB2/CORBA.h
include/omniORB2/seqtemplates.h
include/omniORB2/templatedefns.h
include/omniORB2/CORBA_basetypes.h
include/omniORB2/bufferedStream.h
include/omniORB2/CORBA_sysdep.h
include/omniORB2/IIOP.h
include/omniORB2/IOP.h
include/omniORB2/giopDriver.h
include/omniORB2/omniInternal.h
include/omniORB2/omniORB.h
include/omniORB2/corba_operators.h NEW
src/tool/omniidl2/omniORB2_be/o2be.h
src/tool/omniidl2/omniORB2_be/o2be_interface.cc
src/tool/omniidl2/omniORB2_be/o2be_sequence.cc
src/tool/omniidl2/omniORB2_be/o2be_struct.cc
src/tool/omniidl2/omniORB2_be/o2be_union.cc
src/tool/omniidl2/omniORB2_be/o2be_exception.cc
src/tool/omniidl2/omniORB2_be/o2be_constant.cc
src/tool/omniidl2/omniORB2_be/o2be_name.cc
src/tool/omniidl2/omniORB2_be/o2be_enum.cc
src/tool/omniidl2/omniORB2_be/o2be_operation.cc
src/tool/omniidl2/omniORB2_be/o2be_typedef.cc
src/tool/omniidl2/omniORB2_be/o2be_root.cc
src/tool/omniidl2/omniORB2_be/o2be_array.cc
omniORB2/orbcore/sharedlib/dir.mk
omniORB2/orbcore/corbaString.cc
omniORB2/orbcore/corbaObject.cc
omniORB2/orbcore/exception.cc
omniORB2/orbcore/exceptn.cc
omniORB2/orbcore/initFile.cc
omniORB2/orbcore/dir.mk
omniORB2/orbcore/gatekeepers/tcpwrapper/gatekeeper.cc
omniORB2/dynamic/tcParser.cc
omniORB2/dynamic/wrongTranExn.cc DELETE
omniORB2/dynamic/unknownUserExn.cc
omniORB2/dynamic/dynException.cc
omniORB2/dynamic/dir.mk
omniORB2/dynamic/dynamicImplementation.cc
omniORB2/dynamic/serverRequest.cc
omniORB2/dynamic/any.cc
omniORB2/dynamic/tcParser.h
omniORB2/dynamic/typecode.cc
omniORB2/dynamic/typecode.h
omniORB2/dynamic/anyP.h
omniORB2/dynamic/anyP.cc
omniORB2/dynamic/dynAny.cc
omniORB2/dynamic/sharedlib/dir.mk
omniORB2/dynamic/dynException.h NEW
omniORB2/orbcore/Namingstub.cc NEW
omniORB2/orbcore/bootstrapstub.cc NEW
omniORB2/dynamic/Namingdynstub.cc NEW
omniORB2/dynamic/bootstrapdynstub.cc NEW
Tue Jun 8 10:42:37 BST 1999 djr
================================
- Correction in the manual -- CORBA::ORB::create_* are non-static members.
Also recursive TypeCodes are supported.
doc/tex/omniORB2.tex
Thu Jun 3 18:06:58 BST 1999 sll
================================
- Update mapping to conform to CORBA 2.2
- Added a new -c flag to omniidl2. This flag causes the compiler to add
the '_' prefix to identifiers that clashes with C++ reserved words. This
was the old default. The default now is to use the '_cxx_' prefix.
include/omniORB2/templatedecls.h
include/omniORB2/templatedefns.h
include/omniORB2/CORBA.h
include/omniORB2/stringtypes.h
src/tool/omniidl2/omniORB2_be/o2be_sequence.cc
src/tool/omniidl2/omniORB2_be/o2be_interface.cc
src/tool/omniidl2/omniORB2_be/o2be_struct.cc
src/tool/omniidl2/omniORB2_be/o2be.h
src/tool/omniidl2/omniORB2_be/o2be_union.cc
src/tool/omniidl2/omniORB2_be/o2be_array.cc
src/tool/omniidl2/omniORB2_be/o2be_enum.cc
src/tool/omniidl2/omniORB2_be/o2be_name.cc
src/tool/omniidl2/omniORB2_be/o2be_cfe_interface.cc
src/tool/omniidl2/include/idl_defines.hh
Wed Jun 2 17:49:13 BST 1999 sll
================================
- Changed createObjRef(). In the case when the proxyObjectFactories for
the targetRepoId and the mostDerivedRepoId are not available, we now create
an AnonymousObject. Previously, we throw a Marshal exception. Any attempt
to narrow the returned object to the target interface identified by
targetRepoId would results in a nil object being returned.
This change is necessary to facilitate the implementation of the python
binding.
src/lib/omniORB2/orbcore/objectRef.cc
Wed Jun 2 17:05:10 BST 1999 sll
================================
- Enable IR client support for all platforms. Previously, IR client is
not available with compilers that do not support namespace.
A new -F flag is added to omniidl2, this causes the compiler to generate
stub frags suitable for inclusion into the main stub files.
include/omniORB2/CORBA.h
include/omniORB2/CORBA_sysdep.h
include/omniORB2/proxyFactory.h
src/lib/omniORB2/orbcore/objectRef.cc
src/lib/omniORB2/orbcore/gatekeepers/dummystub/dir.mk
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/dir.mk
src/lib/omniORB2/orbcore/gatekeepers/tcpwrapper/sharedlib/dir.mk
src/lib/omniORB2/dynamic/irstub.cc
src/lib/omniORB2/dynamic/irdynstub.cc
src/lib/omniORB2/dynamic/corbaidldynstub.cc
src/lib/omniORB2/dynamic/corbaidlstub.cc
src/lib/omniORB2/dir.mk
src/tool/omniidl2/omniORB2_be/o2be_cfe_interface.cc
src/tool/omniidl2/omniORB2_be/o2be.h
src/tool/omniidl2/omniORB2_be/o2be_root.cc
src/tool/omniidl2/omniORB2_be/o2be_module.cc
src/tool/omniidl2/omniORB2_be/o2be_interface.cc
src/tool/omniidl2/include/idl_defines.hh
idl/corbaidl.idl
Mon May 31 14:59:03 BST 1999 sll
================================
- Added support for SUN C++ v5.0 on Solaris 7.
NOTE: there are bugs in the compiler which mess up exception handling when
compiled with -O2. The compiler flag is set to '-O2 -g' by default.
This seems to work.
The last compiler patch applied is 107311-03. Re-test this when
another compiler patch is applied.
mk/platforms/sun4_sosV_5.7.mk
include/omniORB2/CORBA_sysdep.h
src/lib/omniORB2/orbcore/tcpSocketMTfactory.cc
src/appl/omniNames/log.h
src/appl/omniNames/NamingContext_i.h
src/appl/omniNames/omniNames.cc
src/appl/omniNames/NamingContext_i.cc
src/appl/omniNames/log.cc
Thu May 27 21:28:03 BST 1999 sll
================================
- after IR client support is enabled on win32, the orbcore DLL fails to build.
A feature or a bug in MSVC++ causes it to generate a bunch of references
to a list of functions even though none of these functions are actually
used in the DLL. A stub version of these functions have to be added. The
real function definitions are in the dynamic DLL. Notice that none
of the stubs are exported by this DLL so they would not clash with
the ones exported by the dynamic DLL.
src/lib/omniORB2/orbcore/sharedlib/dir.mk
src/lib/omniORB2/orbcore/sharedlib/msvcdllstub.cc NEW
Wed May 26 13:23:26 BST 1999 sll
================================
- enable IR client support by default when the compiler supports namespace
include/omniORB2/CORBA.h
include/omniORB2/CORBA_sysdep.h
Wed May 26 13:16:28 BST 1999 sll
================================
- Added -Y <cpp location> flag to omniidl2
src/tool/omniidl2/omniORB2_be/o2be_cfe_interface.cc
Wed May 26 12:36:42 BST 1999 sll
================================
- Replaced WrTimedLock with WrTestLock.
- Changed the operator() of Strand_iterator to increment the ref count
of the strand it returns.
- Added new member is_unused() to class Strand. This is used to check
if no Sync object is parking on the strand. This member is necessary
because given the change in the Strand_iterator, is_idle() is no
longer appropriate to test if no Sync object is using the strand.
- The net effect is to fix a rare race condition in the scavenger threads.
that could result in the ORB core dump because of invalid pointers are
being de-referenced.
include/omniORB2/rope.h
src/lib/omniORB2/orbcore/strand.cc
src/lib/omniORB2/orbcore/scavenger.cc
Tue May 25 13:53:29 BST 1999 sll
================================
- Changes necessary to bring the ORB to pass the VSORB testsuite.
The culmulated effect is to bring the ORB to CORBA 2.1 compliant.
- Support for context added.
- IDL compiler bug fixes:
- constant expressions
- enum definition in union switch type declarator
- nested struct array member is not defined
- typecode constants for anonymous bounded string in
operation arguments are not defined
- Each sequence type is now a distinct type, this is to avoid the problem
of picking up the wrong Any insertion and extraction operators
- Sequence of object now uses a separate template so that the value ctor
is supported properly.
- The langEquiv argument in TypeCode::equal is now default to 0 (previously
it is 1).
- DII interfaces now throw system exception by default instead of passing
back the value in the environment variable.
- DII poll_response now throws system exception if the operation results in
a system exception.
- Added check for invalid pseudo objects being passed as arguments to
static member functions. A magic number is attached to each pseudo object
instance, this member value is set to 0 when the object is deleted.
include/omniORB2/CORBA.h
include/omniORB2/templatedecls.h
include/omniORB2/templatedefns.h
include/omniORB2/seqtemplates.h
include/omniORB2/bufferedStream.h
include/omniORB2/stringtypes.h
src/lib/omniORB2/orbcore/initFile.cc
src/lib/omniORB2/orbcore/sharedlib/dir.mk
src/lib/omniORB2/orbcore/dir.mk
src/lib/omniORB2/orbcore/orbservice.cc NEW
src/lib/omniORB2/orbcore/policy.cc NEW
src/lib/omniORB2/orbcore/ior.cc
src/lib/omniORB2/orbcore/current.cc NEW
src/lib/omniORB2/orbcore/corbaObject.cc
src/lib/omniORB2/orbcore/domainManager.cc NEW
src/lib/omniORB2/orbcore/corbaBoa.cc
src/lib/omniORB2/orbcore/corbaOrb.cc
src/lib/omniORB2/orbcore/constants.cc
src/lib/omniORB2/orbcore/exceptn.cc
src/lib/omniORB2/orbcore/bootstrap_i.cc
src/lib/omniORB2/dynamic/corbaidldynstub.cc
src/lib/omniORB2/dynamic/corbaidlstub.cc
src/lib/omniORB2/dynamic/ir.cc
src/lib/omniORB2/dynamic/irdynstub.cc
src/lib/omniORB2/dynamic/irstub.cc
src/lib/omniORB2/dynamic/sharedlib/dir.mk
src/lib/omniORB2/dynamic/pseudo.h
src/lib/omniORB2/dynamic/environment.cc
src/lib/omniORB2/dynamic/context.cc
src/lib/omniORB2/dynamic/dir.mk
src/lib/omniORB2/dynamic/wrongTranExn.cc
src/lib/omniORB2/dynamic/request.cc
src/lib/omniORB2/dynamic/typecode.h
src/lib/omniORB2/dynamic/request.h
src/lib/omniORB2/dynamic/context.h
src/lib/omniORB2/dynamic/typecode.cc
src/lib/omniORB2/dynamic/contextList.cc
src/lib/omniORB2/dynamic/namedValue.cc
src/lib/omniORB2/dynamic/nvList.cc
src/lib/omniORB2/dynamic/exceptionList.cc
src/lib/omniORB2/dynamic/dynAny.cc
src/lib/omniORB2/dynamic/dynException.cc
src/lib/omniORB2/dynamic/any.cc
src/lib/omniORB2/bootstrap_i.h
src/tool/omniidl2/fe/idl.ll
src/tool/omniidl2/fe/idl.yy
src/tool/omniidl2/fe/lex.yy.cc
src/tool/omniidl2/fe/y.tab.h
src/tool/omniidl2/fe/y.tab.cc
src/tool/omniidl2/ast/ast_union.cc
src/tool/omniidl2/ast/ast_expression.cc
src/tool/omniidl2/ast/ast_generator.cc
src/tool/omniidl2/include/ast_generator.hh
src/tool/omniidl2/include/ast_union.hh
src/tool/omniidl2/include/utl_scope.hh
src/tool/omniidl2/util/utl_scope.cc
src/tool/omniidl2/omniORB2_be/dir.mk
src/tool/omniidl2/omniORB2_be/o2be_nested_typedef.cc
src/tool/omniidl2/omniORB2_be/o2be.h
src/tool/omniidl2/omniORB2_be/o2be_operation.cc
src/tool/omniidl2/omniORB2_be/o2be_call_desc.cc
src/tool/omniidl2/omniORB2_be/o2be_union.cc
src/tool/omniidl2/omniORB2_be/o2be_generator.cc
src/tool/omniidl2/omniORB2_be/o2be_name.cc
src/tool/omniidl2/omniORB2_be/o2be_struct.cc
src/tool/omniidl2/omniORB2_be/o2be_exception.cc
src/tool/omniidl2/omniORB2_be/o2be_interface.cc
src/tool/omniidl2/omniORB2_be/o2be_attribute.cc
src/tool/omniidl2/omniORB2_be/o2be_string.cc
src/tool/omniidl2/omniORB2_be/o2be_sequence.cc
src/tool/omniidl2/omniORB2_be/o2be_enum.cc
src/tool/omniidl2/omniORB2_be/o2be_name_mangle.cc
src/tool/omniidl2/omniORB2_be/o2be_buildDesc.cc
Sat May 22 18:36:21 BST 1999 sll
================================
- Added make rules to generate the database for viewing the source tree
through ciao
To regenerate the database, goto to the top level and type omake ciao.
The database would be created as <buildtree top>/omni_ciao.db.
To use the database, run ciao -f <buildtree top>/omni_ciao.db
src/tool/omniidl2/dir.mk
src/tool/dir.mk
src/lib/omniORB2/dir.mk
src/lib/dir.mk
src/appl/utils/dir.mk
src/appl/dir.mk
src/examples/dir.mk
src/dir.mk
- Added #ifdef __CIAO__ in these files so that CCia would not complain
about gnu/linux particulars.
src/lib/omniORB2/orbcore/tcpSocketMTfactory.cc
src/lib/omniORB2/orbcore/corbaOrb.cc
- Note: the ciao rule is written to ignore errors. If CCia cannot parse
a source file, no database info is available for that file.
At the moment, the files that CCia fails to parse are:
src/appl/omniNames/log.cc
src/examples/partcl/pttwish.cc
src/lib/omniParTcl/omniParTcl.cc
Thu May 20 16:24:42 BST 1999 sll
================================
- Fixed bugs to make the tree works again on win32 with MSVC++
src/tool/omniidl2/omniORB2_be/o2be_sequence.cc
include/omniORB2/templatedecls.h
- Separated proxyCall into without context and with context versions
Otherwise the orbcore library becomes dependent on the dynamic library
include/omniORB2/proxyCall.h
src/lib/omniORB2/orbcore/proxyCall.cc
src/lib/omniORB2/dynamic/proxyCall.cc NEW
src/lib/omniORB2/dynamic/dir.mk
src/lib/omniORB2/dynamic/sharedlib/dir.mk
Mon May 10 17:36:13 BST 1999 djr
================================
- Fixed bug in constructors for read-only streams.
src/lib/omniORB2/orbcore/mbufferedStream.cc
Fri Apr 30 18:20:12 BST 1999 tjr
================================
- add RMC's bootstrap agent code
src/lib/omniORBj/omniorb/orb/OmniInitialReferences.java -- NEW
src/lib/omniORBj/omniorb/orb/GIOPServerRequest.java
src/lib/omniORBj/omniorb/orb/IIOPProfileBody.java
src/lib/omniORBj/omniorb/orb/IOPTaggedProfile.java
src/lib/omniORBj/omniorb/orb/IOR.java
src/lib/omniORBj/omniorb/orb/ORBImpl.java
src/lib/omniORBj/omniorb/orb/ObjectAdapter.java
src/lib/omniORBj/omniorb/orb/ObjectKey.java
src/lib/omniORBj/dir.mk
Wed Apr 21 12:14:54 BST 1999 djr
================================
- Use dedicated classes for sequence of string. Template version
gave incorrect constructors.
include/omniORB2/stringtypes.h -- NEW
include/omniORB2/CORBA.h
src/lib/omniORB2/orbcore/corbaString.cc
src/tool/omniidl2/omniORB2_be/o2be.h
src/tool/omniidl2/omniORB2_be/dir.mk
src/tool/omniidl2/omniORB2_be/o2be_stringbuf.h -- NEW
src/tool/omniidl2/omniORB2_be/o2be_stringbuf.cc -- NEW
src/tool/omniidl2/omniORB2_be/o2be_sequence.cc
src/tool/omniidl2/omniORB2_be/o2be_name_mangle.cc
- Added marshalling operators to CORBA::Context. Updated various
code to use these.
include/omniORB2/CORBA.h
src/lib/omniORB2/dynamic/context.h
src/lib/omniORB2/dynamic/context.cc
src/lib/omniORB2/dynamic/request.h
src/lib/omniORB2/dynamic/request.cc
src/lib/omniORB2/dynamic/pseudo.h
src/lib/omniORB2/dynamic/serverRequest.cc
- Proxy call wrapper now supports contexts.
include/omniORB2/proxyCall.h
src/lib/omniORB2/orbcore/proxyCall.cc
- Fixed bug in typecode alignment tables for arrays, and use of
the same in sequences.
src/lib/omniORB2/dynamic/typecode.cc
src/lib/omniORB2/dynamic/tcParser.cc
Tue Apr 20 17:30:43 BST 1999 dpg1
=================================
- Oops -- #pragma prefix moved back outside module.
#pragma prefix "" addded at end of file.
idl/Naming.idl
Tue Apr 20 14:43:52 BST 1999 dpg1
=================================
- Moved #pragma prefix inside module
idl/Naming.idl
Thu Apr 15 15:12:25 BST 1999 djr
================================
- Fixed bug in TIE implementation templates. Incorrect code was generated
for interfaces using diamond shaped multiple inheritance.
src/tool/omniidl2/omniORB2_be/o2be_interface.cc
Wed Apr 14 11:41:12 BST 1999 dpg1
=================================
- Added inclusion guards to Naming.idl
idl/Naming.idl
Mon Apr 12 10:07:12 BST 1999 djr
================================
- Updated omniidl2 version number.
src/tool/omniidl2/omniORB2_be/o2be_root.cc
src/tool/omniidl2/driver/drv_main.cc
Tue Apr 6 09:30:57 BST 1999 djr
================================
- Updated the version number to 2.8.0
include/omniORB2/omniInternal.h
src/lib/omniORB2/orbcore/sharedlib/dir.mk
src/lib/omniORB2/dynamic/sharedlib/dir.mk
src/lib/omniORB2/lifecycle/sharedlib/dir.mk
- MSVC is not FD compliant regarding decls of const ints and enums.
include/omniORB2/CORBA_sysdep.h
Wed Mar 31 15:37:42 GMT 1999 djr
================================
- Version 5.7 tree copied from version5.6 tree.
|