Tagged Questions

62
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 ...
6
votes
6answers
312 views

What's the difference between alloca(n) and char x[n]?

What is the difference between void *bytes = alloca(size); and char bytes[size]; //Or to be more precise, char x[size]; void *bytes = x; ...where size is a variable whose value is unknown at ...
4
votes
11answers
1k views

Is it possible to predict a stack overflow in C on Linux?

There are certain conditions that can cause stack overflows on an x86 Linux system: struct my_big_object[HUGE_NUMBER] on the stack. Walking through it eventually causes SIGSEGV. The alloca() ...
2
votes
2answers
232 views

Is alloca completely replaceable?

I've read quite a few places that alloca is obsolete and should not be used and Variable Length Arrays should be used instead. My question is this: Is alloca completely replaceable by variable ...
1
vote
5answers
278 views

In which cases is alloca() useful?

Why would you ever want to use alloca() when you could always allocate a fixed size buffer on the stack large enough to fit all uses? This is not a rhetorical question...
0
votes
6answers
96 views

returning alloca pointer

Does this code return an invalid reference to a variable allocated on the stack? Or what: void *f(size_t sz) { return alloca(sz); } Or is it a special case that is handled by the alloca ...
0
votes
2answers
111 views

How to use alloca to allocate C function pointers?

C is a mystery all the time! I am implementing a work-crew thread execution model in which I am trying to use alloca as a faster memory allocation option. I have a strange segmentation fault while ...
0
votes
2answers
304 views

C sprintf function that uses malloc or the stack

I've heard there is a version of sprintf(), possibly a GNU/gcc extension which either allocates its own buffer which I must free() or perhaps works using the stack like alloca(). Either method is ...