aboutsummaryrefslogtreecommitdiff
path: root/src/common/util.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2013-07-19 13:40:20 -0400
committerNick Mathewson <nickm@torproject.org>2013-07-19 13:40:20 -0400
commitf6d8bc9389db72dc654560d0f86fd3edd3b14934 (patch)
tree42ff03d119ebcba66978dfdeb9d9d6a8bbd3d729 /src/common/util.h
parent5343ee1a06ebb959fc77753898015186b94a5daa (diff)
downloadtor-f6d8bc9389db72dc654560d0f86fd3edd3b14934.tar
tor-f6d8bc9389db72dc654560d0f86fd3edd3b14934.tar.gz
Refactor the assertion-failure code into a function
Diffstat (limited to 'src/common/util.h')
-rw-r--r--src/common/util.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/util.h b/src/common/util.h
index f6d828796..1c92c4f5f 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -48,13 +48,13 @@
/** Like assert(3), but send assertion failures to the log as well as to
* stderr. */
#define tor_assert(expr) STMT_BEGIN \
- if (PREDICT_UNLIKELY(!(expr))) { \
- log_err(LD_BUG, "%s:%d: %s: Assertion %s failed; aborting.", \
- SHORT_FILE__, __LINE__, __func__, #expr); \
- fprintf(stderr,"%s:%d %s: Assertion %s failed; aborting.\n", \
- SHORT_FILE__, __LINE__, __func__, #expr); \
- abort(); \
- } STMT_END
+ if (PREDICT_UNLIKELY(!(expr))) { \
+ tor_assertion_failed_(SHORT_FILE__, __LINE__, __func__, #expr); \
+ abort(); \
+ } STMT_END
+
+void tor_assertion_failed_(const char *fname, unsigned int line,
+ const char *func, const char *expr);
/* If we're building with dmalloc, we want all of our memory allocation
* functions to take an extra file/line pair of arguments. If not, not.