call stack
Look at other dictionaries:
Call stack — In computer science, a call stack is a stack data structure that stores information about the active subroutines of a computer program. This kind of stack is also known as an execution stack, control stack, run time stack, or machine stack, and… … Wikipedia
call stack — kreipinių dėklas statusas T sritis informatika apibrėžtis ↑Dėklas (1), į kurį dedami ↑kreipiniai (grįžimo adresas, kita informacija) kreipimosi į ↑paprogrames metu. Kai grįžtama iš paprogramės, kreipinys iš dėklo pašalinamas. Taip dėkle išsaugoma … Enciklopedinis kompiuterijos žodynas
Call stack overflow — Dépassement de pile En informatique, un dépassement de pile ou débordement de pile (en anglais, stack overflow) est un bogue causé par un processus qui, lors de l écriture dans une pile, écrit à l extérieur de l espace alloué à la pile, écrasant… … Wikipédia en Français
Call stack — … Википедия
Stack buffer overflow — In software, a stack buffer overflow occurs when a program writes to a memory address on the program s call stack outside of the intended data structure; usually a fixed length buffer.cite web last = Fithen first = William L coauthors = Seacord,… … Wikipedia
Stack overflow — In software, a stack overflow occurs when too much memory is used on the call stack. In many programming languages the call stack contains a limited amount of memory, usually determined at the start of the program. The size of the call stack… … Wikipedia
Stack (data structure) — In computer science, a stack is an abstract data type and data structure based on the principle of Last In First Out (LIFO) . Stacks are used extensively at every level of a modern computer system. For example, a modern PC uses stacks at the… … Wikipedia
Stack register — A stack register is a computer central processor register whose purpose is to keep track of a call stack. On an accumulator based architecture machine, this may be a dedicated register such as SP on an Intel x86 machine. On a general register… … Wikipedia
Call graph — A call graph (also known as a call multigraph) is a directed graph that represents calling relationships between subroutines in a computer program. Specifically, each node represents a procedure and each edge (f,g) indicates that procedure f… … Wikipedia
Stack-oriented programming language — A stack oriented programming language is one that relies on a stack machine model for passing parameters. Several programming languages fit this description, notably Forth and PostScript, and also many Assembly languages (but on a much lower… … Wikipedia