source: rtems/cpukit/libfs/src/defaults/default_read.c @ 8587b01

4.115
Last change on this file since 8587b01 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: 553 bytes
Line 
1/**
2 * @file
3 *
4 * @brief RTEMS Default File System Read
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#include <rtems/libio.h>
17#include <rtems/libio_.h>
18#include <rtems/seterr.h>
19
20ssize_t rtems_filesystem_default_read(
21  rtems_libio_t *iop,
22  void          *buffer,
23  size_t         count
24)
25{
26  rtems_set_errno_and_return_minus_one( ENOTSUP );
27}
Note: See TracBrowser for help on using the repository browser.