Author: hbelusca Date: Wed Dec 16 23:53:51 2015 New Revision: 70374
URL: http://svn.reactos.org/svn/reactos?rev=70374&view=rev Log: [NTOS]: Fix comments only, no code changes.
Modified: trunk/reactos/ntoskrnl/ex/work.c
Modified: trunk/reactos/ntoskrnl/ex/work.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/work.c?rev=7037... ============================================================================== --- trunk/reactos/ntoskrnl/ex/work.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/ex/work.c [iso-8859-1] Wed Dec 16 23:53:51 2015 @@ -141,7 +141,7 @@ 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 @@ * * 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 @@ }
/*++ - * @name ExpCheckDynamicThreadCount - * - * The ExpCheckDynamicThreadCount routine checks every queue and creates a - * dynamic thread if the queue seems to be deadlocked. + * @name ExpDetectWorkerThreadDeadlock + * + * 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 @@ /*++ * @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 *