source: rtems/cpukit/libfs/src/defaults/default_statvfs.c @ 3c96bee

4.115
Last change on this file since 3c96bee was 36f3207, checked in by Alex Ivanov <alexivanov97@…>, on 12/28/12 at 13:49:39

libfs: Doxygen Enhancement Task #3

  • Property mode set to 100644
File size: 583 bytes
Line 
1/**
2 * @file
3 *
4 * @brief RTEMS Default File System Get Statistics
5 */
6
7/*
8 *  COPYRIGHT (c) 2010.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.com/license/LICENSE.
14 */
15
16#if HAVE_CONFIG_H
17  #include "config.h"
18#endif
19
20#include <rtems/libio_.h>
21#include <rtems/seterr.h>
22
23int rtems_filesystem_default_statvfs(
24  const rtems_filesystem_location_info_t *loc,
25  struct statvfs *buf
26)
27{
28  rtems_set_errno_and_return_minus_one( ENOSYS );
29}
Note: See TracBrowser for help on using the repository browser.