diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-06-04 20:50:18 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-06-04 20:50:24 -0400 |
commit | 58daf39a6c4002a9dd89690d88ce2ec41b2a7ea3 (patch) | |
tree | 1bc3760b30ce8753e5637d97dd8f0929da56c697 /src/libudev/set.h | |
parent | 730b8403f9dc3e106379595e5667373f2eedb82e (diff) |
src/libudev/cgroup-util.{c,h}: bring in line with upstream
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/libudev/set.h')
-rw-r--r-- | src/libudev/set.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libudev/set.h b/src/libudev/set.h index 9162e2ae80..8864f7b34e 100644 --- a/src/libudev/set.h +++ b/src/libudev/set.h @@ -33,7 +33,15 @@ typedef struct Set Set; Set *set_new(hash_func_t hash_func, compare_func_t compare_func); void set_free(Set* s); +static inline void set_freep(Set **s) { + set_free(*s); +} + void set_free_free(Set *s); +static inline void set_free_freep(Set **s) { + set_free_free(*s); +} + Set* set_copy(Set *s); int set_ensure_allocated(Set **s, hash_func_t hash_func, compare_func_t compare_func); @@ -69,3 +77,6 @@ char **set_get_strv(Set *s); #define SET_FOREACH_BACKWARDS(e, s, i) \ for ((i) = ITERATOR_LAST, (e) = set_iterate_backwards((s), &(i)); (e); (e) = set_iterate_backwards((s), &(i))) + +#define _cleanup_set_free_ _cleanup_(set_freep) +#define _cleanup_set_free_free_ _cleanup_(set_free_freep) |