From: Willy Tarreau Date: Mon, 20 May 2019 09:14:51 +0000 (+0200) Subject: CLEANUP: threads: remove the now unused START_LOCK label X-Git-Tag: v2.0-dev4~58 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b49a58dda27fe4b0b8943755e5c359b7b1739cc3;p=thirdparty%2Fhaproxy.git CLEANUP: threads: remove the now unused START_LOCK label The last two users are now gone. --- diff --git a/include/common/hathreads.h b/include/common/hathreads.h index 806746770e..2be5915c08 100644 --- a/include/common/hathreads.h +++ b/include/common/hathreads.h @@ -478,7 +478,6 @@ enum lock_label { PID_LIST_LOCK, EMAIL_ALERTS_LOCK, PIPES_LOCK, - START_LOCK, TLSKEYS_REF_LOCK, AUTH_LOCK, LOGSRV_LOCK, @@ -595,7 +594,6 @@ static inline const char *lock_label(enum lock_label label) case PID_LIST_LOCK: return "PID_LIST"; case EMAIL_ALERTS_LOCK: return "EMAIL_ALERTS"; case PIPES_LOCK: return "PIPES"; - case START_LOCK: return "START"; case TLSKEYS_REF_LOCK: return "TLSKEYS_REF"; case AUTH_LOCK: return "AUTH"; case LOGSRV_LOCK: return "LOGSRV";