I am using alternate stack to handle signals for program in C over linux.
When stack overflow occurs, my signal are delivered on to my alternate signal stack not on the main stack.
So in this situation I want to dump the main stack.... how can I ?
...
Hello,
gcc 4.4.3 c89
I have the following source code. And getting a stack dump on the printf.
char **devices;
devices = malloc(10 * sizeof(char*));
strcpy(devices[0], "smxxxx1");
printf("[ %s ]\n", devices[0]); /* Stack dump trying to print */
I am thinking that this should create an char array like this.
devices[0]
devices[1]
d...