diff options
author | Benoit 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 |
---|---|---|
committer | Benoit 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 |
commit | 9c84074c89661cd1e776eff3d4aa5329a2ac9524 (patch) | |
tree | 3c424371c1f21f4dee493793c8316059bf8217c6 /Makefile | |
parent | 32f8cdfc73ed90dcf88ffcf4bfc1a3e4d5a69e6c (diff) | |
download | lanes-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-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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: | |||
94 | basic: tests/basic.lua $(_TARGET_SO) | 95 | basic: tests/basic.lua $(_TARGET_SO) |
95 | $(_PREFIX) $(LUA) $< | 96 | $(_PREFIX) $(LUA) $< |
96 | 97 | ||
98 | cancel: 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 | # |