commit | e61244631a76680330d37e3efa6aef7d4f9d62f9 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Sep 13 10:07:38 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Sep 17 16:08:34 2021 +0200 |
tree | 87dfcb2d7bda1943b60affd778d742396eba8e5b | |
parent | 87063a7da1ead9f4ddf048c2d1924f635dce28a9 [diff] |
MINOR: applet: remove the thread mask from appctx_new() appctx_new() is exclusively called with tid_bit and it only uses the mask to pass it to the accompanying task. There is no point requiring the caller to know about a mask there, nor is there any point in creating an applet outside of the context of its own thread anyway. Let's drop this and pass tid_bit to task_new() directly.