From ae88989fec5ad8cf440938e922b049a237be9783 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Sun, 14 Apr 2002 09:59:49 +0000 Subject: ChangeLogTag: Sun Apr 14 11:58:12 2002 Johnny Willemsen --- ChangeLog | 13 +++++++++---- ChangeLogs/ChangeLog-02a | 13 +++++++++---- ChangeLogs/ChangeLog-03a | 13 +++++++++---- ace/SPIPE_Addr.h | 12 +++++++----- 4 files changed, 34 insertions(+), 17 deletions(-) diff --git a/ChangeLog b/ChangeLog index e791b147141..e86bd804544 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Apr 14 11:59:12 UTC 2002 Johnny Willemsen + + * ace/SPIPE_Addr.h: + Doxygen-ized some of the comments + Sat Apr 13 19:28:40 UTC 2002 Don Hinton * ace/Basic_Types.h: Added include of pthread.h to pick @@ -7,13 +12,13 @@ Sat Apr 13 17:16:10 UTC 2002 Don Hinton * examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.h: * examples/ASX/CCM_App/CCM_App.cpp: - + Added include of svc_export.h. Sat Apr 13 15:42:03 UTC 2002 Don Hinton * tests/DLL_Test.{h,cpp}: - * tests/DLL_Test_Impl.{h,cpp}: Added methods to test the + * tests/DLL_Test_Impl.{h,cpp}: Added methods to test the the malloc/free and strnew/strdelete methods below. Also removed use auto_ptr and added a destroy method to delete the object within the dll/heap it was allocated. @@ -22,9 +27,9 @@ Sat Apr 13 15:42:03 UTC 2002 Don Hinton realloc(), and free() to be non-inlined to avoid the heap problem on Windows. - * ace/ACE.{h,i,cpp}: Changed strnew() to be non-inlined and + * ace/ACE.{h,i,cpp}: Changed strnew() to be non-inlined and added strdelete() for the same reason. - + Sat Apr 13 14:33:12 2002 Johnny Willemsen * ace/Configuration.h: diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index e791b147141..e86bd804544 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,8 @@ +Sun Apr 14 11:59:12 UTC 2002 Johnny Willemsen + + * ace/SPIPE_Addr.h: + Doxygen-ized some of the comments + Sat Apr 13 19:28:40 UTC 2002 Don Hinton * ace/Basic_Types.h: Added include of pthread.h to pick @@ -7,13 +12,13 @@ Sat Apr 13 17:16:10 UTC 2002 Don Hinton * examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.h: * examples/ASX/CCM_App/CCM_App.cpp: - + Added include of svc_export.h. Sat Apr 13 15:42:03 UTC 2002 Don Hinton * tests/DLL_Test.{h,cpp}: - * tests/DLL_Test_Impl.{h,cpp}: Added methods to test the + * tests/DLL_Test_Impl.{h,cpp}: Added methods to test the the malloc/free and strnew/strdelete methods below. Also removed use auto_ptr and added a destroy method to delete the object within the dll/heap it was allocated. @@ -22,9 +27,9 @@ Sat Apr 13 15:42:03 UTC 2002 Don Hinton realloc(), and free() to be non-inlined to avoid the heap problem on Windows. - * ace/ACE.{h,i,cpp}: Changed strnew() to be non-inlined and + * ace/ACE.{h,i,cpp}: Changed strnew() to be non-inlined and added strdelete() for the same reason. - + Sat Apr 13 14:33:12 2002 Johnny Willemsen * ace/Configuration.h: diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index e791b147141..e86bd804544 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,8 @@ +Sun Apr 14 11:59:12 UTC 2002 Johnny Willemsen + + * ace/SPIPE_Addr.h: + Doxygen-ized some of the comments + Sat Apr 13 19:28:40 UTC 2002 Don Hinton * ace/Basic_Types.h: Added include of pthread.h to pick @@ -7,13 +12,13 @@ Sat Apr 13 17:16:10 UTC 2002 Don Hinton * examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.h: * examples/ASX/CCM_App/CCM_App.cpp: - + Added include of svc_export.h. Sat Apr 13 15:42:03 UTC 2002 Don Hinton * tests/DLL_Test.{h,cpp}: - * tests/DLL_Test_Impl.{h,cpp}: Added methods to test the + * tests/DLL_Test_Impl.{h,cpp}: Added methods to test the the malloc/free and strnew/strdelete methods below. Also removed use auto_ptr and added a destroy method to delete the object within the dll/heap it was allocated. @@ -22,9 +27,9 @@ Sat Apr 13 15:42:03 UTC 2002 Don Hinton realloc(), and free() to be non-inlined to avoid the heap problem on Windows. - * ace/ACE.{h,i,cpp}: Changed strnew() to be non-inlined and + * ace/ACE.{h,i,cpp}: Changed strnew() to be non-inlined and added strdelete() for the same reason. - + Sat Apr 13 14:33:12 2002 Johnny Willemsen * ace/Configuration.h: diff --git a/ace/SPIPE_Addr.h b/ace/SPIPE_Addr.h index c4878d5d374..b22dc0628f0 100644 --- a/ace/SPIPE_Addr.h +++ b/ace/SPIPE_Addr.h @@ -73,13 +73,15 @@ public: const ACE_TCHAR *get_path_name (void) const; /// Get user id. - /// Set user id. uid_t user_id (void) const; + + /// Set user id. void user_id (uid_t uid); /// Set group ids. - /// Get group ids. void group_id (gid_t gid); + + /// Get group ids. gid_t group_id (void) const; /// Dump the state of an object. @@ -92,14 +94,14 @@ private: /// Contains security attributes. struct SPIPE_Addr { + /// Group id. gid_t gid_; - // Group id. + /// User id. uid_t uid_; - // User id. + /// Pathname in the file system. ACE_TCHAR rendezvous_[MAXNAMLEN + 1]; - // Pathname in the file system. } SPIPE_addr_; // Contents of an SPIPE address. -- cgit v1.2.1