Reputation: 609
Recently I was reading a book "Under the hood of .NET memory management" the author mentioned process heap few times and written that he will talk about it in the last chapters. Unfortunately there was nothing about Process Heap there )
Can anybody advice some books or materials to read on it ?
Thanks.
Upvotes: 1
Views: 3342
Reputation: 177
a heap is an area of pre-reserved computer main storage ( memory ) that a program process can use to store data in some variable amount that won't be known until the program is running. For example, a program may accept different amounts of input from one or more users for processing and then do the processing on all the input data at once.
Upvotes: 1