Questions tagged [stack]

The stack of running programs: stack traces, stack size limits, …

A program's stack is the location in memory where it stores control data indicating among others which functions in the program are active. It is complemented by the heap. Use this tag for questions related to programs' stacks, such as obtaining stack traces or configuring the stack size limit.

21 questions
9
votes
1 answer

How to increase stack size permanently on Windows 7?

I need to increase the default stack size on 32-bit Windows 7 ultimate.As I know there are two ways to increase stack size on Linux, executing command " ulimit -s size " and changing limits.conf file. Is there some similar method for Windows 7…
Pedja
  • 193
5
votes
4 answers

How to increase stack limit permanently without restarting

I need to increase the default stack size on Linux. As I know there are usually two ways: ulimit -s size /etc/security/limits.conf The ulimit method only works as long as I am logged in. limits.conf will work after a restart. Is there a possible…
Simon
  • 151
4
votes
1 answer

Where is the frame.h file (or its equivalent) located on modern Linux OSes?

A book I am reading refers to an include file that shows how a stack frame looks on one's UNIX system. In particular: /usr/include/sys/frame.h I am having trouble finding the modern equivalent. Anyone have an idea? I'm on Ubuntu 12.10. By the way,…
d0rmLife
  • 153
4
votes
1 answer

How to know what dll or services taskhost.exe is hosting?

I have recently discover a new process in the task manager : taskhost.exe (maybe it was there before but i did not notice it) As the name implies, it seems to be used for running dll in background (like rundll32.exe). Is there a way to know which…
tigrou
  • 943
3
votes
2 answers

On certain Linux boxes, variables in the stack seems to be initialized to 0 - why?

I have a buggy program that pushes a variable onto stack and may use it without initialization. I take the same binary and run it on different Linux boxes. Those boxes have different CPUs (i5, i7), but other than that they run the same Fedora…
user49531
1
vote
1 answer

Make phppgAdmin accessible on Apache/Windows 7

I have my custom stack folder located here... C:\MEDIA\INTERNET\WAPP\ I have Apache located here... C:\MEDIA\INTERNET\WAPP\Apache 2.4\ I have PostgreSQL located here... C:\MEDIA\INTERNET\WAPP\PostgreSQL 9.3 x64\ ...and I have phppgAdmin…
user312854
1
vote
0 answers

Photoshop scripting. Opening & Saving overlapping image stacks

I’ve been getting more and more into star photography and have recently been trying to develop a new style of stacking the photos and creating time-lapse videos from the stacked photos. Example: http://www.youtube.com/watch?v=eBE3vUb-dtE This…
1
vote
0 answers

Virtual Box cannot install Fedora Core 14 Terminate on Call StackTrace

I have virtual box and i want to install Fedora Core 14 with ISO image. After booting, i found error in loading driver and terminate with "Call StackTrace". How can i solve this problem? If i install it's image to hard drive installation is…
1
vote
0 answers

Adobe flash on Linux 64bit: "Movie not loaded" and maximum stack-size

I was experiencing problems with all flash content (tried Firefox/Chromium/Opera, Ubuntu/Fedora and several Flash releases to no avail). While trying to playback any flash-movie, no video/sound playback occurred, and right-click only produced a…
Dragos
  • 46
1
vote
2 answers

Bitnami stacks compatible with Ubuntu 11?

Has anyone successfully installed Bitnami native stacks on Ubuntu 11? After changing the bin file's permissions to allow it to be executable, I get the following error in the Terminal: bitnami-dokuwiki-2011-05-25a-0-linux-x64-installer.bin: 1:…
pthesis
  • 458
1
vote
0 answers

How to grab the stack of a GPFed application?

I have an app with many components that crashes with a GPF. The ModName is listed as one of the main modules within the application. It calls a bunch of other modules depending on the situation. Using tools like Process Explorer and others, is it…
AngryHacker
  • 19,327
1
vote
0 answers

Direction of Stack Trace in ProcMon

I am trying to understand how to interpret the stack trace in event properties of ProcMon. I know that the stack works on a last in first out basis, however the numbering of the frames in the stack trace is confusing me. Is the first function called…
Jhon Doe
  • 111
1
vote
0 answers

When running stack build for with scalpel as a dependency, I encounter exitFailure1

Currently using stack to build the project with only base and scalpel as my 2 dependencies. This is the error log: 2019-03-31 19:47:34.154259: [info] curl-1.3.8: configure 2019-03-31 19:47:34.154652: [debug] Run process within…
0
votes
1 answer

Why do I get an internal stack overflow error when minimizing and restoring an MS-DOS virtual machine window?

I am using Windows Virtual PC on a Windows 7 machine. I have created an MS-DOS 6.22 virtual machine with 16 MB RAM and a 2 GB hard disk. Whenever I minimize or otherwise deactivate the window, and then restore or reactivate it, I get an error…
gparyani
  • 1,881
0
votes
1 answer

Increase stack size for a specific process on linux

What is the correct way to set the stack size for a binary that is about to be executed? There is ulimit -s 64M but that sets the stack size for all processes run after it, I'm just looking to set the stack size for the specific I'm about to…
1
2