Provides system call and file system interface definitions.
More...
|
#define | rtems_filesystem_split_dev_t(_dev, _major, _minor) |
|
|
#define | LIBIO_FLAGS_NO_DELAY 0x0001U /* return immediately if no data */ |
|
#define | LIBIO_FLAGS_READ 0x0002U /* reading */ |
|
#define | LIBIO_FLAGS_WRITE 0x0004U /* writing */ |
|
#define | LIBIO_FLAGS_OPEN 0x0100U /* device is open */ |
|
#define | LIBIO_FLAGS_APPEND 0x0200U /* all writes append */ |
|
#define | LIBIO_FLAGS_CLOSE_ON_EXEC 0x0800U /* close on process exec() */ |
|
#define | LIBIO_FLAGS_READ_WRITE (LIBIO_FLAGS_READ | LIBIO_FLAGS_WRITE) |
|
#define | LIBIO_FLAGS_REFERENCE_INC 0x1000U |
|
|
typedef int(* | rtems_libio_open_t) (const char *pathname, uint32_t flag, uint32_t mode) |
|
typedef int(* | rtems_libio_close_t) (int fd) |
|
typedef ssize_t(* | rtems_libio_read_t) (int fd, void *buffer, size_t count) |
|
typedef ssize_t(* | rtems_libio_write_t) (int fd, const void *buffer, size_t count) |
|
typedef int(* | rtems_libio_ioctl_t) (int fd, uint32_t command, void *buffer) |
|
typedef off_t(* | rtems_libio_lseek_t) (int fd, off_t offset, int whence) |
|
|
#define | RTEMS_FS_PERMS_READ 0x4 |
|
#define | RTEMS_FS_PERMS_WRITE 0x2 |
|
#define | RTEMS_FS_PERMS_EXEC 0x1 |
|
#define | RTEMS_FS_PERMS_RWX (RTEMS_FS_PERMS_READ | RTEMS_FS_PERMS_WRITE | RTEMS_FS_PERMS_EXEC) |
|
#define | RTEMS_FS_FOLLOW_HARD_LINK 0x8 |
|
#define | RTEMS_FS_FOLLOW_SYM_LINK 0x10 |
|
#define | RTEMS_FS_FOLLOW_LINK (RTEMS_FS_FOLLOW_HARD_LINK | RTEMS_FS_FOLLOW_SYM_LINK) |
|
#define | RTEMS_FS_MAKE 0x20 |
|
#define | RTEMS_FS_EXCLUSIVE 0x40 |
|
#define | RTEMS_FS_ACCEPT_RESIDUAL_DELIMITERS 0x80 |
|
#define | RTEMS_FS_REJECT_TERMINAL_DOT 0x100 |
|
Provides system call and file system interface definitions.
General purpose communication channel for RTEMS to allow UNIX/POSIX system call behavior under RTEMS. Initially this supported only IO to devices but has since been enhanced to support networking and support for mounted file systems.
◆ rtems_filesystem_split_dev_t
#define rtems_filesystem_split_dev_t |
( |
|
_dev, |
|
|
|
_major, |
|
|
|
_minor |
|
) |
| |
Value:do { \
(_major) = rtems_filesystem_dev_major_t ( _dev ); \
(_minor) = rtems_filesystem_dev_minor_t( _dev ); \
} while(0)
Definition at line 1540 of file libio.h.
◆ rtems_filesystem_global_location_t
Global file system location.
The global file system locations are used for
- the mount point location in the mount table entry,
- the file system root location in the mount table entry,
- the root directory location in the user environment, and
- the current directory location in the user environment.
During the path evaluation global start locations are obtained to ensure that the current file system will be not unmounted in the meantime.
To support a release within critical sections of the operating system a deferred release is supported. This is similar to malloc() and free().
- See also
- rtems_filesystem_global_location_obtain() and rtems_filesystem_global_location_release().
◆ rtems_filesystem_get_mount_handler()
Gets the mount handler for the file system type.
- Returns
- The file system mount handler associated with the type, or
NULL
if no such association exists.
◆ rtems_filesystem_initialize()
void rtems_filesystem_initialize |
( |
void |
| ) |
|
Base File System Initialization.
Initialize the foundation of the file system. This is specified by the structure rtems_filesystem_mount_table. The usual configuration is a single instantiation of the IMFS or miniIMFS with a single "/dev" directory in it.
◆ rtems_libio_iop_is_append()
static bool rtems_libio_iop_is_append |
( |
const rtems_libio_t * |
iop | ) |
|
|
inlinestatic |
Returns true if this is an append iop, otherwise returns false.
- Parameters
-
Definition at line 1418 of file libio.h.
◆ rtems_libio_iop_is_no_delay()
static bool rtems_libio_iop_is_no_delay |
( |
const rtems_libio_t * |
iop | ) |
|
|
inlinestatic |
Returns true if this is a no delay iop, otherwise returns false.
- Parameters
-
Definition at line 1388 of file libio.h.
◆ rtems_libio_iop_is_readable()
static bool rtems_libio_iop_is_readable |
( |
const rtems_libio_t * |
iop | ) |
|
|
inlinestatic |
Returns true if this is a readable iop, otherwise returns false.
- Parameters
-
Definition at line 1398 of file libio.h.
◆ rtems_libio_iop_is_writeable()
static bool rtems_libio_iop_is_writeable |
( |
const rtems_libio_t * |
iop | ) |
|
|
inlinestatic |
Returns true if this is a writeable iop, otherwise returns false.
- Parameters
-
Definition at line 1408 of file libio.h.
◆ rtems_mkdir()
int rtems_mkdir |
( |
const char * |
path, |
|
|
mode_t |
mode |
|
) |
| |
Creates a directory and all its parent directories according to path.
The mode value selects the access permissions of the directory.
- Return values
-
0 | Successful operation. |
-1 | An error occurred. The errno indicates the error. |
◆ rtems_filesystem_default_pathconf
Default pathconf settings.
Override in a filesystem.