Changeset 4e09af2 for libcfa/src
- Timestamp:
- Aug 7, 2024, 10:19:19 AM (4 months ago)
- Branches:
- master
- Children:
- 92a0ee8, fd0a9bf9
- Parents:
- 3b10778
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/heap.cfa
r3b10778 r4e09af2 10 10 // Created On : Tue Dec 19 21:58:35 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Apr 7 21:54:29202413 // Update Count : 164 412 // Last Modified On : Wed Aug 7 10:14:47 2024 13 // Update Count : 1646 14 14 // 15 15 … … 582 582 __cfaabi_bits_print_buffer( STDERR_FILENO, helpText, sizeof(helpText), 583 583 "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", 585 585 (long int)getpid(), allocUnfreed, allocUnfreed ); // always print the UNIX pid 586 586 } // if
Note: See TracChangeset
for help on using the changeset viewer.