A stack that stores details of the functions called by a program in sequence, so that each function can return on completion to the code that called it.

learn more… | top users | synonyms

0
votes
1answer
28 views

Way to track all funtions in Visual Studio / Nice debugger for VS

1)There is call stack provided in VS but isn't always show the sequence of functions called by user's code.It just shows functions from windows & directly the function you put break point on & ...
0
votes
0answers
31 views

PHP - is it a good idea to use the results of debug_backtrace to display different error messages?

I've got several places in my PHP application where, depending on what functions have been called before, I need to display different error messages if something goes wrong. For instance, in the ...
0
votes
3answers
30 views

JavaScript call stack

I'm new to web development and have been reading up on AJAX so that I can update a map live with new data. I'm reading an IBM article on Comet. They provide an implementation for Apache Tomcat. ...
1
vote
3answers
49 views

When we call a function recursively,does it involve a single call stack or one for each invocation of the function?

When in the following code I invoke the function fact() from main(),will this invocation of fact() involve a single call stack for fact() or since fact() is recursive in nature,it will involve a ...
-2
votes
0answers
46 views

Is it possible to implement the java method call stack with other data structure? [closed]

Is it possible to implement the java method call stack with other data structure ? If yes then what would be the most challenging part to implement? The choice of stack is because of the LIFO ...
0
votes
0answers
13 views

Can someone explain how the callstack in Eclipse works?

I am trying to debug a simple Plug-in in Eclipse. I've put breakpoints everywhere, especially in the Activator class. As soon as I start the plugin (by Debug -> Application), I get a huge ...
0
votes
0answers
79 views

Detecting Stack Corruption in C++

I'm in the process of upgrading from Visual Studio 2010 to 2012 and a problem that looks like stack corruption has appeared. I have a class with some member functions: class Foo { double m_d; ...
0
votes
2answers
66 views

Java for loop optimization - Storing getters before the loop

Suppose you have the following code.. for(Element elm : elements) if(elm instanceof Foobar) Session.getSomething().getListOfSomething().add((Foobar)elm); Would it not be better to do the ...
3
votes
2answers
287 views
+50

Computing method call stack size for checking StackOverflowException

Today morning I answered a question which is related to StackoverflowException . The person has asked when Stackoverflow exception occurs See this link Simplest ways to cause stack overflow in C#, ...
0
votes
0answers
21 views

Android dmtracedump format

I am looking at output of command: dmtracedump -o com.example.android.notepad.trace I understand that using dots they specify the hierarchy of calls. There is also specified actions "ent" and "xit" ...
0
votes
1answer
66 views

Why should you keep ESP in EBP inside a call?

I'm reading in Professional Assembly Language by Richard Blum that when you enter a call you should copy the value of the ESP register to EBP, and he also provided the following template: ...
2
votes
2answers
77 views

Check if an memory address is within the current process's stack space

I'm adding a feature to my debugger (I'm using Ptrace to manipulate the traced process as well as libbfd/libopcodes) to unwind the stack and determine if discrepancies exist between each CALL's ...
1
vote
3answers
82 views

Why is localarr==&localarr? [duplicate]

I mean, why does this print equal numbers to the console? #include <stdio.h> int main() { char localarr[99]; printf("%d\n",(int)localarr); printf("%d\n",(int)&localarr); ...
2
votes
1answer
71 views

Trying to observe javascript Object

I'm trying to create an object observer in javascript. This is as far as i get: //object to observe an object observe : { parent : this, //keep context of parent ...
0
votes
6answers
105 views

identifying parallel asynchronous callstacks in javascript

I wish to know if there was a way for me to use a kind of "private realm" or "private memory" to each stack in javascript, to help me clear out racing condition in especially the case of parallel ...
3
votes
1answer
98 views

Using stack trace to debug unknown program exception on Coldfire MCF5235 in GDB (Eclipse)

At a certain point in my C application (running bare to the metal, supervisor mode) when using the CAN controller via a third-party library, an Illegal Instruction fault was occurring, which is caught ...
-1
votes
1answer
48 views

