mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-19 17:38:36 +00:00
[not part of build] stack crawl tree
This commit is contained in:
parent
4e31ba4a93
commit
d234be3854
17
gc/boehm/call_tree.h
Normal file
17
gc/boehm/call_tree.h
Normal 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
|
Loading…
x
Reference in New Issue
Block a user