aboutsummaryrefslogtreecommitdiff
path: root/lib/ovsdb-data.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-03-10 11:15:01 -0800
committerBen Pfaff <blp@nicira.com>2011-03-10 11:24:00 -0800
commitc5f341ab193b9126dffef8c77bf8ed35e91290fd (patch)
treef44aae0db39ec6f5c1001535b19fe511333492d2 /lib/ovsdb-data.h
parent7f90cb0efe782cbbfb2557d81cf0f9de21e12435 (diff)
ovsdb: Implement garbage collection.
Diffstat (limited to 'lib/ovsdb-data.h')
-rw-r--r--lib/ovsdb-data.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ovsdb-data.h b/lib/ovsdb-data.h
index fe71f908..181df3b1 100644
--- a/lib/ovsdb-data.h
+++ b/lib/ovsdb-data.h
@@ -236,6 +236,8 @@ struct ovsdb_symbol_table {
struct ovsdb_symbol {
struct uuid uuid; /* The UUID that the symbol represents. */
bool created; /* Already used to create row? */
+ bool strong_ref; /* Parsed a strong reference to this row? */
+ bool weak_ref; /* Parsed a weak reference to this row? */
};
struct ovsdb_symbol_table *ovsdb_symbol_table_create(void);