21
votes
14answers
2k 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 …
16
votes
11answers
3k 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. …
13
votes
10answers
3k 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 …
12
votes
6answers
427 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 …
12
votes
11answers
915 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 …
11
votes
8answers
558 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 …
11
votes
6answers
1k 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 …
10
votes
18answers
804 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);
…
10
votes
8answers
668 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 …
9
votes
5answers
1k 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 …
8
votes
17answers
933 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 …
7
votes
3answers
460 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 …
7
votes
12answers
1k 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 …
7
votes
8answers
1k 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 …
7
votes
5answers
1k views
C pointer Q: malloc inside a fn call appears to be getting freed on return of fn?
I think I've got it down to the most basic case:
int main(int argc, char ** argv) {
int * arr;
foo(arr);
printf("car[3]=%d\n",arr[3]);
free (arr);
return 1;
}
void foo(int * arr) {
arr …
