Top "Callstack" questions

A stack that stores details of the functions called by a program in sequence, so that each function can return on completion to the code that called it.

What does each entry in the Jmp_buf structure hold?

I am running Ubuntu 9.10 (Karmic Koala), and I took a look at the jmp_buf structure which is simply an …

c callstack setjmp
Stack overflow exception in C# setter

This works: using System; using ConstraintSet = System.Collections.Generic.Dictionary<System.String, double>; namespace ConsoleApplication2 { class test { public …

c# setter callstack stack-overflow
Does calling setTimeout clear the callstack?

Can a stack overflow be avoided in javascript by using the setTimeout method to call a function instead of calling …

javascript settimeout callstack
confusion about function call stack

According to Wiki: the caller pushes the return address onto the stack, and the called subroutine, when it finishes, pops …

c callstack
General query about Callback functions and Threads

I have a general question about a threads and callbacks. Say for example we have a thread running continuously along …

c++ multithreading callback function-pointers callstack
switching to user stack in kernel dumps

Is there a way to switch to user mode of a particular process in a kernel dump while doing postmortem …

windbg callstack usermode
What is the difference between Call Stack and Stack Trace?

What is the difference between the terms "Call Stack" and "Stack Trace" ?

.net visual-studio stack-trace callstack
Treating Warnings as Errors

I have a php application that I have just re-factored. Unfortunately it spewing out warnings like: Warning: preg_match() expects …

php warnings callstack
Why is there a limit on the stack size?

Possible Duplicate: What and where are the stack and heap My installation of Ubuntu has a default stack size limit …

stack callstack
How to detect the point of a stack overflow

I have the following problem with my C program: Somewhere is a stack overflow. Despite compiling without optimization and with …

c linux gdb stack-overflow callstack