diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-19 17:26:14 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-19 17:26:14 +0000 |
commit | 90065bfd64cb4dc8ecad4bfa48ddb24683d21322 (patch) | |
tree | cca867bb40c271c72353b930ab667e8e1de408eb | |
parent | 0ac6498ccbdf9c8c24280dcb16dc3f29fbef1349 (diff) | |
download | ATCD-90065bfd64cb4dc8ecad4bfa48ddb24683d21322.tar.gz |
ChangeLogTag:Mon Jan 19 11:24:43 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r-- | TAO/ChangeLog-98c | 8 | ||||
-rw-r--r-- | TAO/docs/releasenotes/index.html | 11 | ||||
-rw-r--r-- | TAO/tao/sequence_T.i | 5 |
3 files changed, 19 insertions, 5 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c index 5303fae7401..f168003c30d 100644 --- a/TAO/ChangeLog-98c +++ b/TAO/ChangeLog-98c @@ -1,3 +1,11 @@ +Mon Jan 19 11:24:43 1998 Carlos O'Ryan <coryan@cs.wustl.edu> + + * tao/sequence_T.i: + g++ does not like nested types in templates. + + * docs/releasenotes/index.html: + Updated docs on services. + Sun Jan 18 21:33:21 1998 <coryan@MILONGA> * tao/sequence.h: diff --git a/TAO/docs/releasenotes/index.html b/TAO/docs/releasenotes/index.html index 55e8f48d634..5d3f405cfeb 100644 --- a/TAO/docs/releasenotes/index.html +++ b/TAO/docs/releasenotes/index.html @@ -212,7 +212,8 @@ Point of contact: <A HREF="mailto:coryan@cs.wustl.edu">Carlos O'Ryan</A> <LI> The current Event Channel is working on TAO, the Scheduling Service still has some problems, -apparently related to the IDL compiler.</LI> +apparently related to sequences of variable sized structures as out +parameters.</LI> <LI> The configuration runs can be done even on the distributed scenario, using @@ -222,7 +223,8 @@ the Real-time "Scheduling Service", which now has an IDL interface.</LI> At run-time (no config runs) there is no need to use the Real-time Scheduling Service, a faster, collocated implementation for the service is available. Obviously the information is generated on the config runs and linked into -the program. Unfortunately the schedule information cannot be +the program. +Unfortunately the schedule information cannot be downloaded from the service right now.</LI> <LI> @@ -260,6 +262,11 @@ but requires a (small) amount of dynamic memory allocation. It could be interesting to "save" the schedule computation in some persistent form, so startup cost are lower too.</LI> +<LI> +The user should have complete control of services collocation, +ACE services for dynamically loaded objects should help in this area, +but we need to add support for NT DLLs in the IDL compiler.</LI> + </UL> <P>For general documentation on the Event Service please read <A HREF="http://www.cs.wustl.edu/~schmidt/oopsla.ps.gz"> diff --git a/TAO/tao/sequence_T.i b/TAO/tao/sequence_T.i index 25d505f72b0..4e05e5ea544 100644 --- a/TAO/tao/sequence_T.i +++ b/TAO/tao/sequence_T.i @@ -159,7 +159,7 @@ TAO_Unbounded_Object_Sequence (CORBA::ULong maximum, { } -template <class T> ACE_INLINE TAO_Unbounded_Object_Sequence<T>::Manager +template <class T> ACE_INLINE TAO_Object_Manager<T> TAO_Unbounded_Object_Sequence<T>::operator[] (CORBA::ULong index) const { ACE_ASSERT (index < this->maximum_); @@ -189,8 +189,7 @@ TAO_Bounded_Object_Sequence<T,MAX>::TAO_Bounded_Object_Sequence { } -template <class T, CORBA::ULong MAX> ACE_INLINE -TAO_Bounded_Object_Sequence<T,MAX>::Manager +template <class T, CORBA::ULong MAX> ACE_INLINE TAO_Object_Manager<T> TAO_Bounded_Object_Sequence<T,MAX>::operator[] (CORBA::ULong index) const { ACE_ASSERT (index < this->maximum_); |