[Lldb-commits] [lldb] r369706 - Revert [heap.py] Add missing declaration for malloc_get_all_zones

Vedant Kumar via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 22 14:01:45 PDT 2019


Author: vedantk
Date: Thu Aug 22 14:01:45 2019
New Revision: 369706

URL: http://llvm.org/viewvc/llvm-project?rev=369706&view=rev
Log:
Revert [heap.py] Add missing declaration for malloc_get_all_zones

This reverts r369684 (git commit cc62e38d258f414c196b566374c606e83a85a034)

Adding a declaration doesn't appear to be a sufficient fix.

Modified:
    lldb/trunk/examples/darwin/heap_find/heap.py

Modified: lldb/trunk/examples/darwin/heap_find/heap.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/darwin/heap_find/heap.py?rev=369706&r1=369705&r2=369706&view=diff
==============================================================================
--- lldb/trunk/examples/darwin/heap_find/heap.py (original)
+++ lldb/trunk/examples/darwin/heap_find/heap.py Thu Aug 22 14:01:45 2019
@@ -129,7 +129,6 @@ typedef struct malloc_zone_t {
     void *reserved1[12];
     struct malloc_introspection_t	*introspect;
 } malloc_zone_t;
-kern_return_t malloc_get_all_zones(task_t task, memory_reader_t reader, vm_address_t **addresses, unsigned *count);
 memory_reader_t task_peek = [](task_t task, vm_address_t remote_address, vm_size_t size, void **local_memory) -> kern_return_t {
     *local_memory = (void*) remote_address;
     return KERN_SUCCESS;




More information about the lldb-commits mailing list