Tagged Questions

The malloc function performs dynamic memory allocation in C and is part of the standard library.

learn more… | top users | synonyms

60
votes
14answers
12k views

Why is alloca not considered good practice?

Alloca allocates memory from Stack rather then heap which is case in malloc. So, when I return from the routine the memory is freed. So, actually this solves my problem of freeing up of dynamically ...
55
votes
14answers
5k views

What REALLY happens when you don't free after malloc?

This has been something that has bothered me for ages now. We are all taught in school (at least, I was) that you MUST free every pointer that is allocated. I'm a bit curious, though, about the real ...
45
votes
8answers
4k views

Do I cast the result of malloc?

In this question, someone suggested in a comment that I should not cast the results of malloc. I.e. int *sieve = malloc(sizeof(int)*length); rather than int *sieve = (int ...
34
votes
11answers
26k views

How to find the cause of a malloc “double free” error?

I'm programming an application in Objective-C and I'm getting this error: MyApp(2121,0xb0185000) malloc: *** error for object 0x1068310: double free *** set a breakpoint in malloc_error_break to ...
31
votes
9answers
15k views

In what cases do I use malloc vs new?

I am new to C++ programming but have a solid background in C#, Java and PHP. I see in C++ there are multiple ways to allocate and free data and I understand that when you call malloc you should call ...
28
votes
11answers
1k views

malloc & placement new vs. new

I've been looking into this for the past few days, and so far I haven't really found anything convincing other than dogmatic arguments or appeals to tradition (i.e. "it's the C++ way!"). If I'm ...
28
votes
12answers
14k views

How can I get the size of an array from a pointer in C?

I've allocated an "array" of mystruct of size n like this: if (NULL == (p = calloc(sizeof(struct mystruct) * n,1))) { /* handle error */ } Later on, I only have access to p, and no longer have n. ...
27
votes
10answers
2k views

Why does malloc initialize the values to 0 in gcc?

Maybe it is different from platform to platform, but when I compile using gcc and run the code below, I get 0 every time in my ubuntu 11.10. #include <stdio.h> #include <stdlib.h> int ...
25
votes
21answers
4k views

Setting variable to NULL after free

In my company there is a coding rule that says, after freeing any memory, reset the variable to NULL. For example ... void some_func () { int *nPtr; nPtr = malloc (100); free (nPtr); ...
23
votes
10answers
849 views

C API design: Who should allocate?

What is the proper/preferred way to allocate memory in a C API? I can see, at first, two options: 1) Let the caller do all the (outer) memory handling: myStruct *s = malloc(sizeof(s)); ...
23
votes
10answers
7k views

Can you allocate a very large single chunk of memory ( > 4GB ) in c or c++?

With very large amounts of ram these days I was wondering, it is possible to allocate a single chunk of memory that is larger than 4GB? Or would I need to allocate a bunch of smaller chunks and handle ...
22
votes
5answers
4k views

why malloc+memset slower than calloc?

It's known that calloc differentiates itself with malloc in which it initializes the memory alloted. With calloc, the memory is set to zero. With malloc, the memory is not cleared. So in everyday ...
21
votes
8answers
1k views

If free() knows the length of my array, why can't I ask for it in my own code?

I know that it's a common convention to pass the length of dynamically allocated arrays to functions that manipulate them: void initializeAndFree(int* anArray, size_t length); int main(){ size_t ...
21
votes
6answers
2k views

what's the point in malloc(0)?

Just saw this code: artist = (char*)malloc(0); and I was wondering why would one do this?
20
votes
5answers
4k views

Multithreaded Memory Allocators for C/C++

Hi I currently have heavily multithreaded server application, and I'm shopping around for a good multithreaded memory allocator. So far I'm torn between: -Sun's umem -Google's tcmalloc -Intel's ...
17
votes
5answers
10k views

c difference between malloc and calloc

What is the difference between doing: ptr = (char **) malloc (MAXELEMS * sizeof(char *)); // OR ptr = (char **) calloc (MAXELEMS, sizeof(char*)); ??? EDT: When is it a good idea to use calloc over ...
17
votes
11answers
2k views

Should I bother detecting OOM (out of memory) errors in my C code?

I've devoted a large number of lines of C code to cleanup-labels/conditionals for failed memory allocation (indicated by the alloc family returning NULL). I was taught that this was a good practice so ...
17
votes
3answers
12k views

What is the difference between vmalloc and kmalloc?

I've googled around and found most people advocating the use of kmalloc, as you're guaranteed to get contiguous physical blocks of memory. However, it also seems as though kmalloc can fail if a ...
16
votes
11answers
926 views

Is it better to allocate memory in the power of two?

When we use malloc() to allocate memory, should we give the size which is in power of two? Or we just give the exact size that we need? Like //char *ptr= malloc( 200 ); char *ptr= malloc( 256 ...
16
votes
6answers
1k views

Does malloc lazily create the backing pages for an allocation on Linux (and other platforms)?

On Linux if I were to malloc(1024 * 1024 * 1024), what does malloc actually do? I'm sure it assigns a virtual address to the allocation (by walking the free list and creating a new mapping if ...
16
votes
6answers
2k views

What's a good C memory allocator for embedded systems?

I have an single threaded, embedded application that allocates and deallocates lots and lots of small blocks (32-64b). The perfect scenario for a cache based allocator. And although I could TRY to ...
15
votes
13answers
3k views

What are alternatives to malloc() in C?

I am writing C for an MPC 555 board and need to figure out how to allocate dynamic memory without using malloc.
15
votes
17answers
2k views

C : Why do you specify the size when using malloc?

Take the following code : int *p = malloc(2 * sizeof *p); p[0] = 10; //Using the two spaces I p[1] = 20; //allocated with malloc before. p[2] = 30; //Using another space that I didn't allocate ...
14
votes
5answers
189 views

Is it safe to allocate too little space (if you know you won't need it)?

So C99 blessed the commonly-used "flexible array member" hack to allow us to make structs that could be overallocated to suit our size requirements. I suspect it's perfectly safe on most sane ...
14
votes
6answers
10k views

Malloc thread-safe?

Is malloc re-entrant?
13
votes
4answers
10k views

Why do I get a warning everytime I use malloc?

If I use malloc in my code: int *x = malloc(sizeof(int)); I get this warning from gcc: new.c:7: warning: implicit declaration of function ‘malloc’ new.c:7: warning: incompatible implicit ...
12
votes
3answers
435 views

Why is the return value of malloc(0) implementation-defined?

ISO/IEC 9899:TC2 (i.e. the C99 standard), §7.20.3 states: If the size of the space requested is zero, the behavior is implementation-defined: either a null pointer is returned, or the behavior ...
12
votes
7answers
5k views

How do free and malloc work in C?

I'm trying to figure out what would happened if I try to free a pointer "from the middle" for example, look at the following code: char *ptr = (char*)malloc(10*sizeof(char)); for (char i=0 ; i<10 ...
12
votes
8answers
1k views

Is it necessary to multiply by sizeof( char ) when manipulating memory?

When using malloc and doing similar memory manipulation can I rely on sizeof( char ) being always 1? For example I need to allocate memory for N elements of type char. Is multiplying by sizeof( char ...
11
votes
7answers
573 views

C - Design your own free( ) function

Today, I appeared for an interview and the interviewer asked me this, Tell me the steps how will you design your own free( ) function for deallocate the allocated memory. How can ...
11
votes
3answers
519 views

Does fprintf use malloc() under the hood?

I want a minimal o-damn-malloc-just-failed handler, which writes some info to a file (probably just standard error). I would prefer to use fprintf() rather than write(), but this will fail badly if ...
11
votes
4answers
1k views

In multithreaded C/C++, does malloc/new lock the heap when allocating memory

I'm curious as to whether there is a lock on memory allocation if two threads simultaneously request to allocate memory. I am using OpenMP to do multithreading, C++ code. OS's: mostly linux, but ...
11
votes
1answer
2k views

C++ using getline() prints: pointer being freed was not allocated in XCode

I'm trying to use std:getline() but getting a strange runtime error: malloc: * error for object 0x10000a720: pointer being freed was not allocated * set a breakpoint in malloc_error_break to ...
10
votes
4answers
614 views

In a 64 bit process, will my mmap / malloc request ever be denied?

The address space for 64 bit addressing is absolutely huge. I have a program that will mmap several chunks of memory, each of the order of 100 - 500 MB. I will inevitably be remapping a few times, ...
10
votes
4answers
5k views

Why do I get a C malloc assertion failure?

I am implementing a divide and conquer polynomial algorithm so I can benchmark it against an OpenCL implementation, but I can't get malloc to work. When I run the program, it allocates a bunch of ...
10
votes
5answers
2k views

Will malloc implementations return free-ed memory back to the system?

I have a long-living application with frequent memory allocation-deallocation. Will any malloc implementation return freed memory back to the system? What is, in this respect, the behavior of: ...
10
votes
8answers
2k views

Minimizing the amount of malloc() calls improves performance?

Consider two applications: one (num. 1) that invokes malloc() many times, and the other (num. 2) that invokes malloc() few times. Both applications allocate the same amount of memory (assume 100MB). ...
10
votes
4answers
5k views

Windows malloc replacement (e.g., tcmalloc) and dynamic crt linking

A C++ program that uses several DLLs and QT should be equipped with a malloc replacement (like tcmalloc) for performance problems that can be verified to be caused by Windows malloc. With linux, there ...
10
votes
12answers
4k views

Memory Allocation/Deallocation Bottleneck?

How much of a bottleneck is memory allocation/deallocation in typical real-world programs? Answers from any type of program where performance typically matters are welcome. Are decent ...
10
votes
6answers
4k views

char x[256] vs. char* = malloc(256*sizeof(char));

Someone here recently pointed out to me in a piece of code of mine I am using char* name = malloc(256*sizeof(char)); // more code free(name); I was under the impression that this way of setting up ...
10
votes
8answers
8k views

Create a wrapper function for malloc and free in C

Hey, I am trying to create wrapper functions for free and malloc in C to help notify me of memory leaks. Does anyone know how to declare these functions so when I call malloc() and free() it will call ...
9
votes
3answers
338 views

Does realloc actually shrink buffers in common implementations?

In common implementations such as Linux/Glibc, Windows/MSVC and BSD/Mac OS X, will void *p = malloc(N + M); // assume this doesn't fail p = realloc(p, N); // nor this for N, M > 0, ...
9
votes
2answers
304 views

How can I limit memory acquired with `malloc()` without also limiting stack?

I'm trying to keep student code from running wild with allocations and dragging my test machine to a halt. I've tried setrlimit(RLIMIT_DATA, r); where r is a struct holding the limits. But ...
9
votes
6answers
784 views

How big can a malloc be in C?

I have a malloc in C that is 26901^2*sizeof(double) This got me thinking what the largest value can be here? Also, would I have any problems defining a macro to access this 2D array? #define ...
9
votes
5answers
486 views

Taming the malloc/free beast — tips & tricks

I've been using C on some projects for a master's degree but have never built production software with it. (.NET & Javascript are my bread and butter.) Obviously, the need to free() memory that ...
9
votes
4answers
736 views

Wrapping malloc - C

I am a beginner in C. While reading git's source code, I found this wrapper function around malloc. void *xmalloc(size_t size) { void *ret = malloc(size); if (!ret && !size) ...
9
votes
6answers
1k views

zero size malloc

Very simple question, I made the following program : #include <stdlib.h> int main(int argc, char ** argv) { void * ptr; ptr = malloc(0); free(ptr); } And it does not segfault on ...
9
votes
8answers
2k views

64 bit large mallocs

What are the reasons a malloc() would fail, especially in 64 bit? My specific problem is trying to malloc a huge 10GB chunk of RAM on a 64 bit system. The machine has 12GB of RAM, and 32 GB of swap. ...
9
votes
13answers
7k views

Does malloc() allocate a contiguous block of memory?

I have a piece of code written by a very old school programmer :-) . it goes something like this typedef struct ts_request { ts_request_buffer_header_def header; char ...
9
votes
4answers
3k views

Have you ever obtained a significant speedup by using boost::pool?

I've played with boost::pool a few times in places where it seemed to me I was seriously hammering the heap with a lot of object "churn". Generally I've used boost::object_pool, or boost::pool_alloc ...

1 2 3 4 5 22