diff options
| author | Monty Brandenberg <monty@lindenlab.com> | 2012-07-23 17:00:11 -0400 | 
|---|---|---|
| committer | Monty Brandenberg <monty@lindenlab.com> | 2012-07-23 17:00:11 -0400 | 
| commit | 334ce2556f0d51c38a76d655084ae1d4671f6aec (patch) | |
| tree | f6489b2ca97ef4f696cefc32e002eb8767c447b0 | |
| parent | 3f032e33f2b2f929b229cf4d358b9c9d297856b8 (diff) | |
Cleaning up comments, names, miscellany.
| -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. | 
