aboutsummaryrefslogtreecommitdiff
path: root/libiberty/getruntime.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/getruntime.c')
-rw-r--r--libiberty/getruntime.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libiberty/getruntime.c b/libiberty/getruntime.c
index 82f3d2e..9d5eed1 100644
--- a/libiberty/getruntime.c
+++ b/libiberty/getruntime.c
@@ -95,7 +95,11 @@ get_run_time (void)
#if defined (HAVE_GETRUSAGE) && defined (HAVE_SYS_RESOURCE_H)
struct rusage rusage;
+#if defined __USE_GNU && !defined __cplusplus
+ getrusage (RUSAGE_SELF, &rusage);
+#else
getrusage (0, &rusage);
+#endif
return (rusage.ru_utime.tv_sec * 1000000 + rusage.ru_utime.tv_usec
+ rusage.ru_stime.tv_sec * 1000000 + rusage.ru_stime.tv_usec);
#else /* ! HAVE_GETRUSAGE */