RTEMS 6.1-rc2
Loading...
Searching...
No Matches
fs.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-2-Clause */
2
11/*
12 * COPYRIGHT (c) 1989-2011.
13 * On-Line Applications Research Corporation (OAR).
14 *
15 * Modifications to support reference counting in the file system are
16 * Copyright (c) 2012 embedded brains GmbH & Co. KG
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
31 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40#ifndef _RTEMS_FS_H
41#define _RTEMS_FS_H
42
43#include <rtems/chain.h>
44
45#ifdef __cplusplus
46extern "C" {
47#endif
48
49/*
50 * File descriptor Table Information
51 */
52
53/* Forward declarations */
54
55/* FIXME: shouldn't this better not be here? */
56typedef struct rtems_libio_tt rtems_libio_t;
57
61
66
73 rtems_chain_node mt_entry_node;
74 void *node_access;
75 void *node_access_2;
79
102 int reference_count;
103
110
117
118/*
119 * Return the mount table entry for a path location.
120 */
121#define rtems_filesystem_location_mount(_pl) ((_pl)->mt_entry)
122
123#ifdef __cplusplus
124}
125#endif
126
127#endif
128/* end of include file */
This header file provides the Chains API.
struct rtems_filesystem_location_info_tt rtems_filesystem_location_info_t
File system location.
This structure represents a chain node.
Definition: chain.h:78
File system node operations table.
Definition: libio.h:1021
File system operations table.
Definition: libio.h:489
Global file system location.
Definition: fs.h:100
struct rtems_filesystem_global_location_t * deferred_released_next
Definition: fs.h:109
int deferred_released_count
Definition: fs.h:115
File system location.
Definition: fs.h:72
Mount table entry.
Definition: libio.h:1622
An open file data structure.
Definition: libio.h:1338