vote up 0 vote down star

If I'm trying to find a bug that's being called lower in the call stack, that'd be "down" the stack, right?

flag
Why the downvotes? It's a perfectly cromulent question. – JS Bangs Nov 3 at 21:54
Someone might think of it as far off to the right. – Heath Hunnicutt Nov 3 at 21:54
This person has been rep-inflating an account. watch out for "john" – Daniel A. White Nov 3 at 21:55
6  
I think some people think this question is below them. ba dum ch I'll be here all night, folks. – Andrew Song Nov 3 at 21:56
1  
Obviously 'lower' is 'down', but what do you mean by 'lower'? – Joren Nov 3 at 21:59
show 1 more comment

closed as not a real question by Daniel A. White, Carl Norum, 17 of 26, Chris Lutz, Oscar Reyes Nov 3 at 22:00

2 Answers

vote up 1 vote down

For an upward growing stack (think plates), then yes. Something in a stack frame lower than your current frame is said to be 'below' you (though to be honest, I don't hear people say 'down' the stack often).

EDIT: And by 'lower', I mean in a stack frame which you've stored aside in order to get to your current frame. For instance:

int main() {
    a();
}

void a() {
    b();
}

int b() {
   return 0;
}

At the 'peak', main() would be the bottom frame, and on top of it would be a() and then b() at the top.

(Your comment about 'calling' a bug is also somewhat confusing.)

link|flag
+1 for qualifying "an upward growing stack". This seems to be the heart of the issue -- do you imagine the stack as growing upward or downward? I for one always think of stacks like the stacks of papers on my desk -- they always grow upward. (But AFAIK most OSs implement the call stack as growing downward instead, so that's a perfectly legitimate way of looking at it too...) – Daniel Pryden Nov 3 at 22:14
vote up 1 vote down

Correct. "Down" the stack means inside nested function calls. If A calls B and B calls C, C is "down the stack" from A, and A is "up the stack" from C.

Additionally, one doesn't usually "call" a bug. One "encounters" or "reproduces" bugs.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.