Mozilla/mozilla/gc/boehm/call_tree.h
beard%netscape.com a33e2f0f43 compressed stack crawls
git-svn-id: svn://10.0.0.236/trunk@78326 18797224-902f-48f8-a5cc-f745e15eee43
2000-09-07 02:59:36 +00:00

19 lines
382 B
C

/*
call_tree.h
*/
#ifndef call_tree_h
#define call_tree_h
typedef struct call_tree call_tree;
struct call_tree {
void* pc; /* program counter */
unsigned id; /* unique identity */
call_tree* parent; /* parent node */
call_tree* siblings; /* next sibling */
call_tree* children; /* children nodes */
};
#endif