summaryrefslogtreecommitdiff
path: root/src/common/compat_threads.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-11-17 12:27:25 -0500
committerNick Mathewson <nickm@torproject.org>2017-12-08 14:47:19 -0500
commitc92ac9f5cbb4440b5f87c7e0dd6bec5147d72405 (patch)
tree2cd04944fc6132f5abadddbe6d225801385abcac /src/common/compat_threads.h
parent2f086888b14be3998421b29bfc81d037b8073202 (diff)
downloadtor-c92ac9f5cbb4440b5f87c7e0dd6bec5147d72405.tar.gz
tor-c92ac9f5cbb4440b5f87c7e0dd6bec5147d72405.zip
Convert the rest of src/common's headers to use FREE_AND_NULL
Diffstat (limited to 'src/common/compat_threads.h')
-rw-r--r--src/common/compat_threads.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/compat_threads.h b/src/common/compat_threads.h
index 42f14eab2a..26e291ae60 100644
--- a/src/common/compat_threads.h
+++ b/src/common/compat_threads.h
@@ -50,7 +50,8 @@ void tor_mutex_init(tor_mutex_t *m);
void tor_mutex_init_nonrecursive(tor_mutex_t *m);
void tor_mutex_acquire(tor_mutex_t *m);
void tor_mutex_release(tor_mutex_t *m);
-void tor_mutex_free(tor_mutex_t *m);
+void tor_mutex_free_(tor_mutex_t *m);
+#define tor_mutex_free(m) FREE_AND_NULL(tor_mutex, (m))
void tor_mutex_uninit(tor_mutex_t *m);
unsigned long tor_get_thread_id(void);
void tor_threads_init(void);
@@ -77,7 +78,8 @@ typedef struct tor_cond_t {
} tor_cond_t;
tor_cond_t *tor_cond_new(void);
-void tor_cond_free(tor_cond_t *cond);
+void tor_cond_free_(tor_cond_t *cond);
+#define tor_cond_free(c) FREE_AND_NULL(tor_cond, (c))
int tor_cond_init(tor_cond_t *cond);
void tor_cond_uninit(tor_cond_t *cond);
int tor_cond_wait(tor_cond_t *cond, tor_mutex_t *mutex,