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 trying to execute code via function pointers stored on the stack using alloca.
Here's a tooth-pick code which results in a similar segmentation fault:
#include <stdlib.h>
#include <stdio.h>
typedef void* (*foo)(void*);
typedef struct task
{
foo f;
} task;
void *blah(void* v)
{
printf("addr:%p\n", &v);
return v;
}
int main()
{
void *queue[10];
task *t = (task*) alloca (sizeof(task));
// No null check, excuse me!
t->f = blah;
queue[0] = (void*)t;
char string[10] = "Bingo!";
char *c = &string[0];
task *tnew = (task*)&queue[0];
tnew->f((void*)c);
return 0;
}
When I execute the above code I get a segmentation fault at the tnew->f() line. GDB backtrace did not help me much.
Kindly explain the error in the above code.. I am using alloca for the first time.
Thank you very much!
mallocresults in the same error. – Billy ONeal Jul 30 '11 at 1:53allocato allocate space for a struct. You can just create an object on the stack,task T; task* t = &T;would do it. – Bo Persson Jul 30 '11 at 7:18allocaif you don't have to. It is non-standard and non-portable and its behavior of reserving stack memory regardless of scope is a source of many surprises. Modern C, aka C99, has variable length arrays (VLA) that are designed to replace it. But as Bo says, never use such a thing to create just one variable on the stack. There is really no point in this. – Jens Gustedt Jul 30 '11 at 7:39