User Tools

Site Tools


stack_overflow

Stack overflow

Return to the Stack, Stackoverflow

Snippet from Wikipedia: Stack overflow

In software, a stack overflow occurs if the call stack pointer exceeds the stack bound. The call stack may consist of a limited amount of address space, often determined at the start of the program. The size of the call stack depends on many factors, including the programming language, machine architecture, multi-threading, and amount of available memory. When a program attempts to use more space than is available on the call stack (that is, when it attempts to access memory beyond the call stack's bounds, which is essentially a buffer overflow), the stack is said to overflow, typically resulting in a program crash.

stack_overflow.txt · Last modified: 2020/11/20 01:13 by 127.0.0.1