From ea10c0f0390156bedb191bbf5b24f7ec61d645bd Mon Sep 17 00:00:00 2001 From: phk Date: Mon, 10 Jul 2006 13:48:01 +0000 Subject: [PATCH] Dump errno and strerror in assert git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@406 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/bin/varnishd/shmlog.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/varnish-cache/bin/varnishd/shmlog.c b/varnish-cache/bin/varnishd/shmlog.c index a30253c0..f352886b 100644 --- a/varnish-cache/bin/varnishd/shmlog.c +++ b/varnish-cache/bin/varnishd/shmlog.c @@ -172,3 +172,16 @@ VSL_MgtInit(const char *fn, unsigned size) memset(VSL_stats, 0, sizeof *VSL_stats); } +/*--------------------------------------------------------------------*/ + +void +__assert(const char *func, const char *file, int line, const char *failedexpr) +{ + (void)fprintf(stderr, + "\r\nAssertion failed: (%s)\n" + " function %s, file %s, line %d.\n" + " errno %d = \"%s\"\n", + failedexpr, func, file, line, errno, strerror(errno)); + abort(); + /* NOTREACHED */ +} -- 2.39.5