Skip to content

Commit

Permalink
v0.2 code, multiple queue hashtable changed for per-queue stats
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Chu committed Dec 9, 2009
1 parent eb4948b commit e31d465
Show file tree
Hide file tree
Showing 13 changed files with 1,421 additions and 800 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bin_PROGRAMS = memcacheq
memcacheq_SOURCES = memcacheq.c item.c memcacheq.h thread.c bdb.c
memcacheq_SOURCES = memcacheq.c item.c memcacheq.h thread.c bdb.c hashtable.c hash.c daemon.c

EXTRA_DIST = AUTHORS LICENSE INSTALL.html README.html
8 changes: 6 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ am__installdirs = "$(DESTDIR)$(bindir)"
binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
PROGRAMS = $(bin_PROGRAMS)
am_memcacheq_OBJECTS = memcacheq.$(OBJEXT) item.$(OBJEXT) \
thread.$(OBJEXT) bdb.$(OBJEXT)
thread.$(OBJEXT) bdb.$(OBJEXT) hashtable.$(OBJEXT) \
hash.$(OBJEXT) daemon.$(OBJEXT)
memcacheq_OBJECTS = $(am_memcacheq_OBJECTS)
memcacheq_LDADD = $(LDADD)
DEFAULT_INCLUDES = -I.@am__isrc@
Expand Down Expand Up @@ -158,7 +159,7 @@ sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
memcacheq_SOURCES = memcacheq.c item.c memcacheq.h thread.c bdb.c
memcacheq_SOURCES = memcacheq.c item.c memcacheq.h thread.c bdb.c hashtable.c hash.c daemon.c
EXTRA_DIST = AUTHORS LICENSE INSTALL.html README.html
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-am
Expand Down Expand Up @@ -249,6 +250,9 @@ distclean-compile:
-rm -f *.tab.c

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bdb.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/daemon.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hash.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hashtable.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/item.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/memcacheq.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thread.Po@am__quote@
Expand Down
Loading

0 comments on commit e31d465

Please sign in to comment.