summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/utimes.c
blob: 648cb8b7a604c5ce1ccff3edae27b865aa134a1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 *  Written by: Vinu Rajashekhar <vinutheraj@gmail.com>
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <sys/types.h>
#include <utime.h>
#include <sys/time.h>

int utimes(
  const char           *path,
  const struct timeval  times[2]
) 
{
  struct utimbuf timeinsecs;

  if ( times == NULL )
    return utime( path, NULL );

  timeinsecs.actime  = times[0].tv_sec;
  timeinsecs.modtime = times[1].tv_sec;

  return utime( path, &timeinsecs );
}