Changeset 238 for trunk/src/helpers/procstat.c
- Timestamp:
- Dec 24, 2002, 8:44:35 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/procstat.c
r229 r238 94 94 95 95 if (!ppps) 96 return (ERROR_INVALID_PARAMETER);96 return ERROR_INVALID_PARAMETER; 97 97 98 98 // changed allocation V0.9.10 (2001-04-08) [umoeller]: … … 187 187 } 188 188 189 return (pReturn);189 return pReturn; 190 190 } 191 191 … … 222 222 } 223 223 224 return (pReturn);224 return pReturn; 225 225 } 226 226 … … 300 300 } 301 301 302 return (rc);302 return rc; 303 303 } 304 304 … … 349 349 } 350 350 351 return (ulrc);351 return ulrc; 352 352 } 353 353 … … 394 394 } 395 395 396 return (ulrc);396 return ulrc; 397 397 } 398 398 … … 483 483 if (prc16QueryThreadInfo(pps, usPID, usTID, &prct)) 484 484 ulrc = prct.ulPriority; 485 return (ulrc);485 return ulrc; 486 486 } 487 487 … … 533 533 534 534 if (arc == NO_ERROR) 535 return ( (PQTOPLEVEL32)pBuf);535 return (PQTOPLEVEL32)pBuf; 536 536 else 537 537 DosFreeMem(pBuf); … … 594 594 595 595 if (pProcThis->ulRecType == 1) 596 return (pProcThis);597 else 598 596 return pProcThis; 597 598 return NULL; 599 599 } 600 600 … … 649 649 { 650 650 if (i == usSemID) 651 return (pSemThis);651 return pSemThis; 652 652 653 653 i++; … … 678 678 { 679 679 if (pSemThis->usIndex == usSemID) 680 return (pSemThis);680 return pSemThis; 681 681 682 682 pSemThis = pSemThis->pNext; … … 704 704 { 705 705 if (pShrMem->usHandle == usShrMemID) 706 return (pShrMem);706 return pShrMem; 707 707 pShrMem = pShrMem->pNext; 708 708 } … … 759 759 { 760 760 if (pFile->paFiles[ul].usSFN == usFileID) 761 return (pFile);761 return pFile; 762 762 } 763 763
Note:
See TracChangeset
for help on using the changeset viewer.