From 334ce2556f0d51c38a76d655084ae1d4671f6aec Mon Sep 17 00:00:00 2001
From: Monty Brandenberg <monty@lindenlab.com>
Date: Mon, 23 Jul 2012 17:00:11 -0400
Subject: [PATCH] Cleaning up comments, names, miscellany.

---
 indra/llcorehttp/_httpinternal.h   | 4 ++--
 indra/llcorehttp/_httpreadyqueue.h | 6 ++++++
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/indra/llcorehttp/_httpinternal.h b/indra/llcorehttp/_httpinternal.h
index 5f966500c9a..97ec5ee1d68 100644
--- a/indra/llcorehttp/_httpinternal.h
+++ b/indra/llcorehttp/_httpinternal.h
@@ -1,5 +1,5 @@
 /**
- * @file httpinternal.h
+ * @file _httpinternal.h
  * @brief Implementation constants and magic numbers
  *
  * $LicenseInfo:firstyear=2012&license=viewerlgpl$
@@ -44,7 +44,7 @@ namespace LLCore
 {
 
 // Maxium number of policy classes that can be defined.
-// *FIXME:  Currently limited to the default class, extend.
+// *TODO:  Currently limited to the default class, extend.
 const int POLICY_CLASS_LIMIT = 1;
 
 // Debug/informational tracing.  Used both
diff --git a/indra/llcorehttp/_httpreadyqueue.h b/indra/llcorehttp/_httpreadyqueue.h
index 8462b174b5d..9cf4b059a12 100644
--- a/indra/llcorehttp/_httpreadyqueue.h
+++ b/indra/llcorehttp/_httpreadyqueue.h
@@ -45,6 +45,12 @@ namespace LLCore
 /// important of those rules is that any iterator becomes invalid
 /// on element erasure.  So pay attention.
 ///
+/// If LLCORE_READY_QUEUE_IGNORES_PRIORITY tests true, the class
+/// implements a std::priority_queue interface but on std::deque
+/// behavior to eliminate sensitivity to priority.  In the future,
+/// this will likely become the only behavior or it may become
+/// a run-time election.
+///
 /// Threading:  not thread-safe.  Expected to be used entirely by
 /// a single thread, typically a worker thread of some sort.
 
-- 
GitLab