source: rtems/c/src/lib/libc/imfs_stat.c @ 0dd1d44

4.104.114.84.95
Last change on this file since 0dd1d44 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 *  IMFS_stat
3 * 
4 *  This routine provides a stat for the IMFS file system.
5 *
6 *  COPYRIGHT (c) 1989-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#include <errno.h>
17#include "imfs.h"
18#include "libio_.h"
19
20int IMFS_stat(
21  rtems_filesystem_location_info_t *loc,
22  struct stat                      *buf
23)
24{
25  IMFS_jnode_t   *the_jnode;
26  IMFS_device_t  *io;
27
28  the_jnode = loc->node_access;
29
30
31  switch ( the_jnode->type ) {
32
33    case IMFS_DEVICE:
34      io          = &the_jnode->info.device;
35      buf->st_dev = rtems_filesystem_make_dev_t( io->major, io->minor );
36      break;
37
38    case IMFS_MEMORY_FILE:
39      buf->st_size = the_jnode->info.file.size;
40      break;
41   
42    default:
43      set_errno_and_return_minus_one( ENOTSUP );
44      break;
45  }
46
47  buf->st_mode  = the_jnode->st_mode;
48  buf->st_nlink = the_jnode->st_nlink;
49  buf->st_ino   = the_jnode->st_ino;
50  buf->st_uid   = the_jnode->st_uid;
51  buf->st_gid   = the_jnode->st_gid;
52
53  buf->st_atime = the_jnode->st_atime;
54  buf->st_mtime = the_jnode->st_mtime;
55  buf->st_ctime = the_jnode->st_ctime;
56
57  return 0;
58}
Note: See TracBrowser for help on using the repository browser.