3
votes
7answers
188 views
Why can I “fake” the stack trace of an exception in Java?
If I run the following test, it fails:
public class CrazyExceptions {
private Exception exception;
@Before
public void setUp(){
exception = new Exception();
…
0
votes
5answers
185 views
How to get the name of the calling class in Java?
I would like some help on this matter,
Example:
public class A {
private void foo() {
//Who Invoked me
}
}
public class B extends A { }
public class C ex …
2
votes
1answer
35 views
Web Based Stack Dump Tool for ASP.NET Using Mdbg?
There is a great presentation by Dan Farino, Chief Systems Architect at MySpace.com, showcasing a web-based stack dump tool that catalogues all threads running in a given process ( …
1
vote
1answer
51 views
Switching between multiple stacks in gdb 6.3
Hello!
There are two stacks in the program: one is created by OS and the second is created by program itself to run some code with it.
When the program crashes in the second stack …
0
votes
0answers
124 views
Why is unmanaged exception call stack is missing relevant information when caught in managed code?
I have an application that consists of managed and unmanaged
DLLs. My managed DLL is a C++/CLR DLL that is used to access
a native C++ DLL. When code crosses from managed to native …
0
votes
3answers
87 views
static methods and the call stack in IIS/asp.net
Theoretical question.
If you have 100 separate requests coming to an aspx web page that calls the static method below.
public static GeocodeResult GeocodeQuery(string query)
…
1
vote
1answer
12 views
How can I get the stack trace in Specman?
Is there any way to get the stack trace in Specman? I patched the functions that force signals to tell me when signals are forced. I want to be able to tell where the forcing ori …
1
vote
3answers
117 views
Why don’t Minidumps give good call stacks?
I've used minidumps on many game projects over the years and they seem to have about a 50% chance of having a valid call stack. What can I do to make them have better call stacks?
…
0
votes
2answers
90 views
Tail calls in architectures without a call stack.
My answer for a recent question about GOTOs and tail recursion was phrased in terms of a call stack. I'm worried that it wasn't sufficiently general, so I ask you: how is the notio …
1
vote
2answers
88 views
The cdecl calling convention
From:
http://en.wikipedia.org/wiki/X86%5Fcalling%5Fconventions
push c
push b
push a
call function_name
add esp, 12 ;Stack clearing
mov x, eax
Why do we need to explicitly add 1 …
0
votes
1answer
43 views
Are event in tinyos signaled inside the stack?
I wanted to ask something that I think is not clearly specified in the tinyos2 programming manual. When a command or task signals an interface event are the wired functions called …
2
votes
4answers
192 views
Who is responsible for cleanup?
Hi I wish to know which one is responsible for cleanup of the stack
suppose you have a function fun lets say like this :-
var = fun(int x, int y, float z, char x);
when fun wi …
1
vote
1answer
80 views
What does a call stack with exception handling “look” like?
Im curious about the order in which exception handling stack frames are pushed onto the call stack in say C#. If i have a method:
private void MyMethod() {
try {
DoSomething …
0
votes
2answers
190 views
Efficient way to determine whether a particular function is on the stack in Python
For debugging, it is often useful to tell if a particular function is higher up on the call stack. For example, we often only want to run debugging code when a certain function cal …
1
vote
2answers
76 views
“[Lightweight Function]” in the call stack
I'm debugging a program (VS2008), and I was stepping through lines of code. I came across one line where a delegate function was being called, and I tried to step into it. However, …
