gecko-dev/gc/boehm/call_tree.h

19 строки
382 B
C
Исходник Обычный вид История

2000-04-10 21:38:25 +04:00
/*
call_tree.h
*/
#ifndef call_tree_h
#define call_tree_h
typedef struct call_tree call_tree;
struct call_tree {
void* pc; /* program counter */
2000-09-07 06:59:36 +04:00
unsigned id; /* unique identity */
2000-04-10 21:38:25 +04:00
call_tree* parent; /* parent node */
call_tree* siblings; /* next sibling */
call_tree* children; /* children nodes */
};
#endif