source: rtems/cpukit/libcsupport/src/chmod.c @ da154e14

4.115
Last change on this file since da154e14 was da154e14, checked in by Sebastian Huber <sebastian.huber@…>, on 05/14/12 at 14:55:41

Filesystem: Move operations to mount table entry

The scope of the file system operations is the file system instance.
The scope of the file system node handlers is the file location. The
benefit of moving the operations to the mount table entry is a size
reduction of the file location (rtems_filesystem_location_info_t). The
code size is slightly increased due to additional load instructions.

Restructure rtems_filesystem_mount_table_entry_t to improve cache
efficiency.

  • Property mode set to 100644
File size: 801 bytes
RevLine 
[07a3253d]1/*
2 *  chmod() - POSIX 1003.1b 5.6.4 - Change File Modes
3 *
[08311cc3]4 *  COPYRIGHT (c) 1989-1999.
[07a3253d]5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
[0eae36c7]9 *  http://www.rtems.com/license/LICENSE.
[07a3253d]10 */
11
[9c49db4]12#if HAVE_CONFIG_H
[3b7c123]13  #include "config.h"
[9c49db4]14#endif
15
[07a3253d]16#include <sys/stat.h>
17
[3ba74c73]18#include <rtems/libio_.h>
[07a3253d]19
[3b7c123]20int chmod( const char *path, mode_t mode )
[07a3253d]21{
[3b7c123]22  int rv = 0;
23  rtems_filesystem_eval_path_context_t ctx;
[2563410]24  int eval_flags = RTEMS_FS_FOLLOW_LINK;
[3b7c123]25  const rtems_filesystem_location_info_t *currentloc =
26    rtems_filesystem_eval_path_start( &ctx, path, eval_flags );
[07a3253d]27
[da154e14]28  rv = (*currentloc->mt_entry->ops->fchmod_h)( currentloc, mode );
[50f32b11]29
[3b7c123]30  rtems_filesystem_eval_path_cleanup( &ctx );
[d71fcab]31
[3b7c123]32  return rv;
[07a3253d]33}
Note: See TracBrowser for help on using the repository browser.