Tagged Questions
The stack-size tag has no wiki summary.
6
votes
6answers
596 views
How to identify if an object should be on the stack or not?
I was looking for a rule of thumb for allocating objects on stack or heap in C++. I have found many discussions here on SO. Many people said, it's about the lifetime of an object. If you need more ...
5
votes
2answers
115 views
Size of remaining stack until a stack overflow occurs
On Linux, using C, assume I have an dynamically determined n naming the number of elements I have to store in an array (int my_array[n]) just for a short period of time, say, one function call, ...
4
votes
3answers
1k views
Can one obtain actual stack size used by a thread in Java after some time of running?
The idea would be to help determine the optimum stack size for a given Java application.
One thing that could be done with this information create a range-table of stack sizes which the threads ...
3
votes
2answers
81 views
How is the limit defined on the number of function calls in the stack in Java?
I've been looking recently on a deep stack with 2000 recursive function calls, and was wondering how is the limit defined on the number of function calls in the stack in Java?
3
votes
1answer
135 views
Did I correctly set up the stack segment in real mode?
Im writing a bootloader and I set up my stack up as such...
STACK_SEGMENT equ 0x0050
STACKP_OFFSET equ 0x03FF
mov ax, STACK_SEGMENT
mov ss, ax
mov sp, STACKP_OFFSET
Am I allocating 1024 bytes of ...
3
votes
2answers
1k views
How to determine Stack size of a Program in linux?
How does one determine the current stack size of a program in linux?
it is said that the stack size of each program will be 8 MB in linux but when you use
cat /proc//mmap it shows a different size.
...
2
votes
3answers
466 views
Safe thread stack size?
I am writing some code that spawns quite a few threads (about 512 at the moment, but that could get higher in the future). Each of the threads only performs a small amount of operations, so I want the ...
2
votes
2answers
1k views
thread stack size on Windows (Visual C++)
Is there a call to determine the stack size of a running thread? I've been looking in MSDN thread functions documentation, and can't seem to find one.
1
vote
2answers
87 views
Any method to get the stack size of all functions in a file or a project in C language?
I want to get all functions whose stack size is bigger than the assigned size, is there any easy method to suggest?
Get the .obj file, disassemble it, and then analyze the output file?
1
vote
3answers
414 views
Java thread stack size on 64-bit linux
My goal is to come up with figure of max threads which can run in parallel. I was pointed to many links by Google, where they give simple math by dividing the RAM/StackSize. In 64 bit Linux, we have ...
1
vote
2answers
1k views
How to set -Xss in Eclipse?
My problem is that I want to increase the default stack size when running a Java project in Eclipse. I've tried looking for the answer, and it looks like I need to set the -Xss option to a larger ...
1
vote
1answer
634 views
Python threads stack_size and segfaults
A web crawler script that spawns at most 500 threads and each thread basically requests for certain data served from the remote server, which each server's reply is different in content and size from ...
0
votes
0answers
10 views
Android: How to change stack-size for AsyncTask
I'm using jericho HTML parser and am parsing HTML-pages in AsyncTask.
From time to time I get StackOverflowError exception (it depends on HTML page being parsed so the same page always produces the ...
0
votes
1answer
432 views
gdb determine stack size, conditional in command list
Is it possible to find out the stack size (= number of frames in the stack) in a gdb script and use it as a condition in a command list? (By gdb script I mean a list of commands that can be given to ...
0
votes
1answer
125 views
Java: Would decreasing the stack size speed up frequent method invocations?
Everywhere I keep reading about increasing the JVM stack size (i.e. to allow deeper recursions).
But I'm asking myself, would decreasing of the stack size speed up method invocation?
Probably my ...
0
votes
2answers
1k views
Set stack size in a makefile?
I know how to set the stack size to unlimited in the command line:
ulimit -s unlimited
And, in bash, when I set the stack size to unlimited, my code runs and terminates successfully.
Can I set the ...
0
votes
3answers
450 views
which language / platform doesn't have a fixed stack size?
does some language or platform not have a fixed size of stack and therefore not easy to overflow? I remember using C on UNIX, the stack was difficult to overflow while back in the days of Win 3.1, ...