source: rtems/c/src/lib/libc/utime.c @ 4e36a2f

4.104.114.84.95
Last change on this file since 4e36a2f was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 905 bytes
Line 
1/*
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 *  $Id$
12 */
13
14#include <sys/types.h>
15#include <utime.h>
16#include <errno.h>
17
18#include "libio_.h"
19
20int utime(
21  const char           *path,
22  const struct utimbuf *times
23)
24{
25  rtems_filesystem_location_info_t   temp_loc;
26  int                                result;
27
28  if ( rtems_filesystem_evaluate_path( path, 0x00, &temp_loc, TRUE ) )
29    return -1;
30
31  if ( !temp_loc.ops->utime )
32    set_errno_and_return_minus_one( ENOTSUP );
33
34  result = (*temp_loc.ops->utime)( &temp_loc, times->actime, times->modtime );
35
36  rtems_filesystem_freenode( &temp_loc );
37
38  return result;
39}
Note: See TracBrowser for help on using the repository browser.