2
votes
6answers
95 views
How to determine return address on stack ?
I know that if I am inside some fuction foo() which is called somewhere from bar() function, then this return address is pushed on stack.
#include <stdio.h>
void …
4
votes
5answers
107 views
Is there any way to determine the available stack space at run time?
I know that stack size is fixed. So we can not store large objects on stack and we shift to dynamic allocations (e.g. malloc). Also, stack gets used when there is nesting of functi …
1
vote
3answers
88 views
Exception Handling in C - What is the use of setjmp() returning 0?
I have a few questions relating to setjmp/longjmp usage -
What is the use of setjmp(jmp___buf stackVariables) returning 0. It is a default, which we cannot influence.
Is the …
0
votes
3answers
71 views
Aligning a class to a class it inherits from? Force all stack alignment? Change sizeof?
I want to have a base class which dictates the alignment of the objects which inherit from it. This works fine for the heap because I can control how that gets allocated, and how a …
7
votes
10answers
233 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 …
4
votes
5answers
90 views
When is stack space allocated for local variables?
I have a question about the following C code:
void my_function()
{
int i1;
int j1;
// Do something...
if (check_something())
{
int i2;
int j2 …
4
votes
6answers
181 views
Do threads share the heap?
As far as I know each thread gets a distinct stack when the thread is created by the OS. I wonder if each thread has a heap distinct to itself also?
0
votes
5answers
112 views
How to calculate the memory size of a program?
Lets say I have a c program where I use only stack variables, no dynamic variables (malloc, ...)
Is it possible to calculate how much memory my program will take during run time? …
2
votes
4answers
136 views
Does stack size grow during runtime?
I wonder if stack size can grow like heap does during runtime?
0
votes
2answers
104 views
“Down the stack” [closed]
If I'm trying to find a bug that's being called lower in the call stack, that'd be "down" the stack, right?
0
votes
6answers
89 views
C - Pointer to int to get elements in stack
Hello!
I wanted to write a standard stack in C but I am not sure if my stk_size() function could work on other platforms except for my 32bit pc. I read that its not good to cast a …
1
vote
7answers
117 views
How are things stored in stack?
So I have been learning assembly and came to the topic of stack, storing local, static and global variable and stuff.
But I'm having a hard time imagining it in my head.
Bottom o …
0
votes
3answers
146 views
How do I write to a different thread’s stack in C/C++?
I know this is a bad idea! Certainly for safe programming the stack for a given thread should be considered private to that thread. But POSIX at least guarantees that all of a thre …
2
votes
3answers
85 views
Checking heap integrity and stack size in C#
Hi, I'm trying to track down a crash that happens when I stress my C# code and run in low memory conditions. However, in some cases, instead of getting OutOfMemoryException, my pro …
2
votes
2answers
113 views
When and how to use GCC’s stack protection feature?
Hello,
I have enabled the -Wstack-protector flag when compiling the project I'm working on (a commercial multi-platform C++ game engine, compiling on Mac OS X 10.6 with GCC 4.2).
…
