]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: applet: rename applet_runq to applet_active_queue
authorWilly Tarreau <w@1wt.eu>
Fri, 25 Sep 2015 15:39:23 +0000 (17:39 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 25 Sep 2015 16:02:44 +0000 (18:02 +0200)
commit64bca9d36ad8cb109cefa7cba3fd9ebba2eca8e0
tree8fe0a60d8bfc5c33495e2012ee9dd84d4c3d1955
parent9bb49f6906eafed0eb0fde01cd403089a502a101
MINOR: applet: rename applet_runq to applet_active_queue

This is not a real run queue and we're facing ugly bugs because
if this : if a an applet removes another applet from the queue,
typically the next one after itself, the list iterator loops
forever because the list's backup pointer is not valid anymore.
Before creating a run queue, let's rename this list.
include/proto/applet.h
src/applet.c
src/haproxy.c