From: sbrandt Date: Wed, 22 Jun 2005 03:23:44 +0000 (+0000) Subject: Added tp to test ThreadPool.h X-Git-Tag: v0.1~2051 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4ef143047135e1d7e4915de68c17a86b2b3df8f1;p=ceph.git Added tp to test ThreadPool.h git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@330 29311d96-e01e-0410-9327-a35deaab8ce9 --- diff --git a/ceph/Makefile b/ceph/Makefile index eb33a8a1d2c7..e27ac21aabe1 100644 --- a/ceph/Makefile +++ b/ceph/Makefile @@ -9,7 +9,7 @@ # behave just fine... change ${CC} back to mpicxx if you get paranoid. CC = g++ CFLAGS = -g -I. -D_FILE_OFFSET_BITS=64 -DMPICH_IGNORE_CXX_SEEK -D_REENTRANT -D_THREAD_SAFE -LIBS = -lpthread +LIBS = -lpthread -lrt #for normal machines MPICC = mpicxx @@ -71,6 +71,9 @@ singleclient: mds/allmds.o osd/OSD.o fakesingleclient.o client/Client.o \ msg/CheesySerializer.o msg/FakeMessenger.o fsck.o ${COMMON_OBJS} ${CC} ${CFLAGS} ${LIBS} $^ -o $@ +tp: osd/tp.o + ${CC} ${CFLAGS} ${LIBS} $^ -o $@ + fuseclient: client/Client.o client/fuse.o msg/CheesySerializer.o \ msg/FakeMessenger.o ${COMMON_OBJS} ${CC} ${CFLAGS} ${LIBS} -lfuse $^ -o $@