#include <sys/mman.h>
#include <sys/resource.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sched.h>
#include <limits.h>
#include <signal.h>
#include <err.h>
#include <lwp.h>
pthread_barrier_t barrier;
struct timespec start;
int done;
long max = 0;
long min = LONG_MAX;
lwpid_t lid;
long sum;
long samples;
static void
sigint(int junk)
{
done = 1;
}
static void *
reader(void *cookie)
{
struct timespec end;
long val;
lid = _lwp_self();
for (;;) {
(void)pthread_barrier_wait(&barrier);
while (_lwp_park(NULL, 0, &lid, NULL) != 0) {
}
clock_gettime(CLOCK_MONOTONIC, &end);
timespecsub(&end, &start, &end);
val = (long)end.tv_sec * 1000000000 + (long)end.tv_nsec;
printf("%ld\n", val);
if (val > max)
max = val;
if (val < min)
min = val;
sum += val;
samples++;
}
}
int
main(int argc, char *argv[])
{
static struct timespec delay = { 0, 100000000 };
struct sched_param sp;
pthread_t pt;
cpuset_t *cs;
int cpuid;
(void)setvbuf(stdout, NULL, _IOLBF, BUFSIZ);
if (geteuid() != 0) {
errx(1, "run me as root");
}
pthread_barrier_init(&barrier, NULL, 2);
if (pthread_create(&pt, NULL, reader, NULL)) {
errx(1, "pthread_create failed");
}
if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
err(1, "mlockall");
}
if (signal(SIGINT, sigint)) {
err(1, "siginal");
}
if (argc < 2) {
cs = cpuset_create();
if (cs == NULL) {
err(1, "cpuset_create");
}
cpuset_zero(cs);
cpuid = pthread_curcpu_np();
cpuset_set(cpuid, cs);
if (_sched_setaffinity(0, 0, cpuset_size(cs), cs) < 0) {
err(1, "_sched_setaffinity");
}
cpuset_destroy(cs);
}
sp.sched_priority = sched_get_priority_max(SCHED_FIFO) - 2;
if (pthread_setschedparam(pthread_self(), SCHED_FIFO, &sp)) {
errx(1, "pthread_setschedparam");
}
sp.sched_priority = sched_get_priority_max(SCHED_FIFO) - 1;
if (pthread_setschedparam(pt, SCHED_FIFO, &sp)) {
errx(1, "pthread_setschedparam");
}
do {
(void)pthread_barrier_wait(&barrier);
while (nanosleep(&delay, NULL) != 0) {
}
clock_gettime(CLOCK_MONOTONIC, &start);
if (_lwp_unpark(lid, &lid) != 0) {
err(1, "_lwp_unpark");
}
} while (!done);
printf("\nmin=%ldns, max=%ldns, mean=%ldns\n", min, max, sum / samples);
return 0;
}