diff options
| author | Alan Conway <aconway@apache.org> | 2007-11-16 20:16:23 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-11-16 20:16:23 +0000 |
| commit | 493b528a6ba5961613d4ecea7b81f5b3638dc3d9 (patch) | |
| tree | 1a64a1498a5d50e0ed5c7bc4dec625ec8aa1e78d /cpp/src/tests/Makefile.am | |
| parent | c31a7344ed65dc8201067b95f1a78d1c393e217b (diff) | |
| download | qpid-python-493b528a6ba5961613d4ecea7b81f5b3638dc3d9.tar.gz | |
Added qpid::InlineVector - std::vector with inline storage to avoid
heap allocation for small vectors.
Made SequenceNumberSet : public InlineVector<SequenceNumber, 2>
In 100k perftest reduces heap allocation in client by 40%, broker 9%.
.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@595808 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/Makefile.am')
| -rw-r--r-- | cpp/src/tests/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/tests/Makefile.am b/cpp/src/tests/Makefile.am index b4944c1294..4dbc37d42a 100644 --- a/cpp/src/tests/Makefile.am +++ b/cpp/src/tests/Makefile.am @@ -31,7 +31,8 @@ unit_test_SOURCES= unit_test.cpp \ RefCounted.cpp RefCountedMap.cpp \ SessionState.cpp Blob.cpp logging.cpp \ Url.cpp Uuid.cpp \ - Shlib.cpp FieldValue.cpp FieldTable.cpp Array.cpp + Shlib.cpp FieldValue.cpp FieldTable.cpp Array.cpp \ + InlineVector.cpp check_LTLIBRARIES += libshlibtest.la libshlibtest_la_LDFLAGS = -module -rpath $(abs_builddir) |
