0
votes
0answers
2 views
Make a tkinter window appear over all other windows
#!/usr/bin/env python
# Display window with toDisplayText and timeOut of the window.
from Tkinter import *
def showNotification(notificationTimeout, textToDisplay):
## Create main window
…
2
votes
5answers
331 views
segmentation fault on Unix - possible stack corruption
hello,
i'm looking at a core from a process running in Unix.
Usually I can work my around and root into the backtrace to try identify a memory issue.
In this case, I'm not sure how to proceed.
…
0
votes
4answers
62 views
Stacking DIVs in top of each other?
Hi,
Is it possible to stack up multiple DIVs like:
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
So that all those inner …
3
votes
4answers
332 views
Stack unwinding in case of structured exceptions
This question provides more clarity on the problem described here. I did some more investigation and found that the stack unwinding is not happening in the following piece of code:
class One
{
…
0
votes
3answers
31 views
stack overflow in swing at processKeyEvent
Hi, I'm battling an error I don't quite understand.
I have a class in Java, let's call it DownloadTable derived from a JDTable.
Each of these classes implement KeyListener.
I'd like the base class …
0
votes
2answers
50 views
How to find the current stack?
Hi, in Pharo, how can I find the currently evaluating stack?
5
votes
4answers
153 views
Can someone help spot the errors in my low lock list?
Hi all,
I've written a low lock list in C++ on windows 32-bit. I'm getting BIG improvements over using critical sections but I'd like someone to sanity check that what I'm doing is correct and there …
0
votes
1answer
16 views
iphone: send back string value with navigationcontroller pop
Hi..
This may be very basic, but I just can`t figure out what to do, so thanks for any response...
I`m using a navigationcontroller and are currently on the second level in the stack. Here i set a …
2
votes
5answers
95 views
Does the stack get unwound when a SIGABRT occurs?
Hi,
Does the stack get unwound (destructors run) when a SIGABRT occurs in C++?
Thanks.
0
votes
3answers
103 views
Stack in and out
There are n different elements,
already know the order each element is pushed in.
How many different kinds of combination can there be for the poping order?
EDIT
In fact I know there are …
0
votes
2answers
59 views
Android stack size
How can i get and change the stack size (even for the main thread) of my Android application.
3
votes
6answers
141 views
When does the stack really overflow?
Is infinite recursion the only case or can it happen for other reasons?
Doesn't the stack size grow as needed same as heap?
Sorry if this question has been asked before, would appreciate links to …
2
votes
2answers
116 views
Is there a way to push a MATLAB workspace onto a stack?
Does anyone know if it's possible to have a stack of workspaces in MATLAB? It would be very convenient, to say the least.
I need this for research. We have several scripts which interact in …
0
votes
1answer
27 views
Allocation order on the stack
I'm running this C code
#define STACKSIZE 65536
char d[STACKSIZE];
if (((int) &d[STACKSIZE-1]) - ((int) &d[0]) + 1 != STACKSIZE) {
Printf …
2
votes
5answers
172 views
Does stack size grow during runtime?
I wonder if stack size can grow like heap does during runtime?
