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. If you have a question regarding the site, please go to http://meta.stackoverflow.com
0
votes
1answer
15 views
stack overflow on call to WeakHashMap when using xstream in android app
Am trying to workout how to use xstream to send an xml encoding of an object to a servlet (A few different posts on here suggested to use xstream rather than using standard serialization).
My ...
0
votes
0answers
17 views
How to find the tags which has highest number of questions in a time period in StackOverflow
I am trying to build a graph for trending languages ,tags in stackoverfloe ,, is there any way to find the find the tags which has highest number of questions in a time period in StackOverflow using ...
3
votes
1answer
78 views
How to diagnose Stack Overflow in haskell
I've written a haskell program, which does stuff on 10000 things. Now, just for the hell of it I ran it with a million and got a stack space overflow.
I am aware of the foldr/foldl issue and the ...
0
votes
1answer
31 views
Stackoverflow Editor is openSource and Java Integration?
I have one question in mind ,Is Stackoverflow Editor is open source ? And if yes how can we integrate it with Java Web Application? Becuase its very simple and understandable by everyone .
0
votes
0answers
43 views
Stackoverflow vs otherforums events performance? [on hold]
As i am using Stackoverflow from couple of days i saw performance of Stackoverflow forum is best than other forums .What the technology they have used to perform action with that much speed? I know ...
-1
votes
0answers
19 views
how to lift ban from answering any topic [migrated]
Hi friends please tell me or share the knowledge, how we can lift the ban applied us by Stack over flow and stopping us to answer any Question say and not saying anything how we can lift that ban or ...
-8
votes
0answers
55 views
Blocked from answer on stackoverflow
when i was trying to enter more then 1 question within 3 minutes i was blocked from answering questions. I cannot change this, since my answer was not good enough and deleted. How can answer again? I ...
2
votes
2answers
27 views
System.Web.UI.Control.LoadRecursive() - Insufficient stack to continue executing the program safely.
I have an ASP.NET web application developed in C# and .Net v4. When you login in and leave for the page for some 15-20 minutes, I get the "Insufficient stack to continue executing the program safely." ...
0
votes
2answers
54 views
Why this stack smashing?
I got the following code(part of a log function):
/* set to 32 on purpose */
#define MAX_LOG_MSG_SZ 32
void log(const char *fmt, ...) {
....
char msg[MAX_LOG_MSG_SZ] = {0};
int nb_bytes ...
2
votes
2answers
181 views
Microsoft's implementation of std::regex
I have been working with the <regex> library (Microsoft Visual Studio 2012: Update 3), trying to use it to implement a slightly safer loading procedure for my application, and have been having a ...
1
vote
0answers
32 views
Why “ulimit -s unlimited” can de-ASLR in overflow?
I know the ulimit -s unlimited trick (to fix the address of libc) but i dont understand the fact behind,anyone could help me to make a explanation?~
thx
-3
votes
1answer
82 views
Stackoverflow on a merge sort in c# [closed]
I tried to implement a merge sort in C# and for some reason it gives me a stackoverflow exeption,I have no idea where it comes from. The error is something small i'm guessing but i can't find it
...
2
votes
2answers
42 views
How to measure stack memory in Java?
There is a single core class that is used in transaction engine. I did a test with high number of concurrent transaction which resulted in a deadly stack-overflow exception. I would like to know if ...
0
votes
2answers
40 views
Android java StackOverFlow Error
I made a custom adapter class using baseAdapter and it seems to be working just fine. BUT when I do the onItemClickMethod it returned a StackOverFlowError. Here is my adapter class :
public class ...
0
votes
1answer
45 views
Would this recursive long polling technique result in a stack overflow?
I saw an example of a long polling technique on pastebin and I wondered whether the recursive nature of the design would result in a stack overflow? Sorry if this is a noob question, but I'm ...