add dirty and references

This commit is contained in:
Bob Halley 1999-01-28 23:50:55 +00:00
parent 923e2ea400
commit c5bd4120ee

View file

@ -41,6 +41,8 @@ typedef struct dns_rbt_node {
struct dns_rbt_node *right;
struct dns_rbt_node *down;
enum { red, black } color;
unsigned int dirty:1;
unsigned int references:31;
void *data;
unsigned int name_length;
} dns_rbtnode_t;