[not part of build] stack crawl tree

This commit is contained in:
beard%netscape.com 2000-04-10 17:38:25 +00:00
parent 4e31ba4a93
commit d234be3854

17
gc/boehm/call_tree.h Normal file
View File

@ -0,0 +1,17 @@
/*
call_tree.h
*/
#ifndef call_tree_h
#define call_tree_h
typedef struct call_tree call_tree;
struct call_tree {
void* pc; /* program counter */
call_tree* parent; /* parent node */
call_tree* siblings; /* next sibling */
call_tree* children; /* children nodes */
};
#endif