mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
acfc61eca8
Add a new queue implementation for OpenAFS. This has a similar calling form as the current RX queue implementation, but is implementated using type safe functions, and supports structures with multiple queue headers. This permits threading a structure onto multiple queues at the same time. The eventual intention is that this queue implementation will replace both rx_queue and the Unix cache manager afs_q. Change-Id: I8f815872b017a85eb52a6e6451cdcee3eb869519 Reviewed-on: http://gerrit.openafs.org/3139 Reviewed-by: Derrick Brashear <shadow@dementia.org> Tested-by: Derrick Brashear <shadow@dementia.org>
29 lines
627 B
Makefile
29 lines
627 B
Makefile
# Build rules for the OpenAFS util test suite.
|
|
|
|
srcdir=@srcdir@
|
|
abs_top_builddir=@abs_top_builddir@
|
|
include @TOP_OBJDIR@/src/config/Makefile.config
|
|
include @TOP_OBJDIR@/src/config/Makefile.lwp
|
|
|
|
MODULE_CFLAGS = -I$(srcdir)/..
|
|
|
|
LIBS = ../tap/libtap.a $(abs_top_builddir)/lib/util.a
|
|
|
|
tests = ktime-t exec-alt-t queues-t
|
|
|
|
all check test tests: $(tests)
|
|
|
|
ktime-t: ktime-t.o $(LIBS)
|
|
$(AFS_LDRULE) ktime-t.o $(LIBS) $(XLIBS)
|
|
|
|
exec-alt-t: exec-alt-t.o $(LIBS)
|
|
$(AFS_LDRULE) exec-alt-t.o $(LIBS) $(XLIBS)
|
|
|
|
queues-t: queues-t.o
|
|
$(AFS_LDRULE) queues-t.o ../tap/libtap.a $(XLIBS)
|
|
|
|
install:
|
|
|
|
clean distclean:
|
|
$(RM) -f $(tests) *.o core
|