The stack-dump tag has no wiki summary.
5
votes
6answers
269 views
stack dump accessing malloc char array
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", ...
2
votes
2answers
104 views
Why is this Hotspot JVM option not the default? -XX:+PrintConcurrentLocks
By default, with Hotspot, a CTRL-Break thread dump will not list what threads are holding java.lang.concurrent locks. And I understand that with these locks, Hotspot cannot have information about at ...
0
votes
2answers
41 views
How to analyze core dump
After application[rtorrent] crashed, it produced core file, 250MB.
Caught Segmentation fault, dumping stack:B] [Port: 58940][U 0/0] [D 0/10] [H 1/32] [S 72/75/768] [F 0/128]
Stack dump not enabled.
...
0
votes
1answer
222 views
How to go to main stack
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 ...