source: rtems/c/src/lib/libc/fs_null_handlers.c @ 458bd34

4.104.114.84.95
Last change on this file since 458bd34 was 51435fc7, checked in by Joel Sherrill <joel.sherrill@…>, on 10/12/99 at 19:26:37

Split null handlers table to own file and renamed.

Renamed IMFS handler tables to include IMFS prefix.

  • Property mode set to 100644
File size: 870 bytes
Line 
1/*
2 *  Null Filesystem Operations Tables
3 *
4 *  COPYRIGHT (c) 1989-1998.
5 *  On-Line Applications Research Corporation (OAR).
6 *  Copyright assigned to U.S. Government, 1994.
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#include <errno.h>
16
17#include <rtems/libio.h>
18
19/*
20 *  Set of null operations handlers.
21 */
22
23rtems_filesystem_file_handlers_r rtems_filesystem_null_handlers = {
24  NULL,       /* open */
25  NULL,       /* close */
26  NULL,       /* read */
27  NULL,       /* write */
28  NULL,       /* ioctl */
29  NULL,       /* lseek */
30  NULL,       /* fstat */
31  NULL,       /* fchmod */
32  NULL,       /* ftruncate */
33  NULL,       /* fpathconf */
34  NULL,       /* fsync */
35  NULL,       /* fdatasync */
36  NULL        /* fcntl */
37};
Note: See TracBrowser for help on using the repository browser.