[NTOS]: Fix comments only, no code changes.

svn path=/trunk/; revision=70374
This commit is contained in:
Hermès Bélusca-Maïto 2015-12-16 23:53:51 +00:00
parent b555d0cffe
commit b34568e9f6

View file

@ -141,7 +141,7 @@ ExpWorkerThreadEntryPoint(IN PVOID Context)
ProcessLoop:
for (;;)
{
/* Wait for Something to Happen on the Queue */
/* Wait for something to happen on the queue */
QueueEntry = KeRemoveQueue(&WorkQueue->WorkerQueue,
WaitMode,
TimeoutPointer);
@ -230,7 +230,7 @@ ProcessLoop:
*
* The ExpCreateWorkerThread routine creates a new worker thread for the
* specified queue.
**
*
* @param QueueType
* Type of the queue to use for this thread. Valid values are:
* - DelayedWorkQueue
@ -314,18 +314,18 @@ ExpCreateWorkerThread(WORK_QUEUE_TYPE WorkQueueType,
}
/*++
* @name ExpCheckDynamicThreadCount
* @name ExpDetectWorkerThreadDeadlock
*
* The ExpCheckDynamicThreadCount routine checks every queue and creates a
* dynamic thread if the queue seems to be deadlocked.
* The ExpDetectWorkerThreadDeadlock routine checks every queue and creates
* a dynamic thread if the queue seems to be deadlocked.
*
* @param None
*
* @return None.
*
* @remarks The algorithm for deciding if a new thread must be created is
* based on wether the queue has processed no new items in the last
* second, and new items are still enqueued.
* @remarks The algorithm for deciding if a new thread must be created is based
* on whether the queue has processed no new items in the last second,
* and new items are still enqueued.
*
*--*/
VOID
@ -362,8 +362,8 @@ ExpDetectWorkerThreadDeadlock(VOID)
/*++
* @name ExpCheckDynamicThreadCount
*
* The ExpCheckDynamicThreadCount routine checks every queue and creates a
* dynamic thread if the queue requires one.
* The ExpCheckDynamicThreadCount routine checks every queue and creates
* a dynamic thread if the queue requires one.
*
* @param None
*