Tagged Questions

17
votes
5answers
9k 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
5answers
275 views

Does any operating system implement buffering for malloc()?

A lot of c/malloc()'s in a for/while/do can consume a lot of time so I am curious if any operating system buffers memory for fast mallocs. I have been pondering if I could speed up malloc's by ...
7
votes
7answers
1k views

calloc — Usefulness of zeroing out memory

What is the advantage of zeroing out memory (i.e. calloc over malloc)? Won't you change the value to something else anyways? -Chris
6
votes
3answers
1k views

Valgrind says “stack allocation,” I say “heap allocation”

I am trying to trace a segfault with valgrind. I get the following message from valgrind: ==3683== Conditional jump or move depends on uninitialised value(s) ==3683== at 0x4C277C5: ...
5
votes
4answers
2k views

calloc v/s malloc and time efficiency

I've read with interest the post C difference between malloc and calloc. I'm using malloc in my code and would like to know what difference I'll have using calloc instead. My present (pseudo)code ...
4
votes
5answers
880 views

I'm very confused about malloc() and calloc() on C

I've always programmed in Java, which is probably why I'm so confused about this: In Java I declare a pointer: int[] array and initialize it or assign it some memory: int[] array = {0,1,0} int[] ...
4
votes
4answers
1k views

C - calloc() v. malloc() [closed]

Possible Duplicate: c difference between malloc and calloc Please explain the significance of this statement, Another difference between the malloc() and calloc() functions is that ...
3
votes
4answers
461 views

preferring malloc over calloc [closed]

Possible Duplicate: c difference between malloc and calloc Is there any situation where you would prefer malloc over calloc. i know both malloc and calloc allocate memory dynamically and ...
2
votes
3answers
85 views

How to malloc “MyDef ** t” to a specific length, instead of “MyDef * t[5]” in C

A struct like the following works fine, I can use t after calling malloc(sizeof(mystruct)): struct mystruct { MyDef *t[5]; }; I want to be able to dynamically set the length of the array of MyDef, ...
2
votes
2answers
389 views

How to initialise a pointer to pointer struct in C?

I have a struct which is a node, and another which is a list of these nodes. In the list struct, its an array of nodes, but instead of an array, it's a pointer to pointer with a size integer: typedef ...
1
vote
1answer
90 views

calloc returns success when malloc fails

Is there a scenario where malloc fails, while calloc returns success. Suppose i give malloc(20) and calloc(4*5), does there exist any scenario where malloc could fail and calloc succeeds. If so what ...
1
vote
1answer
52 views

Do NSThread have same memory privileges as main thread?

I'm using NSOperationQueue to manage a phase of an iOS application which is quite long so I would like to manage it asynchronously. Inside that phase I allocate big arrays in C by using directly ...
1
vote
2answers
186 views

C access violation after using calloc

Note: C is Microsoft C Compiler. I'm having trouble with the following code. *Roomsize = (int*)calloc(sizeof(int),sched->numberOfRooms); roomIndex = 0; for(roomIndex=0; roomIndex< ...
1
vote
1answer
260 views

very large memory allocation in 64-bit linux

I am trying to allocate a single very large piece of memory (>2.5gb) on a centos 64-bit linux. The hardware has more than 16gb physical memory. However, when I use malloc or calloc, they return null. ...
1
vote
6answers
388 views

When to free memory inside a C code?

When I alloc memory outside a while loop for example, is it okay to free it inside it ? Are these two codes equivalent ? int* memory = NULL; memory = malloc(sizeof(int)); if (memory != NULL) { ...
0
votes
0answers
49 views

Is it possible to have a single C (shared) library with multiple memory mgmt functions?

The title may not be very clear so its perhaps best to explain what I'm trying to do. I have a (C) shared library which is used by several of my applications. I now want to use the functions in my ...
0
votes
3answers
70 views

Understanding the purpose of malloc and calloc

I'm trying to get my head around C. Reading through K&R, I am flicking back and forth trying to find where it states the situations I should obtain blocks of memory dynamically. For example, I ...
0
votes
2answers
62 views

Correct memory allocation for a struct

Having a struct defined in a such way, I need to allocate memory typedef struct string_collection { char **c; size_t current, allocated; } TSC, *ASC; So I came with this code, is it right ...
0
votes
1answer
52 views

explaination of glibc calloc implementation i.e public_cALLOc( )

in glibc malloc.c for calloc() (precisely, public_cALLOc()) implementation, when it tries to 0 out the memory it is doing in two ways, if the number of bytes are greater than 36 then straight away ...
0
votes
4answers
83 views

Manual allocation in a stringbuffer object

For a small to-be-embedded application, I wrote a few functions + struct that work as String Buffer (similar to std::stringstream in C++). While the code as such works fine, There are a few ...
0
votes
2answers
522 views

initializing a data structure in C to manage a pool of memory

i am writing a simple function for a library, that will take in as a parameter the size of memory to be managed by my other functions. i have a data structure that holds the information of this ...
0
votes
7answers
343 views

Difference in uses between malloc and calloc

gcc 4.5.1 c89 I have written this source code for my better understanding of malloc and calloc. I understand, but just have a few questions. dev = malloc(number * sizeof *devices); is equal to ...
0
votes
5answers
409 views

free() function without malloc or calloc

quick question Can you use the free() function without having to prior call a malloc ?? ei. void someFunc( void ) { char str[6] = {"Hello"}; //some processing here .... free(str); } I ...
0
votes
2answers
498 views

Initializing array inside struct - C?

Seem to have a memory allocation problem and think it's because in my struct, there is a pointer to an array of another struct. However, I'm not initializing this array and not sure how: typedef ...
-1
votes
2answers
63 views

calloc, malloc and dynamic struct allocation

I am trying to dynamically allocate an array of structures in c so that I can refer to them the same as if I had done a static declaration. I understand that calloc() does the additional step of ...
-2
votes
3answers
134 views

What's the best method to free memory?

I'm working on ANSI C. I have a string object which created with array of char.. I think the object make a memory leak.. when I run my program about five minutes (maybe almost 10000 iteration) my ...