mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-14 07:19:36 +08:00
44 lines
855 B
C
44 lines
855 B
C
/**
|
|
* @file
|
|
*
|
|
* @ingroup rtems_bsd
|
|
*
|
|
* @brief TODO.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2009, 2010 embedded brains GmbH. All rights reserved.
|
|
*
|
|
* embedded brains GmbH
|
|
* Obere Lagerstr. 30
|
|
* 82178 Puchheim
|
|
* Germany
|
|
* <rtems@embedded-brains.de>
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*/
|
|
|
|
#ifndef _RTEMS_BSD_BSD_HH_
|
|
#define _RTEMS_BSD_BSD_HH_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
#include <freebsd/machine/rtems-bsd-config.h>
|
|
#include <freebsd/machine/rtems-bsd-select.h>
|
|
|
|
rtems_status_code rtems_bsd_initialize(void);
|
|
|
|
rtems_status_code rtems_bsd_initialize_with_interrupt_server(void);
|
|
|
|
void rtems_bsd_shell_initialize(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* _RTEMS_BSD_BSD_HH_ */
|