Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in malloc

How to initialize static pointer with malloc in C?

Malloc a 2D array in C [duplicate]

Why does malloc allocate a different number of bytes than requested?

c debugging gcc malloc

How to allocate memory from specific region

c memory-management malloc

malloc()/free() in several threads crashes on Windows

do malloc/memcpy function run independently on NUMA?

c memory malloc memcpy numa

Is it vali to call free with a pointer to the first member?

c struct malloc padding free

Malloc of arrays and structs within a struct

c struct malloc realloc

Malloc vs custom allocator: Malloc has a lot of overhead. Why?

c memory malloc

Why doesn't new require a cast to the pointer even though malloc requires it?

c++ malloc new-operator

Does realloc actually shrink buffers in common implementations?

Custom malloc for lots of small, fixed size blocks?

c malloc

Taming the malloc/free beast -- tips & tricks

c malloc free

write and read string to binary file C++

c++ string file malloc

malloc an array of struct pointers vs array of structs

c arrays pointers struct malloc

Do I have to call memset after I allocated new memory using malloc

c malloc memset

Malloc function (dynamic memory allocation) resulting in an error when it is used globally

malloc() is non-reentrant but thread-safe? [duplicate]

Why does malloc(0) return a non-null address in Windows?

c memory-management malloc

How do you know how much space to allocate with malloc()?