2018-01-01 00:32:25 +00:00
|
|
|
/* Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
1996-12-04 01:41:39 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1996-12-04 01:41:39 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1996-12-04 01:41:39 +00:00
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
#include <assert.h>
|
2001-08-17 04:49:12 +00:00
|
|
|
#include <libintl.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* This function, when passed an error number, a filename, and a line
|
|
|
|
number, prints a message on the standard error stream of the form:
|
2011-05-15 04:34:48 +00:00
|
|
|
a.c:10: foobar: Unexpected error: Computer bought the farm
|
1995-02-18 01:27:10 +00:00
|
|
|
It then aborts program execution via a call to `abort'. */
|
|
|
|
void
|
|
|
|
__assert_perror_fail (int errnum,
|
|
|
|
const char *file, unsigned int line,
|
|
|
|
const char *function)
|
|
|
|
{
|
1996-12-04 01:41:39 +00:00
|
|
|
char errbuf[1024];
|
2001-08-17 04:49:12 +00:00
|
|
|
|
2011-05-15 04:34:48 +00:00
|
|
|
char *e = __strerror_r (errnum, errbuf, sizeof errbuf);
|
2018-01-31 09:52:14 +00:00
|
|
|
__assert_fail_base (_("%s%s%s:%u: %s%sUnexpected error: %s.\n%n"),
|
2011-05-15 04:34:48 +00:00
|
|
|
e, file, line, function);
|
1995-02-18 01:27:10 +00:00
|
|
|
}
|
2002-08-30 01:31:18 +00:00
|
|
|
libc_hidden_def (__assert_perror_fail)
|