mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[NTOS]: Fix comments only, no code changes.
svn path=/trunk/; revision=70374
This commit is contained in:
parent
b555d0cffe
commit
b34568e9f6
1 changed files with 10 additions and 10 deletions
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue