OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [libcsupport/] [src/] [utime.c] - Blame information for rev 1771

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  utime() - POSIX 1003.1b 5.5.6 - Set File Access and Modification Times
3
 *
4
 *  COPYRIGHT (c) 1989-1999.
5
 *  On-Line Applications Research Corporation (OAR).
6
 *
7
 *  The license and distribution terms for this file may be
8
 *  found in the file LICENSE in this distribution or at
9
 *  http://www.OARcorp.com/rtems/license.html.
10
 *
11
 *  utime.c,v 1.10 2002/01/04 18:29:37 joel Exp
12
 */
13
 
14
#if HAVE_CONFIG_H
15
#include "config.h"
16
#endif
17
 
18
#include <sys/types.h>
19
#include <utime.h>
20
#include <errno.h>
21
 
22
#include <rtems/libio_.h>
23
#include <rtems/seterr.h>
24
 
25
int utime(
26
  const char           *path,
27
  const struct utimbuf *times
28
)
29
{
30
  rtems_filesystem_location_info_t   temp_loc;
31
  int                                result;
32
 
33
  if ( rtems_filesystem_evaluate_path( path, 0x00, &temp_loc, TRUE ) )
34
    return -1;
35
 
36
  if ( !temp_loc.ops->utime_h ){
37
    rtems_filesystem_freenode( &temp_loc );
38
    rtems_set_errno_and_return_minus_one( ENOTSUP );
39
  }
40
 
41
  result = (*temp_loc.ops->utime_h)( &temp_loc, times->actime, times->modtime );
42
 
43
  rtems_filesystem_freenode( &temp_loc );
44
 
45
  return result;
46
}

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.