summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/devfs/devstat.c
blob: 7bfdfec00cf107b90cfafb55e1711fa40cf44d95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 *  $Id$
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems.h>
#include <rtems/io.h>
#include <rtems/seterr.h>
#include <rtems/libio.h>
#include <sys/stat.h>
#include <sys/types.h>

#include "devfs.h"

int devFS_stat(
  rtems_filesystem_location_info_t *loc,
  struct stat                      *buf
)
{
  rtems_device_name_t *the_dev;

  the_dev = (rtems_device_name_t *)loc->node_access;
  if (!the_dev)
    rtems_set_errno_and_return_minus_one( EFAULT );

  buf->st_rdev  = rtems_filesystem_make_dev_t( the_dev->major, the_dev->minor );

  buf->st_mode = the_dev->mode;

  return 0;
}