active questions tagged stack - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T04:00:13Z http://stackoverflow.com/feeds/tag/stack http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1919975/creating-a-stack-of-strings-in-c 1 Creating a stack of strings in C Phenom 2009-12-17T07:10:12Z 2009-12-18T03:04:20Z <p>I want to have a stack that takes strings. I want to be able to push and pop strings off, as well as clear the whole stack. I think C++ has some methods for this. What about C?</p> http://stackoverflow.com/questions/1920080/pushing-a-string-onto-a-stack-in-c 0 pushing a string onto a stack in C [closed] Phenom 2009-12-17T07:40:06Z 2009-12-17T18:52:04Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1919975/creating-a-stack-of-strings-in-c">Creating a stack of strings in C</a> </p> </blockquote> <p>I want to have a stack of strings. I'll declare it like this.</p> <pre><code>char *stringStack[MAXSTACK]; int stacksize = 0; </code></pre> <p>If I want to push the string "this is a string" onto the stack, I'll do this:</p> <pre><code>*stringStack[stacksize++] = "this is a string"; </code></pre> <p>Will this work? How can I modify it to work?</p> http://stackoverflow.com/questions/1921485/pseudo-random-stack-pointer-under-linux 1 Pseudo-random stack pointer under Linux? Richard Pennington 2009-12-17T12:38:03Z 2009-12-17T13:15:13Z <p>I was playing around with some code when I noticed something strange:</p> <pre><code>[~] main% cat test.cc #include &lt;stdio.h&gt; void f() { int i; fprintf(stderr, "&amp;i = 0x%08X\n", (long)&amp;i); } int main(int argc, char**argv) { f(); } [~] main% g++ test.cc [~] main% ./a.out &amp;i = 0xBFA27AB4 [~] main% ./a.out &amp;i = 0xBFAD7E24 [~] main% ./a.out &amp;i = 0xBFCA3464 [~] main% ./a.out &amp;i = 0xBF96C064 [~] main% </code></pre> <p>The odd thing to me is the variation in the address of the variable i.</p> <p>My guess is that the kernel supplies different stack start addresses to try to thwart some kind of crack. What's the real reason?</p> http://stackoverflow.com/questions/1918752/make-a-tkinter-window-appear-over-all-other-windows 0 Make a tkinter window appear over all other windows Nazarius Kappertaal 2009-12-17T00:29:16Z 2009-12-17T01:45:37Z <pre><code>#!/usr/bin/env python # Display window with toDisplayText and timeOut of the window. from Tkinter import * def showNotification(notificationTimeout, textToDisplay): ## Create main window root = Tk() Button(root, text=textToDisplay, activebackground="white", bg="white", command=lambda: root.destroy()).pack(side=LEFT) root.update_idletasks() # Remove window decorations root.overrideredirect(1) timeOut = int(notificationTimeout*1000) # Convert to ms from s ## Run appliction root.after(timeOut,root.destroy) root.mainloop() </code></pre> <p>The above code creates a notification, with a timout. However on windows - the notification does not automatically pop up above all other present windows automatically. One has to click on the kill button (the text), and focus it the first time, after which the root window will be displayed above all other windows. </p> <p>Is there a way to make the notification automatically appear above all other windows - on windows?</p> <p>It seems to work on linux just fine (ubuntu 9.10).</p> http://stackoverflow.com/questions/591457/segmentation-fault-on-unix-possible-stack-corruption 2 segmentation fault on Unix - possible stack corruption bob 2009-02-26T17:02:39Z 2009-12-16T15:07:13Z <p>hello,</p> <p>i'm looking at a core from a process running in Unix. Usually I can work my around and root into the backtrace to try identify a memory issue. In this case, I'm not sure how to proceed.</p> <p>Firstly the backtrace only gives 3 frames where I would expect alot more. For those frames, all the function parameters presented appears to completely invalid. There are not what I would expect.</p> <p>Some pointer parameters have the following associated with them - Cannot access memory at address </p> <p>Would this suggest some kind of complete stack corruption. I ran the process with libumem and all the buffers were reported as being clean.</p> <p>umem_status reported nothing either.</p> <p>so basically I'm stumped. What is the likely causes? What should I look for in code since libumem appears to have reported no errors.</p> <p>Any suggestions on how I can debug furhter? any extra features in mdb I should consider?</p> <p>thank you.</p> http://stackoverflow.com/questions/1909648/stacking-divs-in-top-of-each-other 0 Stacking DIVs in top of each other? Kaitsuli 2009-12-15T19:09:35Z 2009-12-15T20:44:03Z <p>Hi,</p> <p>Is it possible to stack up multiple DIVs like:</p> <pre><code>&lt;div&gt; &lt;div&gt;&lt;/div&gt; &lt;div&gt;&lt;/div&gt; &lt;div&gt;&lt;/div&gt; &lt;div&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>So that all those inner DIVs have the same X and Y position? By default they all go below each other increasing the Y position by the height of the last previous DIV.</p> <p>I have a feeling some sort of float or display or other trick could bite?</p> <p>EDIT: The parent DIV has position relative, so, using position absolute does not seem to work.</p> http://stackoverflow.com/questions/617809/stack-unwinding-in-case-of-structured-exceptions 3 Stack unwinding in case of structured exceptions aJ 2009-03-06T06:13:59Z 2009-12-14T21:49:15Z <p>This question provides more clarity on the problem described <a href="http://stackoverflow.com/questions/616270/reasons-for-stack-unwinding-fail">here</a>. I did some more investigation and found that the stack unwinding is not happening in the following piece of code:</p> <pre><code>class One { public: int x ; }; class Wrapper { public: Wrapper(CString csText):mcsText(csText) { CString csTempText; csTempText.Format("Wrapper constructor :: %s\n", mcsText); OutputDebugString(csTempText); } ~Wrapper() { CString csTempText; csTempText.Format("Wrapper destructor :: %s\n", mcsText); OutputDebugString(csTempText); } CString mcsText; }; class Test { public: void notifyError() { try { int x = 10; } catch(...) {} } void OnRecvBuffer() { try { Wrapper a("AddRef"); One* p = NULL; p-&gt;x = 10; } catch(...) { notifyError(); } } }; int main() { Test* pTest = new Test; pTest-&gt;OnRecvBuffer(); OutputDebugString("Test"); } </code></pre> <p>I compiled this code using VC6 SP5 compiler and the output is "Wrapper constructor :: AddRef!!!" (i.e. the destructor of wrapper object which was constructed on stack is not called. Is this the expected behavior ? or is it a bug with VC compiler ? Can I use some compiler flags so that the stack unwinding happens in this case?</p> http://stackoverflow.com/questions/1893874/stack-overflow-in-swing-at-processkeyevent 0 stack overflow in swing at processKeyEvent Axarydax 2009-12-12T16:21:42Z 2009-12-12T17:14:19Z <p>Hi, I'm battling an error I don't quite understand. I have a class in Java, let's call it <code>DownloadTable</code> derived from a <code>JDTable</code>. Each of these classes implement <code>KeyListener</code>. </p> <p>I'd like the base class <code>JDTable</code> to handle some keystrokes, so I put <code>this.AddListener(this)</code> in its constructor and create a key handler </p> <blockquote> <p>public void keyPressed(KeyEvent e) {...}</p> </blockquote> <p>then I'd like the derived class <code>DownloadTable</code> to do some special keyboard processing of its own, so I repeat the process and add keyboard handler there too. I also added a call to <code>super.processKeyEvent()</code> from the derived class' key handler to wire together the derived handler and the base handler. </p> <p>The problem is that it doesn't work as expected and I'm getting a stack overflow exception whenever <code>super.ProcessKeyEvent</code> is called. When run in debugger, the parent's event handler isn't even called. Am I missing something obvious? Isn't <code>super.processKeyEvent()</code> going to somehow invoke superclass' <code>keyPressed()</code> handler? Thanks.</p> <p>attached stack:</p> <blockquote> <p>Exception in thread "AWT-EventQueue-1" java.lang.StackOverflowError at jd.gui.swing.jdgui.views.downloadview.DownloadTable.keyPressed(DownloadTable.java:253) at java.awt.Component.processKeyEvent(Unknown Source) at javax.swing.JComponent.processKeyEvent(Unknown Source) at jd.gui.swing.jdgui.views.downloadview.DownloadTable.keyPressed(DownloadTable.java:253) at java.awt.Component.processKeyEvent(Unknown Source) at javax.swing.JComponent.processKeyEvent(Unknown Source) at jd.gui.swing.jdgui.views.downloadview.DownloadTable.keyPressed(DownloadTable.java:253) at java.awt.Component.processKeyEvent(Unknown Source)</p> </blockquote> http://stackoverflow.com/questions/1770401/how-to-find-the-current-stack 0 How to find the current stack? Niko 2009-11-20T13:25:38Z 2009-12-12T15:59:13Z <p>Hi, in Pharo, how can I find the currently evaluating stack?</p> http://stackoverflow.com/questions/1889170/can-someone-help-spot-the-errors-in-my-low-lock-list 5 Can someone help spot the errors in my low lock list? Goz 2009-12-11T16:24:22Z 2009-12-11T19:03:16Z <p>Hi all,</p> <p>I've written a low lock list in C++ on windows 32-bit. I'm getting BIG improvements over using critical sections but I'd like someone to sanity check that what I'm doing is correct and there aren't any errors in what I've done:</p> <pre><code>#ifndef __LOW_LOCK_STACK_H_ #define __LOW_LOCK_STACK_H_ template&lt; class T &gt; class LowLockStack { protected: struct Entry { Entry* pNext; T* pData; }; union Header { __int64 m_XChg; struct { Entry* m_pNext; __int16 m_Depth; __int16 m_Counter; }; }; Header m_Header; public: LowLockStack() { m_Header.m_pNext = NULL; m_Header.m_Depth = 0; m_Header.m_Counter = 0; } ~LowLockStack() { } void PushEntry( T* pData ) { Entry* pEntry = new Entry; pEntry-&gt;pData = pData; Header header; Header xchg; do { xchg.m_XChg = m_Header.m_XChg; header.m_pNext = pEntry; header.m_Depth = xchg.m_Depth + 1; header.m_Counter = xchg.m_Counter + 1; pEntry-&gt;pNext = xchg.m_pNext; } while( _InterlockedCompareExchange64( &amp;m_Header.m_XChg, header.m_XChg, xchg.m_XChg ) != xchg.m_XChg ); } T* PopEntry() { Entry* pEntry = NULL; Header header; Header xchg; do { xchg.m_XChg = m_Header.m_XChg; pEntry = xchg.m_pNext; if ( pEntry == NULL ) { return NULL; } header.m_pNext = pEntry-&gt;pNext; header.m_Depth = xchg.m_Depth - 1; } while( _InterlockedCompareExchange64( &amp;m_Header.m_XChg, header.m_XChg, xchg.m_XChg ) != xchg.m_XChg ); T* pRet = pEntry-&gt;pData; delete pEntry; return pRet; } __int32 GetDepth() { return m_Header.m_Depth; } }; #endif </code></pre> <p>If there are no errors (which i doubt ;)) then think of it as a reference implementation :D</p> <p>Edit: I've updated the code taking into account a number of criticisms. </p> http://stackoverflow.com/questions/1887019/iphone-send-back-string-value-with-navigationcontroller-pop 0 iphone: send back string value with navigationcontroller pop Madoc 2009-12-11T10:01:08Z 2009-12-11T10:16:30Z <p>Hi..</p> <p>This may be very basic, but I just can`t figure out what to do, so thanks for any response... </p> <p>I`m using a navigationcontroller and are currently on the second level in the stack. Here i set a string value and use popViewControllerAnimated to go back to first level in the stack. </p> <p>What might be the best solution to use that string value from second level in the stack? I`ve tried to set a value in the first level manually in the second level, but I must be doing something wrong... </p> <p>Thanks!</p> <p>edit: I<code>m very new to both objective-c and C in general so i</code>m still a bit confused :(</p> http://stackoverflow.com/questions/1878539/does-the-stack-get-unwound-when-a-sigabrt-occurs 2 Does the stack get unwound when a SIGABRT occurs? WilliamKF 2009-12-10T03:54:52Z 2009-12-10T06:43:55Z <p>Hi,</p> <p>Does the stack get unwound (destructors run) when a SIGABRT occurs in C++?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1814952/stack-in-and-out 0 Stack in and out Mask 2009-11-29T07:56:05Z 2009-12-08T18:50:10Z <p>There are <code>n</code> different elements,</p> <p>already know the order each element is pushed in.</p> <p>How many different kinds of combination can there be for the poping order?</p> <p><strong>EDIT</strong></p> <p>In fact I know there are 2n!/(n+1)n!^2 combinations,but why?</p> http://stackoverflow.com/questions/1859327/android-stack-size 0 Android stack size Arutha 2009-12-07T11:04:33Z 2009-12-07T18:18:29Z <p>How can i get and change the stack size (even for the main thread) of my Android application.</p> http://stackoverflow.com/questions/1858053/when-does-the-stack-really-overflow 3 When does the stack really overflow? wizard@ 2009-12-07T05:50:27Z 2009-12-07T09:28:26Z <p>Is infinite recursion the only case or can it happen for other reasons? Doesn't the stack size grow as needed same as heap?</p> <p>Sorry if this question has been asked before, would appreciate links to them if that is the case.</p> http://stackoverflow.com/questions/1823668/is-there-a-way-to-push-a-matlab-workspace-onto-a-stack 2 Is there a way to push a MATLAB workspace onto a stack? rlbond 2009-12-01T02:40:59Z 2009-12-07T05:34:58Z <p>Does anyone know if it's possible to have a stack of workspaces in MATLAB? It would be very convenient, to say the least.</p> <p>I need this for research. We have several scripts which interact in interesting ways. Functions have local variables, but not scripts...</p> http://stackoverflow.com/questions/1850556/allocation-order-on-the-stack 0 Allocation order on the stack mambro 2009-12-05T00:26:39Z 2009-12-05T01:13:02Z <p>I'm running this C code</p> <pre><code>#define STACKSIZE 65536 char d[STACKSIZE]; if (((int) &amp;d[STACKSIZE-1]) - ((int) &amp;d[0]) + 1 != STACKSIZE) { Printf ("Stack space reservation failed\n"); Exit (); } printf("Allocated from %d to %d so for %d bytes\n", &amp;d, d+sizeof(d), sizeof(d)); auto int a = 3; printf("Now the stack pointer is on %d\n",&amp;a); </code></pre> <p>And i get as output Allocated from -4262832 to -4197296 so for 65536 bytes Now the stack pointer is on -4262836</p> <p>This means that the variable "a" is put on the stack AFTER the array. But if I use a variable length array (an array whose length is setted in run time) I get the opposite behaviour: a is put on the the stack BEFORE the array.</p> <p>This is the code (it is the same but the size of the array is setted in runtime)</p> <pre><code> #define STACKSIZE 65536 int i = 1; char d[i*STACKSIZE]; if (((int) &amp;d[STACKSIZE-1]) - ((int) &amp;d[0]) + 1 != STACKSIZE) { Printf ("Stack space reservation failed\n"); Exit (); } printf("Allocated from %d to %d so for %d bytes\n", &amp;d, d+sizeof(d), sizeof(d)); auto int a = 3; printf("Now the stack pointer is on %d\n",&amp;a); </code></pre> <p>This is the output</p> <p>Allocated from -4262856 to -4197320 so for 65536 bytes Now the stack pointer is on -4197312</p> <p>So, what is the problem? How can I solve it (using variable length array and putting variables on the stack after it).</p> <p>Thank you!</p> http://stackoverflow.com/questions/1665390/does-stack-size-grow-during-runtime 2 Does stack size grow during runtime? tsubasa 2009-11-03T05:23:21Z 2009-12-03T05:23:10Z <p>I wonder if stack size can grow like heap does during runtime?</p> http://stackoverflow.com/questions/1610544/shallow-copy-java 0 Shallow Copy Java Lee 2009-10-22T23:15:41Z 2009-12-03T04:00:03Z <p>For this method, I have to make a shallow copy of a linked list stack. So, first I would initialize the linked stack then would I use a for loop to go through the values to copy the stack. But, to put them in the right order, would I just have a nested loop to reverse the group of values? here is what I got so far, am I missing something? This will copy references of all the values in the stack to another stack.</p> <pre><code>LinkedStack&lt;E&gt; newStack = new LinkedStack&lt;E&gt;(); for(int i = 0; i &lt; objectCount; i++){ //objectCount is figuring out the count newStack.add[i] = newStack[i]; // do I have to put a for loop here? return newStack; } </code></pre> http://stackoverflow.com/questions/1825964/c-c-maximum-stack-size-of-program 2 C/C++ maximum stack size of program lex 2009-12-01T12:42:34Z 2009-12-01T13:11:12Z <p>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 bytes. So is it feasible means is there a possibility of stackoverflow? </p> <p>What is the maximum size of stack in C/C++?</p> <blockquote> <p>Please specify for gcc for both<br> 1) cygwin on Windows<br> 2) Unix </p> </blockquote> <p>What are the general limits?</p> http://stackoverflow.com/questions/1016218/how-does-a-stackless-language-work 10 How does a stackless language work? rlbond 2009-06-19T03:22:14Z 2009-11-30T18:56:10Z <p>I've heard of stackless languages. However I don't have any idea how such a language would be implemented. Can someone explain?</p> http://stackoverflow.com/questions/1756285/stack-size-estimation 10 Stack Size Estimation jeremytrimble 2009-11-18T14:15:35Z 2009-11-30T08:45:48Z <p>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 is critical in some real-time embedded environments, because (at least in some systems I've worked with), the operating system will NOT detect this for you.</p> <p>Usually, the stack size for a new thread (other than the main thread) is designated at the time that thread is created (i.e. in an argument to pthread_create() or the like). Often, these stack sizes are hard-coded to values that are known to be good at the time the code was originally written or tested.</p> <p>However, future changes to the code often break the assumptions on which the hard-coded stack sizes were based, and one fateful day, your thread enters one of the deeper branches of its call graph and overflows the stack -- bringing down the whole system or silently corrupting memory.</p> <p>I have personally seen this problem in the case where code executed in the thread declares struct instances on the stack. When the struct is augmented to hold additional data, the stack size inflates accordingly, potentially allowing stack overflows to occur. I imagine this could be a huge problem for established codebases where the full effects of adding fields to a structure cannot be known immediately (too many threads/functions to find all the places where that struct is used).</p> <p>Since the usual response to "stack sizing" questions is "they're not portable", let's assume that the compiler, operating system, and processor are all known quantities for this investigation. Let's also assume recursion isn't used, so we're not dealing with the possibility an "infinite recursion" scenario.</p> <p>What are some reliable ways to estimate the necessary stack size for a thread? I'd prefer methods that are offline (static analysis) and automatic, but all ideas are welcome.</p> http://stackoverflow.com/questions/1814956/what-kind-of-recursion-can-be-resolved-without-stack -9 What kind of recursion can be resolved without stack? [closed] Mask 2009-11-29T07:59:26Z 2009-11-29T09:28:09Z <p>Anyone knows about this?</p> http://stackoverflow.com/questions/664744/what-is-the-direction-of-stack-growth-in-most-modern-systems 6 What is the direction of stack growth in most modern systems? Uri 2009-03-20T01:58:39Z 2009-11-26T01:51:54Z <p>I am preparing some training materials in C and I want my examples to fit the typical stack model.</p> <p>What direction does a C stack grow in Linux, Windows, Mac OSX (PPC and x86), Solaris, and most recent Unixes? </p> http://stackoverflow.com/questions/1799797/rails-stack-level-too-deep 0 rails stack level too deep? NachoF 2009-11-25T20:38:20Z 2009-11-25T21:00:56Z <p>Im trying to implement roles feature to my app that already has authlogic working... Im following <a href="http://metautonomo.us/2008/09/30/easy-role-based-authorization/" rel="nofollow">this</a> tutorial but now Im getting an error "stack level too deep" when I try to run my app...</p> <pre><code>SystemStackError in Users#new Showing app/views/users/_form.erb where line #2 raised: stack level too deep Extracted source (around line #2): 1: &lt;%= form.label :login %&gt;&lt;br /&gt; 2: &lt;%= form.text_field :login %&gt;&lt;br /&gt; </code></pre> <p>Please help</p> http://stackoverflow.com/questions/1798348/c-stack-queue-combination 3 c# stack queue combination Mat 2009-11-25T16:55:43Z 2009-11-25T17:52:51Z <p>hi!</p> <p>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 queue</p> <p>thanks</p> http://stackoverflow.com/questions/1791115/jvm-and-clr-allocation-optimization 1 JVM and CLR allocation optimization rep_movsd 2009-11-24T16:15:53Z 2009-11-24T16:54:09Z <p>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?</p> http://stackoverflow.com/questions/1061818/stack-allocation-padding-and-alignment 8 Stack allocation, padding, and alignment David 2009-06-30T05:01:24Z 2009-11-24T02:13:11Z <p>I've been trying to gain a deeper understanding of how compilers generate machine code, and more specifically how GCC deals with the stack. In doing so I've been writing simple C programs, compiling them into assembly and trying my best to understand the outcome. Here's a simple program and the output it generates:</p> <p>asmtest.c:</p> <pre><code>void main() { char buffer[5]; } </code></pre> <p>asmtest.s:</p> <pre><code>pushl %ebp movl %esp, %ebp subl $24, %esp leave ret </code></pre> <p>What's puzzling to me is why 24 bytes are being allocated for the stack. I know that because of how the processor addresses memory, the stack has to be allocated in increments of 4, but if this were the case, we should only move the stack pointer by 8 bytes, not 24. For reference, a buffer of 17 bytes produces a stack pointer moved 40 bytes and no buffer at all moves the stack pointer 8. A buffer between 1 and 16 bytes inclusive moves ESP 24 bytes.</p> <p>Now assuming the 8 bytes is a necessary constant (what is it needed for?), this means that we're allocating in chunks of 16 bytes. Why would the compiler be aligning in such a way? I'm using an x86_64 processor, but even a 64bit word should only require an 8 byte alignment. Why the discrepancy?</p> <p>For reference I'm compiling this on a Mac running 10.5 with gcc 4.0.1 and no optimizations enabled.</p> http://stackoverflow.com/questions/1159693/dynamic-changes-to-thread-stack-size-in-solaris-9 0 Dynamic changes to thread stack size in Solaris 9 ? Satya 2009-07-21T14:53:41Z 2009-11-24T01:00:01Z <p>Hello,</p> <p>I am looking for a configurable / tunable on Solaris 9 through which I can change the default thread stack size <em>without</em> recompiling the code to use "pthread_attr_setstacksize"</p> <p>For example on HPUX 11.11 / 11.23 the environment variable "PTHREAD_DEFAULT_STACK_SIZE" can be exported (available via HPUX patches PHCO_38307 / PHCO_38955 ) - Is there a equivalent Solaris 9 way to achieve the same ?</p> <p>Thanks! Satya</p> http://stackoverflow.com/questions/1785100/why-use-a-pointer-to-a-pointer-to-the-stack-when-creating-a-push-function 1 Why use a pointer to a pointer to the stack when creating a push function? Louise 2009-11-23T18:40:27Z 2009-11-23T19:03:13Z <p>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 example:</p> <pre><code>bool push( Element **stack, void *data) { Element *elem = new Element; if(!elem) return false; elem-&gt;data = data; elem-&gt;next = *stack; *stack = elem; return true; } </code></pre> <p>If anyone can help clarify why the first parameter of the push method is a pointer to a pointer, I would greatly appreciate it. Thanks.</p> <p>Amazing, thank you for all of the excellent help.</p>