From 259e473ecc2a0f09b3d84b77db2c2b09738ad406 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Wed, 8 Aug 2018 10:32:20 +0200 Subject: [PATCH] BUG/MINOR: threads: Remove the unexisting lock label "UPDATED_SERVERS_LOCK" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The update lock was removed by the commit 91c2826e1 ("CLEANUP: server: remove the update list and the update lock"). But the lock label was not which makes the compilation fail in debug mode. pour vos modifications. Les lignes # commençant par '#' seront ignorées, et un message vide abandonne la validation. # # Sur la branche temp # Votre branche est en avance sur 'origin/master' de 87 commits. # (utilisez "git push" pour publier vos commits locaux) # # Modifications qui seront validées : # modifié : include/common/hathreads.h # --- include/common/hathreads.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/common/hathreads.h b/include/common/hathreads.h index 794fa8b6c..b53cd77e9 100644 --- a/include/common/hathreads.h +++ b/include/common/hathreads.h @@ -468,7 +468,6 @@ static inline const char *lock_label(enum lock_label label) case LISTENER_QUEUE_LOCK: return "LISTENER_QUEUE"; case PROXY_LOCK: return "PROXY"; case SERVER_LOCK: return "SERVER"; - case UPDATED_SERVERS_LOCK: return "UPDATED_SERVERS"; case LBPRM_LOCK: return "LBPRM"; case SIGNALS_LOCK: return "SIGNALS"; case STK_TABLE_LOCK: return "STK_TABLE";