Changeset 218 for trunk/src/helpers/procstat.c
- Timestamp:
- Aug 31, 2002, 4:19:50 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/procstat.c
r217 r218 558 558 * 559 559 *@@added V0.9.2 (2000-03-05) [umoeller] 560 *@@changed V0.9.21 (2002-08-16) [pr]: optimized 560 561 */ 561 562 … … 566 567 while (pProcThis && pProcThis->ulRecType == 1) 567 568 { 568 int i;569 569 PQTHREAD32 t = pProcThis->pThreads; 570 570 PQMODULE32 pModule; … … 589 589 // the next process block comes after the 590 590 // threads 591 for (i=0; 592 i < pProcThis->usThreadCount; 593 i++,t++) 594 ; 595 591 t += pProcThis->usThreadCount; 596 592 pProcThis = (PQPROCESS32)t; 597 593 } … … 607 603 * 608 604 *@@added V0.9.21 (2002-08-12) [umoeller] 605 *@@changed V0.9.21 (2002-08-16) [pr]: optimized 609 606 */ 610 607 … … 615 612 while (pProcThis && pProcThis->ulRecType == 1) 616 613 { 617 int i;618 614 PQTHREAD32 t = pProcThis->pThreads; 619 615 … … 624 620 // the next process block comes after the 625 621 // threads 626 for (i=0; 627 i < pProcThis->usThreadCount; 628 i++, t++) 629 ; 630 622 t += pProcThis->usThreadCount; 631 623 pProcThis = (PQPROCESS32)t; 632 624 }
Note:
See TracChangeset
for help on using the changeset viewer.