March 23, 2003

largely unphysical

largely unphysical
questions remained
in the blond curtain

fluxions of cement
we've had enough with
and there, gesturing

with indrawn talons
fair, antiquated form
of farcery circumvented

rushing lingo intrudes
loneliness will make it cohere
a stand against vengeance

that's largely speculative
my ordered, ordered princes

Posted by Brian Stefans at March 23, 2003 07:07 PM
Comments

Each Stack Frame represents a function. The bottom frame is always the main function, and the frames above it are the other functions that main calls. At any given time, the stack can show you the path your code has taken to get to where it is. The top frame represents the function the code is currently executing, and the frame below it is the function that called the current function, and the frame below that represents the function that called the function that called the current function, and so on all the way down to main, which is the starting point of any C program.

Posted by: Gwenhoivar at January 18, 2004 05:11 PM

This back and forth is an important concept to understand in C programming, especially on the Mac's RISC architecture. Almost every variable you work with can be represented in 32 bits of memory: thirty-two 1s and 0s define the data that a simple variable can hold. There are exceptions, like on the new 64-bit G5s and in the 128-bit world of AltiVec

Posted by: Gerrard at January 18, 2004 05:11 PM

The Stack is just what it sounds like: a tower of things that starts at the bottom and builds upward as it goes. In our case, the things in the stack are called "Stack Frames" or just "frames". We start with one stack frame at the very bottom, and we build up from there.

Posted by: Barnabas at January 18, 2004 05:11 PM

This back and forth is an important concept to understand in C programming, especially on the Mac's RISC architecture. Almost every variable you work with can be represented in 32 bits of memory: thirty-two 1s and 0s define the data that a simple variable can hold. There are exceptions, like on the new 64-bit G5s and in the 128-bit world of AltiVec

Posted by: Aaron at January 18, 2004 05:12 PM

Being able to understand that basic idea opens up a vast amount of power that can be used and abused, and we're going to look at a few of the better ways to deal with it in this article.

Posted by: Zachary at January 18, 2004 05:12 PM