9
votes
9answers
276 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 s …
0
votes
2answers
21 views
How to find the current stack?
Hi, in Pharo, how can I find the currently evaluating stack?
0
votes
4answers
53 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, b …
0
votes
3answers
172 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, &am …
5
votes
10answers
213 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] = …
1
vote
1answer
42 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
108 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 …
0
votes
6answers
120 views
Implement an array of stacks in C
Implement an array of stacks where stacks are defined :
typedef struct StackNode {
int data;
StackNode* next;
} StackNode;
Each array element points to a stack, each st …
4
votes
4answers
127 views
Why can’t compiler derive string length for array of strings?
Note: This question was influenced by this answer.
The following is valid C code:
char myString[] = "This is my string";
This will allocate a string of length 18 (including the …
3
votes
5answers
156 views
From an interview: what’s the benefit of the stack in C?
I was asked about heap and stack memory structure in an interview. The guy asked me what's the benefit of having the stack? I wasn't sure what he was getting at. What others ways a …
1
vote
5answers
85 views
Having many stacks with different types
I'm making a C program that needs to use two stacks. One needs to hold chars, the other needs to hold doubles. I have two structs, node and stack:
struct node {
double value;
…
9
votes
10answers
314 views
Does stack grow upward or downward?
I have this piece of code in c:
int q=10;
int s=5;
int a[3];
printf("Address of a: %d\n",(int)a);
printf("Address of a[1]: %d\n",(int)&a[1]);
printf("Address o …
1
vote
3answers
46 views
Unique value in StackTrace?
Background:
I have written a generic logging library in .NET 3.5. Basically the developer needs to call the Begin() method at the beginning of their method and the End() method at …
-4
votes
0answers
150 views
c++ stack using char [closed]
if i have this record using val = int
struct Istack {
int val;
Istack *link;
};
typedef Istack* stack;
i can declare this function without any errors
void emptyStack(stack …
1
vote
1answer
31 views
Do stack-based languages have a concept of scope?
Do stack-based languages have a concept of scope? It would seem to me that if function parameters are placed on the stack before the function executes, that they do in an unorthod …
