Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
83c8ddef
Commit
83c8ddef
authored
Jan 25, 1998
by
Richard Henderson
Committed by
Richard Henderson
Jan 25, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* toplev.c (get_run_time): Make sure each case gets its variables.
From-SVN: r17484
parent
db81d74a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
25 deletions
+28
-25
gcc/ChangeLog
+4
-0
gcc/toplev.c
+24
-25
No files found.
gcc/ChangeLog
View file @
83c8ddef
Sun Jan 25 22:14:28 1998 Richard Henderson <rth@cygnus.com>
* toplev.c (get_run_time): Make sure each case gets its variables.
Sun Jan 25 22:10:21 1998 Richard Henderson <rth@cygnus.com>
* configure.in (build_xm_file): Add auto-config.h if host=build.
...
...
gcc/toplev.c
View file @
83c8ddef
...
...
@@ -994,26 +994,9 @@ int dump_time;
int
get_run_time
()
{
#if !defined (_WIN32) || defined (__CYGWIN32__)
#ifdef USG
struct
tms
tms
;
#else
#ifndef VMS
struct
rusage
rusage
;
#else
struct
{
int
proc_user_time
;
int
proc_system_time
;
int
child_user_time
;
int
child_system_time
;
}
vms_times
;
#endif
#endif
#endif
if
(
quiet_flag
)
return
0
;
#ifdef __BEOS__
return
0
;
#else
/* not BeOS */
...
...
@@ -1026,6 +1009,7 @@ get_run_time ()
#ifdef _SC_CLK_TCK
{
static
int
tick
;
struct
tms
tms
;
if
(
tick
==
0
)
tick
=
1000000
/
sysconf
(
_SC_CLK_TCK
);
times
(
&
tms
);
...
...
@@ -1033,16 +1017,31 @@ get_run_time ()
}
#else
#ifdef USG
times
(
&
tms
);
return
(
tms
.
tms_utime
+
tms
.
tms_stime
)
*
(
1000000
/
HZ
);
{
struct
tms
tms
;
times
(
&
tms
);
return
(
tms
.
tms_utime
+
tms
.
tms_stime
)
*
(
1000000
/
HZ
);
}
#else
#ifndef VMS
getrusage
(
0
,
&
rusage
);
return
(
rusage
.
ru_utime
.
tv_sec
*
1000000
+
rusage
.
ru_utime
.
tv_usec
+
rusage
.
ru_stime
.
tv_sec
*
1000000
+
rusage
.
ru_stime
.
tv_usec
);
{
struct
rusage
rusage
;
getrusage
(
0
,
&
rusage
);
return
(
rusage
.
ru_utime
.
tv_sec
*
1000000
+
rusage
.
ru_utime
.
tv_usec
+
rusage
.
ru_stime
.
tv_sec
*
1000000
+
rusage
.
ru_stime
.
tv_usec
);
}
#else
/* VMS */
times
((
void
*
)
&
vms_times
);
return
(
vms_times
.
proc_user_time
+
vms_times
.
proc_system_time
)
*
10000
;
{
struct
{
int
proc_user_time
;
int
proc_system_time
;
int
child_user_time
;
int
child_system_time
;
}
vms_times
;
times
((
void
*
)
&
vms_times
);
return
(
vms_times
.
proc_user_time
+
vms_times
.
proc_system_time
)
*
10000
;
}
#endif
/* VMS */
#endif
/* USG */
#endif
/* _SC_CLK_TCK */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment