source: rtems-libbsd/rtemsbsd/src/rtems-bsd-init-with-irq.c @ 6ad03bf

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 6ad03bf 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: 901 bytes
RevLine 
[a9153ec]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
[6ad03bf]23#include <freebsd/machine/rtems-bsd-config.h>
[a9153ec]24
25#include <rtems/irq-extension.h>
26
[6ad03bf]27#include <freebsd/bsd.h>
[a9153ec]28
29rtems_status_code
30rtems_bsd_initialize_with_interrupt_server(void)
31{
32        rtems_status_code sc = RTEMS_SUCCESSFUL;
33
34        sc = rtems_interrupt_server_initialize(
35                BSD_TASK_PRIORITY_INTERRUPT,
36                BSD_MINIMUM_TASK_STACK_SIZE,
37                RTEMS_DEFAULT_MODES,
38                RTEMS_DEFAULT_ATTRIBUTES,
39                NULL
40        );
41        if (sc != RTEMS_SUCCESSFUL) {
42                return RTEMS_UNSATISFIED;
43        }
44
45        return rtems_bsd_initialize();
46}
Note: See TracBrowser for help on using the repository browser.