2012-03-11 10:57:13 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This program is free software: you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published by the Free
|
|
|
|
Software Foundation, either version 3 of the License, or (at your option)
|
|
|
|
any later version.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
more details.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program. If not, see <http://www.gnu.org/licenses/>.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
|
|
|
|
benchsyscall.cpp
|
|
|
|
Benchmarks the speed of system calls.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2015-06-10 17:24:25 -04:00
|
|
|
#include <err.h>
|
2011-12-02 06:27:58 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2013-05-14 04:07:56 -04:00
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
static int uptime(uintmax_t* usecs)
|
|
|
|
{
|
|
|
|
struct timespec uptime;
|
|
|
|
if ( clock_gettime(CLOCK_BOOT, &uptime) < 0 )
|
|
|
|
return -1;
|
|
|
|
*usecs = uptime.tv_sec * 1000000ULL + uptime.tv_nsec / 1000ULL;
|
|
|
|
return 0;
|
|
|
|
}
|
2011-12-02 06:27:58 -05:00
|
|
|
|
2012-09-08 14:55:43 -04:00
|
|
|
int main(int /*argc*/, char* /*argv*/[])
|
2011-12-02 06:27:58 -05:00
|
|
|
{
|
|
|
|
uintmax_t start;
|
2015-06-10 17:24:25 -04:00
|
|
|
if ( uptime(&start) )
|
|
|
|
err(1, "uptime");
|
2011-12-04 15:27:21 -05:00
|
|
|
uintmax_t end = start + 1ULL * 1000ULL * 1000ULL; // 1 second
|
2011-12-02 06:27:58 -05:00
|
|
|
size_t count = 0;
|
|
|
|
uintmax_t now;
|
|
|
|
while ( !uptime(&now) && now < end ) { count++; }
|
|
|
|
printf("Made %zu system calls in 1 second\n", count);
|
|
|
|
return 0;
|
|
|
|
}
|