source: rtems/c/src/libfs/src/imfs/imfs_fdatasync.c @ a4e2f08

4.104.114.84.95
Last change on this file since a4e2f08 was a4e2f08, checked in by Jennifer Averett <Jennifer.Averett@…>, on 12/03/98 at 22:19:06

Added imfs_fdatasync routine that gets called from both fdatasync and datasync.

  • Property mode set to 100644
File size: 574 bytes
Line 
1/*
2 *  IMFS_fdatasync
3 *
4 *  The following routine does a sync on an IMFS node.  The In Memory
5 *  File System is always in sync, therefore this routine always returns
6 *  pass.
7 *
8 *  COPYRIGHT (c) 1989-1998.
9 *  On-Line Applications Research Corporation (OAR).
10 *  Copyright assigned to U.S. Government, 1994.
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.OARcorp.com/rtems/license.html.
15 *
16 *  $Id$
17 */
18
19#include "imfs.h"
20
21int IMFS_fdatasync(
22  rtems_libio_t *iop
23)
24{
25  return 0;
26}
Note: See TracBrowser for help on using the repository browser.