summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-08-02 23:50:43 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-08-02 23:50:43 +0000
commitddc3aa1a7f758604b172dbc51a3eaddfa02b16ff (patch)
tree6582519c1c9ff01f310e6326002ee2fc83e6e879
parentd9e4b5d5fe88265bca696c275ae9532781e5569f (diff)
downloadATCD-ddc3aa1a7f758604b172dbc51a3eaddfa02b16ff.tar.gz
ChangeLogTag:Thu Aug 2 18:37:23 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-02a8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rw-r--r--ace/RW_Process_Mutex.cpp2
4 files changed, 25 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 19aacb96ce5..30be2c6d455 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Thu Aug 2 18:37:23 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+
+ * ace/RW_Process_Mutex.cpp: Added ACE_DEFAULT_OPEN_PERMS
+ to the constructor call to ACE_RW_Process_Mutex so that it does
+ the right thing on Win32. Thanks to Wayne Erchak
+ <werchak@stentor.com> for reporting this. This fixes
+ bugid 996.
+
Thu Aug 02 13:04:19 2001 Steve Huston <shuston@riverace.com>
* ace/ace.icc: Added Intrusive_List.cpp to the TEMPLATE_FILES
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 19aacb96ce5..30be2c6d455 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Thu Aug 2 18:37:23 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+
+ * ace/RW_Process_Mutex.cpp: Added ACE_DEFAULT_OPEN_PERMS
+ to the constructor call to ACE_RW_Process_Mutex so that it does
+ the right thing on Win32. Thanks to Wayne Erchak
+ <werchak@stentor.com> for reporting this. This fixes
+ bugid 996.
+
Thu Aug 02 13:04:19 2001 Steve Huston <shuston@riverace.com>
* ace/ace.icc: Added Intrusive_List.cpp to the TEMPLATE_FILES
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 19aacb96ce5..30be2c6d455 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,11 @@
+Thu Aug 2 18:37:23 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+
+ * ace/RW_Process_Mutex.cpp: Added ACE_DEFAULT_OPEN_PERMS
+ to the constructor call to ACE_RW_Process_Mutex so that it does
+ the right thing on Win32. Thanks to Wayne Erchak
+ <werchak@stentor.com> for reporting this. This fixes
+ bugid 996.
+
Thu Aug 02 13:04:19 2001 Steve Huston <shuston@riverace.com>
* ace/ace.icc: Added Intrusive_List.cpp to the TEMPLATE_FILES
diff --git a/ace/RW_Process_Mutex.cpp b/ace/RW_Process_Mutex.cpp
index 670965810b6..783698f7027 100644
--- a/ace/RW_Process_Mutex.cpp
+++ b/ace/RW_Process_Mutex.cpp
@@ -15,7 +15,7 @@ ACE_RW_Process_Mutex::ACE_RW_Process_Mutex (const ACE_TCHAR *name,
int flags)
: lock_ (name, flags
#if defined (ACE_WIN32)
- )
+ ACE_DEFAULT_OPEN_PERMS)
#else
, S_IRUSR | S_IWUSR)
#endif /* ACE_WIN32 */