IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 13, 2011, 10:45:16 AM (15 years ago)
Author:
eugene
Message:

psKernelAlloc now reports file & line; fix bug in psKernelTruncate; limit leak dump to 500 leaks; cleanup log formats (indent by depth, split lines with function name); add test samples for psImageCovariance

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psMemory.c

    r28401 r30595  
    626626            nleak++;
    627627
    628             if (fd != NULL) {
     628            // only print a max of 500 leaks (make this an argument)
     629            if ((nleak < 500) && (fd != NULL)) {
    629630                if (nleak == 1) {
    630631                    fprintf(fd, "# func at (file:line)  ID: X  Ref: X\n");
Note: See TracChangeset for help on using the changeset viewer.