summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-20 18:38:39 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-20 18:38:39 +0000
commit0afdd607b9ea3dc3423aed69872e80f816efb814 (patch)
treec7665fd1ff00452826111a67c48855f76587ac86
parent6fd172f872ae9ae70e06362d6aae4780fe63321a (diff)
downloadATCD-0afdd607b9ea3dc3423aed69872e80f816efb814.tar.gz
added UDP
-rw-r--r--performance-tests/Makefile4
-rw-r--r--performance-tests/README19
2 files changed, 13 insertions, 10 deletions
diff --git a/performance-tests/Makefile b/performance-tests/Makefile
index d982a738120..ce5f51d934b 100644
--- a/performance-tests/Makefile
+++ b/performance-tests/Makefile
@@ -11,7 +11,8 @@
INFO = README
DIRS = Synch-Benchmarks \
- Misc
+ Misc \
+ UDP
# The following directory isn't compiled by default since haven't
# finished integrating it into ACE...
@@ -27,4 +28,3 @@ include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nolocal.GNU
-
diff --git a/performance-tests/README b/performance-tests/README
index 4be2f1e518b..d8e7d36c645 100644
--- a/performance-tests/README
+++ b/performance-tests/README
@@ -2,13 +2,16 @@ The subdirectories in this directory provide a number of benchmarks
that use ACE features to determine performance of various concurrency
and communication mechanisms.
- . Synch-Benchmarks -- Implements a number of benchmarks
- that test the performance of various synchronization
- mechanisms.
+ . Synch-Benchmarks -- Implements a number of benchmarks
+ that test the performance of various synchronization
+ mechanisms.
- . TTCP -- Implements several variants of the TTCP benchmarking
- test for TCP and UCP using C sockets, ACE C++ wrappers, and
- several versions of CORBA (Orbix and ORBeline).
+ . TTCP -- Implements several variants of the TTCP benchmarking
+ test for TCP and UCP using C sockets, ACE C++ wrappers, and
+ several versions of CORBA (Orbix and ORBeline).
- . Misc -- Miscellaneous tests, e.g., Double-Checked Locking,
- context switching, mutexes, naming, etc.
+ . UDP -- Contains UDP test, which measures UDP round-trip
+ performance.
+
+ . Misc -- Miscellaneous tests, e.g., Double-Checked Locking,
+ context switching, mutexes, naming, etc.