0
votes
1answer
23 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
146 views
C/C++ maximum stack size of program
I want to do DFS on a 100 X 100 array. (Say elements of array represents graph nodes) So assuming worst case, depth of recursive function calls can go upto 10000 with each call taking upto say 20 …
-9
votes
3answers
146 views
What kind of recursion can be resolved without stack? [closed]
Anyone knows about this?
0
votes
3answers
90 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
1answer
41 views
rails stack level too deep?
Im trying to implement roles feature to my app that already has authlogic working... Im following this tutorial but now Im getting an error "stack level too deep" when I try to run my app...
…
3
votes
4answers
126 views
c# stack queue combination
hi!
is there in C# some already defined generic container which can be used as Stack and as Queue at the same time?
I just want to be able to append elements either to the end, or to the front of the …
1
vote
2answers
23 views
JVM and CLR allocation optimization
Do the JVM and .NET VM allocate objects on the stack when it is obvious to the runtime that an objects lifetime is limited to a certain scope?
1
vote
7answers
128 views
Why use a pointer to a pointer to the stack when creating a push function?
I am looking at a textbook example of a linked list that implements a stack. I don't understand why using a pointer to a pointer to the stack is necessary for the push operation. See the following …
0
votes
2answers
31 views
How to find the current stack?
Hi, in Pharo, how can I find the currently evaluating stack?
0
votes
4answers
59 views
Java Stack method (multipop) Beginner java
Hey y'all,
I'm trying to write a Java method to preform a 'multi-pop" on a stack, it should "pop" "k" number of items off the top of the stack object. This is what I'm thinking, but it's not quite …
10
votes
9answers
371 views
Stack Size Estimation
In multi-threaded embedded software (written in C or C++), a thread must be given enough stack space in order to allow it to complete its operations without overflowing. Correct sizing of the stack …
0
votes
3answers
176 views
How to programmatically tell if two variables are on the same stack? (in Windows)
I'm in a thread. I have an address. Is that address from a variable on the same stack that I'm using?
static int *address;
void A()
{
int x;
atomic::CAS(address, 0, &x); // ie address …
1
vote
1answer
48 views
Is there a gdb (or similar) frontend that will show the program stack visually?
Basically, I'm looking for something where I can break execution and then see a visual representation of the stack in memory. DDD doesn't have this as far as I can tell.
0
votes
5answers
122 views
Determining Stack Space with Visual Studio
I'm programming in C in Visual Studio 2005. I have a multi-threaded program, but that's not especially important here.
How can I determine (approximately) how much stack space my threads use?
The …
5
votes
10answers
230 views
What tool can catch buffer overflows in C?
So I have this simple piece of code which demonstrates a simple buffer overflow:
#include <stdio.h>
int main(void)
{
char c[4] = { 'A', 'B', 'C', 'D' };
char d[4] = { 'W', 'X', 'Y', …
