summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/_httpreadyqueue.h
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-07-23 17:00:11 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-07-23 17:00:11 -0400
commit334ce2556f0d51c38a76d655084ae1d4671f6aec (patch)
treef6489b2ca97ef4f696cefc32e002eb8767c447b0 /indra/llcorehttp/_httpreadyqueue.h
parent3f032e33f2b2f929b229cf4d358b9c9d297856b8 (diff)
Cleaning up comments, names, miscellany.
Diffstat (limited to 'indra/llcorehttp/_httpreadyqueue.h')
-rw-r--r--indra/llcorehttp/_httpreadyqueue.h6
1 files changed, 6 insertions, 0 deletions
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.