commit | a7ad4aed6086995b4727777859be3f717295b7f1 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Jun 19 12:06:34 2020 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Jun 19 14:21:46 2020 +0200 |
tree | ee909eea651d5ab12b88e391a503f4940ebb052e | |
parent | 54067e9d3891a4566d5796d0205c46d9e167571e [diff] |
MINOR: haproxy: process signals before runnable tasks Nowadays signals cause tasks to be woken up. The historic code still processes signals after tasks, which forces a second round in the loop before they can effectively be processed. Let's move the signal queue handling between wake_expired_tasks() and process_runnable_tasks() where it makes much more sense.