Changeset 4e09af2


Ignore:
Timestamp:
Aug 7, 2024, 10:19:19 AM (5 weeks ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
92a0ee8, fd0a9bf
Parents:
3b10778
Message:

update unfreed storage message from memory allocator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/heap.cfa

    r3b10778 r4e09af2  
    1010// Created On       : Tue Dec 19 21:58:35 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Apr  7 21:54:29 2024
    13 // Update Count     : 1644
     12// Last Modified On : Wed Aug  7 10:14:47 2024
     13// Update Count     : 1646
    1414//
    1515
     
    582582                        __cfaabi_bits_print_buffer( STDERR_FILENO, helpText, sizeof(helpText),
    583583                                                                                "CFA warning (UNIX pid:%ld) : program terminating with %td(%#tx) bytes of storage allocated but not freed.\n"
    584                                                                                 "Possible cause is unfreed storage allocated by the program or system/library routines called from the program.\n",
     584                                                                                "Possible cause is mismatched allocation/deallocation calls (malloc/free), direct constructor call without a direct destructor call, or system/library routines not freeing storage.\n",
    585585                                                                                (long int)getpid(), allocUnfreed, allocUnfreed ); // always print the UNIX pid
    586586                } // if
Note: See TracChangeset for help on using the changeset viewer.