]> git.puffer.fish Git - mirror/frr.git/commitdiff
2004-05-22 Paul Jakma <paul@dishone.st>
authorpaul <paul>
Fri, 22 Apr 2005 00:54:44 +0000 (00:54 +0000)
committerpaul <paul>
Fri, 22 Apr 2005 00:54:44 +0000 (00:54 +0000)
* Makefile.am: Build heavythread

tests/ChangeLog
tests/Makefile.am

index c36dc4cee524c28d50ad7b8942fbf46bb4c609e6..f3ec6cf9c4c5dfc44eee92fc0f4d363349fd0d8d 100644 (file)
@@ -1,7 +1,8 @@
 2004-05-22 Paul Jakma <paul@dishone.st>
 
        * heavy-thread.c: Andrew Schorr's adaptation of heavy.c to use a
-         background thread to avoid responsivity problems.
+         background thread to avoid responsiveness problems.
+       * Makefile.am: Build heavythread
 
 2004-05-21 Paul Jakma <paul@dishone.st>
 
index c3fac7c0028d3023469bf47778ad3c12d30d5ad9..e5d8739e08d74fd8ca3ccdda29e64d09d43ba124 100644 (file)
@@ -1,12 +1,15 @@
 INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib
 DEFS = @DEFS@ $(LOCAL_OPTS) -DSYSCONFDIR=\"$(sysconfdir)/\"
 
-noinst_PROGRAMS = testsig testbuffer testmemory
+noinst_PROGRAMS = testsig testbuffer testmemory heavy heavythread
 testsig_SOURCES = test-sig.c
 testbuffer_SOURCES = test-buffer.c
 testmemory_SOURCES = test-memory.c
+heavy_SOURCES = heavy.c
+heavythread_SOURCES = heavy-thread.c
 
 testsig_LDADD = ../lib/libzebra.la @LIBCAP@
 testbuffer_LDADD = ../lib/libzebra.la @LIBCAP@
 testmemory_LDADD = ../lib/libzebra.la @LIBCAP@
-
+heavy_LDADD = ../lib/libzebra.la @LIBCAP@
+heavythread_LDADD = ../lib/libzebra.la @LIBCAP@ -lm