summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems-rfs.h
blob: 958f9a636b12b1753c11e84e4590ee0695edd7b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
 * @file
 *
 * @brief RFS File system Initialization
 * @ingroup rtems_rfs
 *
 * RTEMS File System
 *
 */

/*
 *  COPYRIGHT (c) 2010 Chris Johns <chrisj@rtems.org>
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#if !defined(RTEMS_RFS_DEFINED)
#define RTEMS_RFS_DEFINED

#include <rtems.h>
#include <rtems/fs.h>

/**
 * @defgroup rtems_rfs RTEMS File System Group Management
 *
 * @ingroup FileSystemTypesAndMount
 */
/**@{*/

/**
 * Initialise the RFS File system.
 */
int rtems_rfs_rtems_initialise (rtems_filesystem_mount_table_entry_t *mt_entry, const void *data);

/**@}*/
#endif