Tagged Questions
A stack overflow occurs when too much memory is used on the call stack. NOTE: Do not use this tag to refer to the Stack Overflow website. Use the "stackoverflow.com" tag.
28
votes
7answers
45k views
What is a stack overflow error?
I'm a complete beginner writing Breakout (the game) in Java. All was going well until I started to get a stack overflow error in the late game. Unfortunately I know that without actually putting the ...
22
votes
5answers
556 views
At what moment is memory typically allocated for local variables in C++?
I'm debugging a rather weird stack overflow supposedly caused by allocating too large variables on stack and I'd like to clarify the following.
Suppose I have the following function:
void function()
...
21
votes
2answers
858 views
F# vs OCaml: Stack overflow
I recently found a presentation about F# for Python programmers, and after watching it, decided to implement a solution to the "ant puzzle" on my own.
There is an ant which can walk around on a ...
17
votes
4answers
3k views
How to debug: w3wp.exe process was terminated due to a stack overflow (works on one machine but not another)
The problem
I have an ASP.NET 4.0 application that crashes with a stack overflow on one computer, but not another. It runs fine on my development environment. When I move the site to the production ...
17
votes
10answers
7k views
C# catch a stack overflow exception
I got a recursive call to a methode that throw a stack overflow exception. The first call is surrounded by a try catch block but the exception is not caught.
Do the stack overflow exception behave ...
17
votes
3answers
1k views
Avoiding stack overflow (with F# infinite sequences of sequences)
I have this "learning code" I wrote for the morris seq in f# that suffers from stack overflow that I don't know how to avoid. "morris" returns an infinite sequence of "see and say" sequences (i.e., ...
14
votes
3answers
293 views
Stack overflow in .NET sends IIS to 100% CPU usage - why no StackOverflowException?
I had some code in an ASP.NET application running on Server 2008 R2 + IIS 7.5. Whenever I loaded a particular page, it would hang forever and send IIS to 100% CPU usage. I eventually tracked down the ...
14
votes
3answers
260 views
Special PHP Errors
How can PHP cause memory leaks, buffer overflows, stack overflows and any other errors of such kind? Can PHP even cause such errors?
14
votes
8answers
2k views
What is the difference between a stack overflow and buffer overflow?
What is different between stack overflow and buffer overflow in Programming ?
13
votes
1answer
389 views
Why does this simple use of the State monad cause a stack overflow?
I was playing around with the State monad, and I don't know what's causing the stack overflow in this simple piece of code.
import Control.Monad.State.Lazy
tick :: State Int Int
tick = do n <- ...
13
votes
5answers
4k views
C# - Entity Framework - An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll
An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll
Make sure you do not have an infinite loop or infinite recursion.
The below code is called on a success ...
12
votes
6answers
523 views
C#: How to test for StackOverflowException
Say you have a method that could potentially get stuck in an endless method-call loop and crash with a StackOverflowException. For example my naive RecursiveSelect method mentioned in this question.
...
11
votes
5answers
1k views
Stack overflow in OCaml and F# but not in Haskell
I've been comparing for fun different languages for speed in execution of the following program:
for i from 1 to 1000000 sum the product i*(sqrt i)
One of my implementations (not the only one) is ...
11
votes
5answers
21k views
Java stack overflow error - how to increase the stack size in Eclipse?
I am running a program that I've written in Java in Eclipse. The program has a very deep level of recursion for very large inputs. For smaller inputs the program runs fine however when large inputs ...
10
votes
3answers
316 views
How does one implement a “stackless” interpreted language?
I am making my own Lisp-like interpreted language, and I want to do tail call optimization. I want to free my interpreter from the C stack so I can manage my own jumps from function to function and my ...
10
votes
8answers
2k views
How Does A Stack Overflow Occur and How Do You Prevent It?
How does a stack overflow occurs and what are the best ways to make sure it doesn't happen, or ways to prevent one - particularly on web servers, but other examples would be interesting, as well.
9
votes
1answer
258 views
Haskell: repeat a function a large number of times without stackoverflow
As a newbie to Haskell I am trying to iterate a function (e.g., the logistic map) a large number of times. In an imperative language this would be a simple loop, however in Haskell I end up with stack ...
9
votes
1answer
156 views
answering/asking SO questions from emacs.?
Right now I am using gnus to read SO questions by subscribing interested tags from gwene.
I can only see/read the Question and not the answers.
Is there a plugin to answer/ask SO question. Of course ...
9
votes
4answers
270 views
Why would a C++ program allocate more memory for local variables than it would need in the worst case?
Inspired by this question.
Apparently in the following code:
#include <Windows.h>
int _tmain(int argc, _TCHAR* argv[])
{
if( GetTickCount() > 1 ) {
char buffer[500 * 1024];
...
9
votes
2answers
3k views
How do I use OData Expand like a SQL join?
I'm trying to figure out how to accomplish the equivalent of:
select *
from Users u
inner join Comments c on c.UserId = u.Id
where Id = 1569
(table aliases for better sql readability)
...on the ...
9
votes
10answers
5k views
Using Recursion in C#
Are there any general rules when using recursion on how to avoid stackoverflows?
8
votes
4answers
137 views
Why does compiling this code cause a compiler stack overflow?
interface Pong<T> {}
class Ping<T> implements Pong<Pong<? super Ping<Ping<T>>>> {
static void Ping() {
Pong<? super Ping<Long>> Ping = new ...
8
votes
2answers
179 views
Catching stack overflow
What's the best way to catch stack overflow in C?
More specifically:
A C program contains an interpreter for a scripting language.
Scripts are not trusted, and may contain infinite recursion bugs. ...
8
votes
5answers
3k views
rake aborted! stack level too deep
Am using Ruby version 1.9.1 on windows vista. Am getting the rake aborted error for any rake commands am using. This does not happen in all my app folder. Its happening only on a specific app folder.
...
8
votes
2answers
2k views
Queue-Based Background Processing in ASP.NET MVC Web Application
How can I implement background processing queues in my ASP.NET MVC web app? While most data changes, updates etc. need to be visible immediately, there are other updates that don't need real time ...
8
votes
3answers
656 views
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 debugger symbols, the program exits with this output (within or outside ...
7
votes
2answers
192 views
Stack overflow in CUDA
I have a huge problem with the code I am programming.
I am not an expert, and i asked many people before coming here. corrected a lot of things, too. So, I guess I am ready to show you the code and ...
7
votes
3answers
126 views
How can I reproduce EXCEPTION_STACK_OVERFLOW error in Java
How can I reproduce EXCEPTION_STACK_OVERFLOW error in Java.
PS: I am not talking of StackOverflowError Error in Java which gracefully shuts the JVM. I am talking of EXCEPTION_STACK_OVERFLOW in ...
7
votes
7answers
1k views
Recursive main() - why does it segfault?
Why does the following program segfault?
int main() { main(); }
Even though it is a recursion that does not end and is therefore invalid by definition, I don't see why it segfaults (gcc 4.4.3 and ...
7
votes
6answers
209 views
C# Editor and Compiler Preference
For those of you that are quick to answer some questions, with code snippets. I must say that I have been beaten to the punch a few times because loading up Visual Studio, File -> New Project... does ...
7
votes
6answers
514 views
How do I avoid changing the Stack Size AND avoid getting a Stack Overflow in C#
I've been trying to find an answer to this question for a few hours now on the web and on this site, and I'm not quite there.
I understand that .NET allocates 1MB to apps, and that it's best to avoid ...
7
votes
3answers
2k views
Stack Overflow Exploit in C
Hey there guys, the question is actually about stack overflows in C.
I have an assigment that I can not get done for the life of me, i've looked at everything in the gdb and I just cant figure it.
...
6
votes
2answers
71 views
“ERROR - C stack overflow” in Haskell using Hugs
I'm working on parsing a CSV file into a CSV type which is a list of Record which is a list of Field, which are just Strings. After inserting a new row and then trying to access the csv I get the c ...
6
votes
2answers
102 views
Tracking down a stackoverflow error in an windows service
I made a small tweak to one of my windows services and than I ran it and got,
Description: The process was terminated due to stack overflow.
So i went back to an old version and ran it and i'm still ...
6
votes
2answers
231 views
Implementing an overflow-free system stack in ANSI C
I was just reading about how Google Go makes each thread with a reduced stack size by default, and then links to new stacks if an overflow would occur ( see page 16 in here ). I was wondering the best ...
6
votes
1answer
551 views
return to libc - problem
I'm having problems with return-to-libc exploit. The problem is that nothing happens, but no segmentation fault (and yes I'm actually overflowing the stack).
This is my program:
int main(int argc, ...
6
votes
5answers
250 views
Is a stack overflow a security hole?
Note: this question relates to stack overflows (think infinite recursion), NOT buffer overflows.
If I write a program that is correct, but it accepts an input from the Internet that determines the ...
6
votes
9answers
190 views
how can i get catch the root of a stackoverflow exception on recursive code
I have the following recursive code and i am getting a stackoverflow exception. I can't figure out the root cause because once i get the exception,i dont get the full call stack in Visual studio.
...
6
votes
4answers
935 views
How to change stack size for a .NET program?
I have a program that does recursive calls for 2 billion times and the stack overflow. I make changes, and then it still need 40K resursive calls. So I need probably serveral MB stack memory. I heard ...
6
votes
10answers
2k views
Stack overflow when calculating the 10,001st prime number in Java
I am doing problem 7 of Project Euler. What I am supposed to do is calculate the 10,001st prime number. (A prime number is an integer greater than one that is only divisible by itself and one.)
Here ...
6
votes
5answers
816 views
live debugging a stack overflow
I have a managed code Windows Service application that is crashing occasionally in production due to a managed StackOverFlowException. I know this because I've run adplus in crash mode and analyzed ...
6
votes
6answers
3k views
StackOverflowError when serializing an object in Java
I am writing an application in Java using Swing. I am trying to implement functionality to save and load simulation states for at simulation i am running. The entire simulation is kept as an object, ...
6
votes
4answers
2k views
OpenID Over SSL with self signed certificate
I setup my own open id provider on my personal server, and added a redirect to https in my apache config file. When not using a secure connection (when I disable the redirect) I can log in fine, but ...
5
votes
2answers
112 views
java.lang.StackOverflowError in clojure tail recursion
I encountered the StackOverflowError for the following code:
(defn recursive-reverse
([coll] (recursive-reverse [coll nil]))
([coll acc]
(if (= coll '()) acc
(recur (rest coll) (cons ...
5
votes
3answers
114 views
save an object with a bidirectional relationship in mongodb using official c# driver
I have two class like this:
public Class Company
{
public IList<Employee> Employees;
}
public Class Employee
{
public Company WorkPlace;
}
when I want to save an object of class ...
5
votes
1answer
195 views
How to avoid stack overflow in Haskell?
Haskell does not support cycling for computation, instead it offers to use recursion algorithms. But this approach leads to growing of stack, and even stack overflow. I believe there should be ...
5
votes
3answers
209 views
error refreshing JPA Entity
I have the following domain model
Currency ----< Price >---- Product
Or in English
A Product has one or more Prices. Each Price is denominated in a particular Currency.
Price has a ...
5
votes
3answers
334 views
How to avoid stack space overflows?
I've been a bit surprised by GHC throwing stack overflows if I'd need to get value of large list containing memory intensive elements.
I did expected GHC has TCO so I'll never meet such situations.
...
5
votes
2answers
251 views
Stackoverflow and function pointers
I'm quite lost on this one and I hope someone here could help.
My application consists of hundreds of functions evaluating numerical code (source is in the 5MB range each) and I manage the functions ...
5
votes
3answers
269 views
Haskell Stack Overflow
I'm writing a genetic algorithm to generate the string "helloworld". But the evolve function creates a stack overflow when n is 10,000 or more.
module Genetics where
import Data.List (sortBy)
import ...