Skip to content
Snippets Groups Projects
Commit 334ce255 authored by Monty Brandenberg's avatar Monty Brandenberg
Browse files

Cleaning up comments, names, miscellany.

parent 3f032e33
No related branches found
No related tags found
No related merge requests found
/** /**
* @file httpinternal.h * @file _httpinternal.h
* @brief Implementation constants and magic numbers * @brief Implementation constants and magic numbers
* *
* $LicenseInfo:firstyear=2012&license=viewerlgpl$ * $LicenseInfo:firstyear=2012&license=viewerlgpl$
...@@ -44,7 +44,7 @@ namespace LLCore ...@@ -44,7 +44,7 @@ namespace LLCore
{ {
// Maxium number of policy classes that can be defined. // 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; const int POLICY_CLASS_LIMIT = 1;
// Debug/informational tracing. Used both // Debug/informational tracing. Used both
......
...@@ -45,6 +45,12 @@ namespace LLCore ...@@ -45,6 +45,12 @@ namespace LLCore
/// important of those rules is that any iterator becomes invalid /// important of those rules is that any iterator becomes invalid
/// on element erasure. So pay attention. /// 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 /// Threading: not thread-safe. Expected to be used entirely by
/// a single thread, typically a worker thread of some sort. /// a single thread, typically a worker thread of some sort.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment