Filesystem: Add and use rtems_filesystem_chmod()

Implement POSIX requirements in the high-level file system layer.
This commit is contained in:
Sebastian Huber
2013-09-11 10:34:02 +02:00
parent 3dbb68d991
commit b6657c3957
5 changed files with 49 additions and 51 deletions

View File

@@ -566,6 +566,11 @@ int rtems_filesystem_mknod(
int rtems_filesystem_chdir( rtems_filesystem_location_info_t *loc );
int rtems_filesystem_chmod(
const rtems_filesystem_location_info_t *loc,
mode_t mode
);
int rtems_filesystem_chown(
const char *path,
uid_t owner,