Difference between revisions of "Call stack"

From Computer History Wiki
Jump to: navigation, search
m (Proper cat)
m (+cat)
 
Line 4: Line 4:
  
 
{{semi-stub}}
 
{{semi-stub}}
 +
 +
[[Category: Software Concepts]]

Latest revision as of 22:40, 16 December 2018

A call stack is the record, on the stack, of which procedure invocations are active at any given point in time. Each stack frame in the call stack will contain the procedure's arguments (if any), the return point in the calling routine, any local variables in the called procedure, etc, etc.

In programming languages which support condition handlers, the record of which conditions are currently being handled in any given routine on the call stack is usually listed in that routine's call frame, for use during the stack unwind which occurs when a condition is raised.