From: phk Date: Mon, 10 Jul 2006 13:48:01 +0000 (+0000) Subject: Dump errno and strerror in assert X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea10c0f0390156bedb191bbf5b24f7ec61d645bd;p=varnish Dump errno and strerror in assert git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@406 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- 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 */ +}