summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-14 08:56:09 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-14 08:56:09 +0000
commit2f159ba5e58aded096ed8df177b6a3a908d2a93c (patch)
tree7fcc8d7878015e639a5cd4aabf7e09e264cd9e03
parent4f9c494071067c012885b91bcaf6cb2cbdf5e9c0 (diff)
downloadATCD-2f159ba5e58aded096ed8df177b6a3a908d2a93c.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-97a10
-rw-r--r--performance-tests/Synch-Benchmarks/pipe_proc_test.cpp2
-rw-r--r--performance-tests/Synch-Benchmarks/sysvsema_test.cpp2
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog-97a b/ChangeLog-97a
index 04b969c5424..05ceee0e389 100644
--- a/ChangeLog-97a
+++ b/ChangeLog-97a
@@ -1,3 +1,13 @@
+Sat Jun 14 03:53:13 1997 Nanbor Wang <nw1@dingo.wolfpack.cs.wustl.edu>
+
+ * performance-tests/Synch-Benchmarks/pipe_proc_test.cpp (class
+ Pipe_Proc_Test): Changed the type of pipe_handles[] from int to
+ ACE_HANDLE.
+
+ * performance-tests/Synch-Benchmarks/sysvsema_test.cpp: When
+ creating the semaphore, explicitly cast the key value to (key_t)
+ since NT couldn't handle the conversion.
+
Fri Jun 13 19:32:03 1997 Steve Huston <shuston@riverace.com>
* ace/ACE.cpp: Fixed count_interfaces to compile on non-SVR4
diff --git a/performance-tests/Synch-Benchmarks/pipe_proc_test.cpp b/performance-tests/Synch-Benchmarks/pipe_proc_test.cpp
index aa9d90bc4b9..6ee3e762567 100644
--- a/performance-tests/Synch-Benchmarks/pipe_proc_test.cpp
+++ b/performance-tests/Synch-Benchmarks/pipe_proc_test.cpp
@@ -15,7 +15,7 @@ public:
virtual int svc (void);
private:
- int pipe_handles[2];
+ ACE_HANDLE pipe_handles[2];
void reader (ACE_HANDLE handle);
};
diff --git a/performance-tests/Synch-Benchmarks/sysvsema_test.cpp b/performance-tests/Synch-Benchmarks/sysvsema_test.cpp
index 3dc98ebac16..8710e64536f 100644
--- a/performance-tests/Synch-Benchmarks/sysvsema_test.cpp
+++ b/performance-tests/Synch-Benchmarks/sysvsema_test.cpp
@@ -15,7 +15,7 @@ private:
static ACE_SV_Semaphore_Simple sema;
};
-ACE_SV_Semaphore_Simple SYSVSema_Test::sema (1234, ACE_SV_Semaphore_Simple::ACE_CREATE, 1);
+ACE_SV_Semaphore_Simple SYSVSema_Test::sema ((key_t) 1234);
int
SYSVSema_Test::svc (void)