From 9833438733d072f7557942891af371417eff42f1 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Fri, 18 Oct 2013 21:58:07 +0200 Subject: [PATCH] add better comment --- Server/DataStructures/SharedBarriers.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Server/DataStructures/SharedBarriers.h b/Server/DataStructures/SharedBarriers.h index 4f43403e2..af81a17ca 100644 --- a/Server/DataStructures/SharedBarriers.h +++ b/Server/DataStructures/SharedBarriers.h @@ -12,7 +12,8 @@ struct SharedBarriers { // Condition that no update is running boost::interprocess::interprocess_condition update_finished_condition; - // Is there any message? + // Is there an ongoing update? bool update_ongoing; + // Is there any query? int number_of_queries; };