(get_run_time): Return an approximate value for NT.

From-SVN: r9019
This commit is contained in:
Richard Kenner 1995-02-21 18:57:45 -05:00
parent d4bb0623b4
commit 15f000972d

View File

@ -931,15 +931,13 @@ int dump_time;
int
get_run_time ()
{
#ifdef WINNT
return 0;
#else
#ifndef WINNT
#ifdef USG
struct tms tms;
#else
#ifndef VMS
struct rusage rusage;
#else /* VMS */
#else
struct
{
int proc_user_time;
@ -948,11 +946,17 @@ get_run_time ()
int child_system_time;
} vms_times;
#endif
#endif
#endif
if (quiet_flag)
return 0;
#ifdef WINNT
if (clock() < 0)
return 0;
else
return (clock() * 1000);
#else /* not WINNT */
#ifdef USG
times (&tms);
return (tms.tms_utime + tms.tms_stime) * (1000000 / HZ);