Changeset 306
- Timestamp:
- 02/25/08 22:40:36 (9 months ago)
- Location:
- trunk/thrucommon
- Files:
-
- 7 removed
- 3 modified
-
src/Makefile.am (modified) (2 diffs)
-
src/SpreadConnection.cpp (modified) (1 diff)
-
src/SpreadManager.cpp (deleted)
-
src/SpreadManager.h (deleted)
-
src/SpreadTaskFactory.h (deleted)
-
src/Transaction.cpp (deleted)
-
src/Transaction.h (deleted)
-
src/TransactionManager.cpp (deleted)
-
src/TransactionManager.h (deleted)
-
tests/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thrucommon/src/Makefile.am
r304 r306 18 18 RecoveryManager.h \ 19 19 SpreadConnection.h \ 20 SpreadManager.h \21 SpreadTaskFactory.h \22 Transaction.h \23 TransactionManager.h \24 20 bloom_filter.hpp \ 25 21 utils.h … … 36 32 ThruFileTransport.cpp \ 37 33 RecoveryManager.cpp \ 38 SpreadConnection.cpp \ 39 SpreadManager.cpp \ 40 Transaction.cpp \ 41 TransactionManager.cpp 34 SpreadConnection.cpp 42 35 43 36 libthrucommon_la_CPPFLAGS = -Wall -Igen-cpp $(MEMCACHED_CFLAGS) $(SPEAD_CFLAGS) $(SSL_CFLAGS) $(THRIFT_CFLAGS) $(UUID_CFLAGS) -
trunk/thrucommon/src/SpreadConnection.cpp
r305 r306 290 290 // C++ is compared to perl where this is 8 lines of code :( 291 291 292 for ( int i = 0; i < groups.size (); i++)292 for (size_t i = 0; i < groups.size (); i++) 293 293 { 294 294 LOG4CXX_DEBUG (logger, "dispatch: groups[i]=" + groups[i]); -
trunk/thrucommon/tests/Makefile.am
r304 r306 1 # TODO: make sure we link against our thrucommon and not an installed one 2 1 3 INCLUDES = -I$(top_builddir)/src 2 4 LDADDS = ../src/libthrucommon.la
