X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fshash.h;h=f97e6616d09c70087122841e775c4f742a108024;hb=d78ac3883fd1511505aa3f13db2a571015b03bf2;hp=de8504527f77b2ea85dabf4d9290d5e3f3ff768b;hpb=ce5a3e38dacd8042dd7c4de7be24aca9c2887103;p=openvswitch diff --git a/lib/shash.h b/lib/shash.h index de850452..f97e6616 100644 --- a/lib/shash.h +++ b/lib/shash.h @@ -44,9 +44,11 @@ struct shash { void shash_init(struct shash *); void shash_destroy(struct shash *); +void shash_destroy_free_data(struct shash *); void shash_swap(struct shash *, struct shash *); void shash_moved(struct shash *); void shash_clear(struct shash *); +void shash_clear_free_data(struct shash *); bool shash_is_empty(const struct shash *); size_t shash_count(const struct shash *); struct shash_node *shash_add(struct shash *, const char *, const void *);