aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenoit Germain <b n t DOT g e r m a i n AT g m a i l DOT c o m>2019-04-26 12:20:06 +0200
committerBenoit Germain <b n t DOT g e r m a i n AT g m a i l DOT c o m>2019-04-26 12:20:06 +0200
commit9c84074c89661cd1e776eff3d4aa5329a2ac9524 (patch)
tree3c424371c1f21f4dee493793c8316059bf8217c6 /Makefile
parent32f8cdfc73ed90dcf88ffcf4bfc1a3e4d5a69e6c (diff)
downloadlanes-9c84074c89661cd1e776eff3d4aa5329a2ac9524.tar.gz
lanes-9c84074c89661cd1e776eff3d4aa5329a2ac9524.tar.bz2
lanes-9c84074c89661cd1e776eff3d4aa5329a2ac9524.zip
Lane cancellation rework
opt.cancelstep is gone, hook is installed by lane:cancel() if requested lane:cancel() rework (see doc)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index fc44fac..7d2cf17 100644
--- a/Makefile
+++ b/Makefile
@@ -76,6 +76,7 @@ test:
76 $(MAKE) irayo_recursive 76 $(MAKE) irayo_recursive
77 $(MAKE) irayo_closure 77 $(MAKE) irayo_closure
78 $(MAKE) basic 78 $(MAKE) basic
79 $(MAKE) cancel
79 $(MAKE) fifo 80 $(MAKE) fifo
80 $(MAKE) keeper 81 $(MAKE) keeper
81 $(MAKE) timer 82 $(MAKE) timer
@@ -94,6 +95,9 @@ test:
94basic: tests/basic.lua $(_TARGET_SO) 95basic: tests/basic.lua $(_TARGET_SO)
95 $(_PREFIX) $(LUA) $< 96 $(_PREFIX) $(LUA) $<
96 97
98cancel: tests/cancel.lua $(_TARGET_SO)
99 $(_PREFIX) $(LUA) $<
100
97# 101#
98# This tries to show out a bug which happens in lane cleanup (multicore CPU's only) 102# This tries to show out a bug which happens in lane cleanup (multicore CPU's only)
99# 103#