1 /* Test of getting resource utilization.
2 Copyright (C) 2012-2017 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2012. */
21 #include <sys/resource.h>
23 #include "signature.h"
24 SIGNATURE_CHECK (getrusage
, int, (int, struct rusage
*));
30 volatile unsigned int counter
;
39 ret
= getrusage (RUSAGE_SELF
, &before
);
42 /* Busy-loop for one second. */
45 ASSERT (gettimeofday (&t0
, NULL
) == 0);
52 for (i
= 0; i
< 1000000; i
++)
55 ASSERT (gettimeofday (&t
, NULL
) == 0);
56 if (t
.tv_sec
- t0
.tv_sec
> 1
57 || (t
.tv_sec
- t0
.tv_sec
== 1 && t
.tv_usec
>= t0
.tv_usec
))
62 ret
= getrusage (RUSAGE_SELF
, &after
);
65 ASSERT (after
.ru_utime
.tv_sec
>= before
.ru_utime
.tv_sec
);
66 ASSERT (after
.ru_stime
.tv_sec
>= before
.ru_stime
.tv_sec
);
68 /* Compute time spent during busy-looping (in usec). */
69 unsigned int spent_utime
=
70 (after
.ru_utime
.tv_sec
> before
.ru_utime
.tv_sec
71 ? (after
.ru_utime
.tv_sec
- before
.ru_utime
.tv_sec
- 1) * 1000000U
72 + after
.ru_utime
.tv_usec
+ (1000000U - before
.ru_utime
.tv_usec
)
73 : after
.ru_utime
.tv_usec
- before
.ru_utime
.tv_usec
);
74 unsigned int spent_stime
=
75 (after
.ru_stime
.tv_sec
> before
.ru_stime
.tv_sec
76 ? (after
.ru_stime
.tv_sec
- before
.ru_stime
.tv_sec
- 1) * 1000000U
77 + after
.ru_stime
.tv_usec
+ (1000000U - before
.ru_stime
.tv_usec
)
78 : after
.ru_stime
.tv_usec
- before
.ru_stime
.tv_usec
);
80 ASSERT (spent_utime
+ spent_stime
<= 2 * 1000000U);
81 /* Assume that the load during this busy-looping was less than 100. */
82 ASSERT (spent_utime
+ spent_stime
> 10000U);