Blame source/uds/permassertLinuxKernel.c

Packit Service 310c69
/*
Packit Service 310c69
 * Copyright (c) 2020 Red Hat, Inc.
Packit Service 310c69
 *
Packit Service 310c69
 * This program is free software; you can redistribute it and/or
Packit Service 310c69
 * modify it under the terms of the GNU General Public License
Packit Service 310c69
 * as published by the Free Software Foundation; either version 2
Packit Service 310c69
 * of the License, or (at your option) any later version.
Packit Service 310c69
 * 
Packit Service 310c69
 * This program is distributed in the hope that it will be useful,
Packit Service 310c69
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 310c69
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 310c69
 * GNU General Public License for more details.
Packit Service 310c69
 * 
Packit Service 310c69
 * You should have received a copy of the GNU General Public License
Packit Service 310c69
 * along with this program; if not, write to the Free Software
Packit Service 310c69
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit Service 310c69
 * 02110-1301, USA. 
Packit Service 310c69
 *
Packit Service 310c69
 * $Id: //eng/uds-releases/jasper/kernelLinux/uds/permassertLinuxKernel.c#1 $
Packit Service 310c69
 */
Packit Service 310c69
Packit Service 310c69
#include "logger.h"
Packit Service 310c69
#include "permassert.h"
Packit Service 310c69
#include "permassertInternals.h"
Packit Service 310c69
Packit Service 310c69
/**********************************************************************/
Packit Service 310c69
__attribute__((format(printf, 4, 0)))
Packit Service 310c69
void handleAssertionFailure(const char *expressionString,
Packit Service 310c69
                            const char *fileName,
Packit Service 310c69
                            int         lineNumber,
Packit Service 310c69
                            const char *format,
Packit Service 310c69
                            va_list     args)
Packit Service 310c69
{
Packit Service 310c69
  logEmbeddedMessage(LOG_ERR, "assertion \"", format, args,
Packit Service 310c69
                     "\" (%s) failed at %s:%d",
Packit Service 310c69
                     expressionString, fileName, lineNumber);
Packit Service 310c69
  logBacktrace(LOG_ERR);
Packit Service 310c69
}