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 | b0ef955830e19e14b10eb7ada9c51896514dd5f4 (patch) | |
| tree | 4774b246e66f9afdde8f0bd5dca963839f51d7fb /qpid/cpp/src/tests/Makefile.am | |
| parent | 1d2c8c9667095e631bb2e9664845869174f10085 (diff) | |
| download | qpid-python-b0ef955830e19e14b10eb7ada9c51896514dd5f4.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@595808 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/Makefile.am')
| -rw-r--r-- | qpid/cpp/src/tests/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/Makefile.am b/qpid/cpp/src/tests/Makefile.am index b4944c1294..4dbc37d42a 100644 --- a/qpid/cpp/src/tests/Makefile.am +++ b/qpid/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) |
