#include <libio.h> int mount( rtems_filesystem_mount_table_entry_t **mt_entry, rtems_filesystem_operations_table *fs_ops, rtems_filesystem_options_t fsoptions, char *device, char *mount_point );
The mount
routines mounts the filesystem class
which uses the filesystem operations specified by fs_ops
and fsoptions
. The filesystem is mounted at the directory
mount_point
and the mode of the mounted filesystem is
specified by fsoptions
. If this filesystem class requires
a device, then the name of the device must be specified by device
.
If this operation succeeds, the mount table entry for the mounted
filesystem is returned in mt_entry
.
NONE
Copyright © 1988-2008 OAR Corporation