Push command line arguments (C) on the call stack?

I'm wondering how parameter passing for command line arguments works? My assembly is a little bit rusty. I understand that a function's parameters are pushed onto the stack by its caller. What about ...
-8
votes
2answers
93 views

What is code doing [closed]

Can someone kindly tell me what this piece of code is trying to do in plain english. Its part of code that am debugging but not sure what its doing. Thanks public int findSomething(int n, int m){ ...
1
vote
3answers
79 views

How to align stack variable to 16byte boundary

I have the following local variable (that will get stored in the stack). struct test1 { int a; int b; char c; }; How do I align the starting address of integer a to a 16byte boundary in the ...
1
vote
2answers
134 views

Call stack management

This isn't really a Haskell question at all, but I imagine there are a lot of people following the Haskell tag who will know the answer to this... I'm currently trying to wrap my brain around how you ...
2
votes
2answers
87 views

How to create endless recursion which throw stackoverflow exception?

I'm trying to create stack overflow run-time exception with following program: void f(int a) { cout << a << ", "; f(++a); } int main () { f(0); return 0; } When if run this ...
0
votes
0answers
49 views

Algorithm for identifying bridges - Euler Cycle

Im working on a problem to find an Euler Cycle in a digraph which I know contains an Euler Cycle. However for larger graphs I get stackoverflow in Java and I think my algorithm could be made smarter ...
1
vote
0answers
41 views

XCode - CallStack icons

What do the callstack symbols indicate? I know a little bit about how to analyze callstack but I never understood the purpose of these symbols.
0
votes
1answer
38 views

How do I Include the TraceOutputOptions in the output of Enterprise Library Logging

This is wrecking my head and the documentation seems to be non-existent for this library. I have a Rolling Flat file listener... I want to include the callstack in any messages that get written to the ...
3
votes
3answers
109 views

Allocating a new call stack

(I think there's a high chance of this question either being a duplicate or otherwise answered here already, but searching for the answer is hard thanks to interference from "stack allocation" and ...
0
votes
0answers
63 views

(iOS) What does kbViewRecoverNormalState means?

We have this crash in our app that has this kind of log. "date= 2013-02-03 07:12:17 +0000; buildVersion = 1.0.0; model = iPhone; systemName = iPhone OS; systemVersion = 5.1.1; timeSpent = 1008.14; ...
2
votes
3answers
98 views

Does the Timer(callback,…) callback function add to the stack? garbage collection Q with this

I have a function that needs to archive 90 day old emails every midnight. I created a class to handle this and here's the example: public void processArchives() { initializeTimer(); ...
0
votes
0answers
36 views

Dump callstack of a program

I have a program which I want to dump its callstack to a file. Something like: 20:32:12 - program.exe!_main() 20:32:12 - program.exe!_function2() 20:32:13 - program.exe!_main() ... Is there a ...
3
votes
2answers
95 views

Record call stack and values on breakpoint?

Background I'm trying to track down a memory leak issue, where I know (from _CRT_DEBUG_MALLOC and MFC's and the CRT's leak detection) the specific line of where memory is leaked, but since this line ...
0
votes
0answers
84 views

DTrace: Tracing user stack size on OS X? (curthread->t_procp->p_stksize?)

I've come across this simple DTrace script for tracing user stack sizes, but it doesn't work on OS X Mountain Lion: dtrace -n 'sched:::on-cpu { @[execname] = ...
1
vote
5answers
269 views

How to get Java Call Stack of a running application

I am working on very huge java web based application. As there is no proper logging done while development so its very difficult for me to put break point and debug the app as i dont know execution ...
2
votes
2answers
49 views

Grab a reference on the last thrown exception

In the python and/or ipython interactive interpreter, how can I get name bound on the last unhandled exception? I.e. the equivalent of >>> try: ... 1/0 ... except Exception as potato: ... ...
0
votes
2answers
88 views

The stack of a lua coroutine is entered implicitly without a call to resume?

I am using lua coroutines (lua 5.1) to create a plugin system for an application. I was hoping to use coroutines so that the plugin could operate as if it were a separate application program which ...
1
vote
0answers
87 views

Xcode 4.5 callStackSymbol not Symbolicated

I am using NSException's callStackSymbol to log the stack trace of my crash and send it to my server. I am getting this kind of stack trace from my release ipa file and/or the original released app ...
0
votes
1answer
42 views

Actionscript - Unable to trace into callback

I'm trying to get familiar with a legacy project. In one particular function, I have the code: public function update(userObj:Object):void { var comm2:CommManager; comm2 = ...
2
votes
3answers
136 views

Get objects involved in Java stacktrace

I can retreive the current stacktrace using Thread.currentThread().getStackTrace() but this gives me only the classes involved in the call. Is it possible to retreive the object instances involved in ...
0
votes
2answers
141 views

Getting Procedure Arguments from Stack

I am trying to learn how to call procedures in assembly language. Below is a simple example that shows my problem. I push 7 unto the stack, call the procedure; when the procudeure pops from the stack, ...
1
vote
2answers
136 views

Heap-Dynamic or Stack-Dynamic?

Please explain to me if "x" is a Stack-Dynamic variable or Heap-Dynamic variable in this code?And if it is Heap-Dynamic then why it is not Stack-Dynamic variable?Thank you function foo(){ MyClass x = ...
1
vote
1answer
136 views

Why do malloc/new capture the callstack?

I have a 64bit application that runs as a service under Server 2003. When I attach the VS Profiler or windbg I see lots of callstacks like the one below. I understand that processes spawned in the ...
1
vote
0answers
81 views

Eclipse debugger does not show call stack

How is it possible for Eclipse debugger not to show call stack? I have a breakpoint and when it stops on it, I have only that function in the stack, being unable to see who called it. I have ...
3
votes
2answers
125 views

__func__ and logging

I am implementing a log handler in C++, and it works good and all, however there is one thing which I would find usable and that is where the logger got the output from. I guess this isn't really a ...
0
votes
1answer
30 views

Call stack management is machine dependent?

I think I understand the basic of stack memory, but I still do not fully understand which is responsible for the mechanism for the way managing the stack - is it the compiler, the cpu architecture? is ...
4
votes
4answers
127 views

what is the size of stack in VC++?

I want accurate information about stack overflowing in VC++ (32 bit and 64 bit), and specially in recursion. In Debug mode, this happens so soon in recursion (like 4500 running of a simple recursive ...
0
votes
0answers
42 views

iOS Crash Follower

Is that possible to complete a function(iOS Crash Follower) in the code for finding crash address or grasping the last called function in the callstack when app crashed? With this function,we can ...
1
vote
2answers
153 views

Is iteration always better than recursion? (issues that haven't been addressed) [closed]

The topic was covered in these posts: Recursion or iteration? Recursion or Iteration? But I don't feel like everything was really addressed here. The main argument I see popping up for recursion is ...
2
votes
3answers
72 views

Make the program stack not executable to stop code injection attack

Why is the stack executable? If the system forces the stack not to be executable and the text not to be writable, can the code injection attack be totally stopped?
2
votes
1answer
157 views

C++ Stack Walking on Windows

I'm building a memory manager for C++ using a very .NET style approach. In doing so I need to know which objects are considered reachable; and object is considered reachable if a reachable object has ...
0
votes
2answers
122 views

x64 asm ret lands in no mans land

I assumed I had push'ed something without popping it, or vice versa, but I can't find anything wrong! I write to the console with a call to a dll that links properly, and I inexplicably am in no mans ...
2
votes
1answer
77 views

Matching an address to a stack during Windbg Kernel Debugging

I've got an address I found while debugging, and I suspect it belongs to the call stack of some thread of some process. What's the best way to found out which thread it is (or that's my hypothesis is ...
3
votes
0answers
111 views

Who invented the Red Zone? Where was it first used? [closed]

A Red Zone is a small region beyond the callstack's stack pointer into unallocated stack space that some systems make available for scratch use. On such systems, the Red Zone can be used by the ...

1 2 3 4 5 7