Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in memory-management

How does a stack-allocated vector expand in c++?

placement new equivalent in C

c memory-management

What C++ STL class should I use to reduce fragmentation caused by lots of small allocations?

Allocating and freeing memory in a loop in C

Is std::unique_ptr the wrong tool to allocate memory for an array?

How much memory was actually allocated from heap for an object?

Safely moving a C++ object

Incorrect decrement of the reference count of an object that is not owned at this point by the caller

Objective C: Releasing int/float properties

How to free c++ memory vector<int> * arr?

Are arrays variable-length by default on C?

c arrays memory-management gcc

Why does creating a new array throw OutOfMemoryException?

Why is &array != &array[0]?

arrays memory-management d

free won't delete memory allocated to the pointer (int array), using free twice works, why?

Third party Solution for Garbage Collection in Delphi

Most effective way to store more booleans

Difference between 3rd gen objects and large object heap

How to properly define destructor

c++ memory-management

What happens when I free memory that may not exist in Delphi?

Does this C++ class containing a variable size array use dynamic memory allocation?