About 10,600,000 results
Open links in new tab
  1. malloc - What is a Memory Heap? - Stack Overflow

    Feb 22, 2010 · A memory heap is a location in memory where memory may be allocated at random access. Unlike the stack where memory is allocated and released in a very defined …

  2. What and where are the stack and heap? - Stack Overflow

    Sep 17, 2008 · What are the stack and heap? Where are they located physically in a computer's memory? To what extent are they controlled by the OS or language run-time? What is their …

  3. How to interpret the result of !heap -l from Windbg

    May 21, 2018 · When I use !heap -l to find leak, one of the heap entry returned is 00000000002e73d0 on heap 0000000000270000. But when I use !heap -a …

  4. Heap Memory in C Programming - Stack Overflow

    The heap is part of your process's address space. The heap can be grown or shrunk; you manipulate it by calling brk(2) or sbrk(2). This is in fact what malloc(3) does. Allocating from …

  5. Why are two different concepts both called "heap"? [duplicate]

    Why are the runtime heap used for dynamic memory allocation in C-style languages and the data structure both called "the heap"? Is there some relation?

  6. javascript - Node.js heap out of memory - Stack Overflow

    Jul 25, 2016 · Node.js heap out of memory Asked 9 years, 3 months ago Modified 2 months ago Viewed 1.2m times

  7. java - How do I analyze a .hprof file? - Stack Overflow

    Oct 9, 2008 · $ java -agentlib:hprof=heap=sites ToBeProfiledClass HPROF Help $ java -agentlib:hprof=help The files are usually large and docs recommend JHAT for visualizing the …

  8. How is the java memory pool divided? - Stack Overflow

    The heap is the main pool of memory, accessible to the whole of the application. If there is not enough memory available to allocate for that object, the JVM attempts to reclaim some …

  9. c# - Heap class in .NET - Stack Overflow

    Possible Duplicate: Fibonacci, Binary, or Binomial heap in c#? Is there any class like heap in .NET? I need some kind of collection from which I can retrieve min. element. I just want 3 …

  10. When would I want to use a heap? - Stack Overflow

    Apr 14, 2009 · Besides the obvious answer of a Priority Queue, when would a heap be useful in my programming adventures?