diff options
| -rw-r--r-- | indra/llcorehttp/_httpinternal.h | 4 | ||||
| -rw-r--r-- | 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 5f966500c9..97ec5ee1d6 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 8462b174b5..9cf4b059a1 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. | 
