diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2013-09-20 11:10:56 -0300 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2013-09-20 11:54:58 -0300 |
commit | 322dea08387167e3c3a9c9b60325ebafa264bd77 (patch) | |
tree | 7239f9202a5035c424b38196868cec5cb28b45a4 /ChangeLog | |
parent | 655673f312318a9d95b71ef9f95a59ff36b0a487 (diff) | |
download | glibc-322dea08387167e3c3a9c9b60325ebafa264bd77.tar glibc-322dea08387167e3c3a9c9b60325ebafa264bd77.tar.gz glibc-322dea08387167e3c3a9c9b60325ebafa264bd77.tar.bz2 glibc-322dea08387167e3c3a9c9b60325ebafa264bd77.zip |
Add malloc probes for sbrk and heap resizing.
for ChangeLog
* malloc/arena.c (new_heap): New memory_heap_new probe.
(grow_heap): New memory_heap_more probe.
(shrink_heap): New memory_heap_less probe.
(heap_trim): New memory_heap_free probe.
* malloc/malloc.c (sysmalloc): New memory_sbrk_more probe.
(systrim): New memory_sbrk_less probe.
* manual/probes.texi: Document them.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,13 @@ 2013-09-20 Alexandre Oliva <aoliva@redhat.com> + * malloc/arena.c (new_heap): New memory_heap_new probe. + (grow_heap): New memory_heap_more probe. + (shrink_heap): New memory_heap_less probe. + (heap_trim): New memory_heap_free probe. + * malloc/malloc.c (sysmalloc): New memory_sbrk_more probe. + (systrim): New memory_sbrk_less probe. + * manual/probes.texi: Document them. + * malloc/arena.c (arena_get_retry): Add memory_arena_retry probe. * manual/probes.texi: Document it. |