Lines Matching refs:stack
79 typedef struct stack {
82 } stack;
105 * determines the call stack. Each called method must be indented by one
126 stack *callStack;
163 callStack = (stack *) malloc(sizeof(stack) * numThreads);
198 // Allocate space for the thread stack, if necessary
263 // Exiting method must be currently on top of stack (unless stack is empty)
266 printf(" Exiting %s (past bottom of stack)\n", records[nextRecord].fullName);
281 } else { // exiting method doesn't match stack's top method