commit | 3ccb14d60d8768d8ba8dc029af2fe76e3801226f | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Jun 14 11:18:40 2022 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Tue Jun 14 11:18:40 2022 +0200 |
tree | 7298f2febe8ded4f1691e0776f7f51c1af1d9b84 | |
parent | e35f03239d340735c6f2dbce094995c3fc63f258 [diff] |
MINOR: thread: get rid of MAX_THREADS_MASK This macro was used both for binding and for lookups. When binding tasks or FDs, using all_threads_mask instead is better as it will later be per group. For lookups, ~0UL always does the job. Thus in practice the macro was already almost not used anymore since the rest of the code could run fine with a constant of all ones there.