From b49a58dda27fe4b0b8943755e5c359b7b1739cc3 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 20 May 2019 11:14:51 +0200 Subject: [PATCH] CLEANUP: threads: remove the now unused START_LOCK label The last two users are now gone. --- include/common/hathreads.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/common/hathreads.h b/include/common/hathreads.h index 806746770..2be5915c0 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";