diff options
-rw-r--r-- | TAO/ChangeLog-98c | 5 | ||||
-rw-r--r-- | TAO/tao/nvlist.i | 21 | ||||
-rw-r--r-- | TAO/tao/tao.h | 5 | ||||
-rw-r--r-- | ace/Naming_Context.cpp | 6 |
4 files changed, 12 insertions, 25 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c index 242083c1144..dab7abaed55 100644 --- a/TAO/ChangeLog-98c +++ b/TAO/ChangeLog-98c @@ -1,5 +1,10 @@ Sat Mar 21 11:00:40 1998 Douglas C. Schmidt <schmidt@flamenco.cs.wustl.edu> + * tao/corbacom.h: Moved the CORBA_SEQUENCE stuff back into the + header file since it wasn't linking correctly... + + * tao/TAO_IDL: Changed all uses of do_call() to do_static_call(). + * tao: Made lots of minor enhancements to formatting and style. * tao: Removed the invoke.cpp file and moved its functionality diff --git a/TAO/tao/nvlist.i b/TAO/tao/nvlist.i index e4b35074884..9cf97b1efcb 100644 --- a/TAO/tao/nvlist.i +++ b/TAO/tao/nvlist.i @@ -1,26 +1,5 @@ // This may look like C, but it's really -*- C++ -*- -// ============================================================================ -// -// = LIBRARY -// TAO -// -// = FILENAME -// corbacom.i -// -// = DESCRIPTION -// CORBA C/C++/COM mapping for Win32 -// -// = AUTHOR -// Copyright 1994-1995 by Sun Microsystems Inc. -// and -// Aniruddha Gokhale -// -// ============================================================================ - - -// =methods of class CORBA::NamedValue - // constructor ACE_INLINE CORBA_NamedValue::CORBA_NamedValue (void) diff --git a/TAO/tao/tao.h b/TAO/tao/tao.h index 6faa5e76a46..5499fa73dc4 100644 --- a/TAO/tao/tao.h +++ b/TAO/tao/tao.h @@ -1,5 +1,4 @@ /* -*- C++ -*- */ - // $Id$ // ============================================================================ @@ -10,9 +9,11 @@ // = FILENAME // tao.h // +// = DESCRIPTION +// Externally visible CORBA classes. +// // = AUTHOR // Chris Cleeland -// // // ============================================================================ diff --git a/ace/Naming_Context.cpp b/ace/Naming_Context.cpp index 97b641ef777..73ba300a94c 100644 --- a/ace/Naming_Context.cpp +++ b/ace/Naming_Context.cpp @@ -10,8 +10,10 @@ // Make life easier later on... -typedef ACE_Local_Name_Space <ACE_MMAP_MEMORY_POOL, ACE_RW_Process_Mutex> LOCAL_NAME_SPACE; -typedef ACE_Local_Name_Space <ACE_LITE_MMAP_MEMORY_POOL, ACE_RW_Process_Mutex> LITE_LOCAL_NAME_SPACE; +typedef ACE_Local_Name_Space <ACE_MMAP_MEMORY_POOL, ACE_RW_Process_Mutex> + LOCAL_NAME_SPACE; +typedef ACE_Local_Name_Space <ACE_LITE_MMAP_MEMORY_POOL, ACE_RW_Process_Mutex> + LITE_LOCAL_NAME_SPACE; // The following Factory is used by the ACE_Service_Config and // svc.conf file to dynamically initialize the state of the Name |