source: rtems/cpukit/libfs/src/imfs/imfs_utime.c @ a29d2e7

4.104.114.84.95
Last change on this file since a29d2e7 was a5305f6b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/17/04 at 08:34:41

Remove stray white spaces.

  • Property mode set to 100644
File size: 871 bytes
Line 
1/*
2 *  IMFS_utime
3 *
4 *  This routine is the implementation of the utime() system
5 *  call for the IMFS.
6 *
7 *  COPYRIGHT (c) 1989-1999.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *  $Id$
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <errno.h>
22#include <sys/time.h>
23
24#include <rtems/libio_.h>
25#include "imfs.h"
26
27int IMFS_utime(
28  rtems_filesystem_location_info_t  *pathloc,       /* IN */
29  time_t                             actime,        /* IN */
30  time_t                             modtime        /* IN */
31)
32{
33  IMFS_jnode_t *the_jnode;
34
35  the_jnode = (IMFS_jnode_t *) pathloc->node_access;
36
37  the_jnode->stat_atime = actime;
38  the_jnode->stat_mtime = modtime;
39
40  return 0;
41}
Note: See TracBrowser for help on using the repository browser.