source: rtems-libbsd/rtemsbsd/src/rtems-bsd-assert.c @ be8032d

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since be8032d was 6ad03bf, checked in by Joel Sherrill <joel.sherrill@…>, on 03/08/12 at 16:31:56

Remove rtems/ from includes of RTEMS specific files

  • Property mode set to 100644
File size: 787 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup rtems_bsd_rtems
5 *
6 * @brief TODO.
7 */
8
9/*
10 * Copyright (c) 2009, 2010 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Obere Lagerstr. 30
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.com/license/LICENSE.
21 */
22
23#include <freebsd/machine/rtems-bsd-config.h>
24
25#include <freebsd/sys/types.h>
26#include <freebsd/sys/systm.h>
27
28void
29rtems_bsd_assert_func(const char *file, int line, const char *func, const char *expr)
30{
31        panic(
32                "assertion \"%s\" failed: file \"%s\", line %d%s%s\n",
33                expr,
34                file,
35                line,
36                (func != NULL) ? ", function: " : "",
37                (func != NULL) ? func : ""
38        );
39}
Note: See TracBrowser for help on using the repository browser.