commit | c40efc19194a7b21137f9d2b3a39e83003689fef | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri May 03 09:22:44 2019 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri May 03 10:16:30 2019 +0200 |
tree | dd8fe0c4f5a21b5a8b509eda71bef45c1f9f05af | |
parent | b4f7cc3839dfe826cbcf937d54ea2e6dcd9ba621 [diff] |
MINOR: init/threads: make the threads array global Currently the thread array is a local variable inside a function block and there is no access to it from outside, which often complicates debugging. Let's make it global and export it. Also the allocation return is now checked.