summaryrefslogtreecommitdiff
path: root/libdiskfs/node-times.c
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-02-20 18:34:51 +0000
committerMiles Bader <miles@gnu.org>1996-02-20 18:34:51 +0000
commitb5a497e9a7cd8a668b6384f1df2bbea1ca6c98d0 (patch)
tree80745ac0fcc30f8935bbc7d30ca37016cd0dd5c1 /libdiskfs/node-times.c
parent78dd531a047596330be804d0ceee95578db515c6 (diff)
(diskfs_set_node_times): Use maptime_read.
Diffstat (limited to 'libdiskfs/node-times.c')
-rw-r--r--libdiskfs/node-times.c40
1 files changed, 18 insertions, 22 deletions
diff --git a/libdiskfs/node-times.c b/libdiskfs/node-times.c
index 54df9c0e..720c85e0 100644
--- a/libdiskfs/node-times.c
+++ b/libdiskfs/node-times.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1994 Free Software Foundation
+ Copyright (C) 1994, 1996 Free Software Foundation
This file is part of the GNU Hurd.
@@ -20,49 +20,45 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Written by Michael I. Bushnell. */
#include "priv.h"
+#include <maptime.h>
/* If NP->dn_set_ctime is set, then modify NP->dn_stat.st_ctime
appropriately; do the analogous operation for atime and mtime as well. */
void
diskfs_set_node_times (struct node *np)
{
- int secs, usecs;
-
- do
- {
- secs = diskfs_mtime->seconds;
- usecs = diskfs_mtime->microseconds;
- }
- while (secs != diskfs_mtime->check_seconds);
-
+ struct timeval t;
+
+ maptime_read (diskfs_mtime, &t);
+
if (np->dn_set_mtime)
{
#ifdef notyet
- np->dn_stat.st_mtimespec.ts_sec = secs;
- np->dn_stat.st_mtimespec.ts_nsec = usecs * 1000;
+ np->dn_stat.st_mtimespec.ts_sec = t.tv_sec;
+ np->dn_stat.st_mtimespec.ts_nsec = t.tv_usec * 1000;
#else
- np->dn_stat.st_mtime = secs;
- np->dn_stat.st_mtime_usec = usecs;
+ np->dn_stat.st_mtime = t.tv_sec;
+ np->dn_stat.st_mtime_usec = t.tv_usec;
#endif
}
if (np->dn_set_atime)
{
#ifdef notyet
- np->dn_stat.st_atimespec.ts_sec = secs;
- np->dn_stat.st_atimespec.ts_nsec = usecs * 1000;
+ np->dn_stat.st_atimespec.ts_sec = t.tv_sec;
+ np->dn_stat.st_atimespec.ts_nsec = t.tv_usec * 1000;
#else
- np->dn_stat.st_atime = secs;
- np->dn_stat.st_atime_usec = usecs;
+ np->dn_stat.st_atime = t.tv_sec;
+ np->dn_stat.st_atime_usec = t.tv_usec;
#endif
}
if (np->dn_set_ctime)
{
#ifdef notyet
- np->dn_stat.st_ctimespec.ts_sec = secs;
- np->dn_stat.st_ctimespec.ts_nsec = usecs * 1000;
+ np->dn_stat.st_ctimespec.ts_sec = t.tv_sec;
+ np->dn_stat.st_ctimespec.ts_nsec = t.tv_usec * 1000;
#else
- np->dn_stat.st_ctime = secs;
- np->dn_stat.st_ctime_usec = usecs;
+ np->dn_stat.st_ctime = t.tv_sec;
+ np->dn_stat.st_ctime_usec = t.tv_usec;
#endif
}