ovni/test/emu/ovni/sort-first-and-full-ring.c

81 lines
1.4 KiB
C

/* Copyright (c) 2021-2022 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
#define _POSIX_C_SOURCE 200112L
#define _GNU_SOURCE
#include <limits.h>
#include <linux/limits.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>
#include "compat.h"
#include "common.h"
#include "ovni.h"
static inline void
init(void)
{
char hostname[HOST_NAME_MAX];
if (gethostname(hostname, HOST_NAME_MAX) != 0) {
perror("gethostname failed");
exit(EXIT_FAILURE);
}
ovni_proc_init(0, hostname, getpid());
ovni_thread_init(gettid());
ovni_add_cpu(0, 0);
}
static void
emit(char *mcv, int64_t clock)
{
struct ovni_ev ev = {0};
ovni_ev_set_mcv(&ev, mcv);
ovni_ev_set_clock(&ev, clock);
ovni_ev_emit(&ev);
}
int
main(void)
{
init();
int64_t t0 = ovni_clock_now();
/* Leave some room to prevent clashes */
usleep(100000); /* 100000000 ns */
int64_t t1 = ovni_clock_now();
emit("OU[", t1);
/* Fill the ring buffer */
long n = 1000000 + 10;
err("using n=%ld events\n", n);
/* Go back 100 ns for each event (with some space) */
int64_t delta = 10000;
int64_t t = t0 + delta;
for (long i = 0; i < n; i++) {
if (t <= t0 || t >= t1)
die("bad time\n");
emit("OB.", t);
t += 33;
}
emit("OU]", ovni_clock_now());
ovni_flush();
ovni_proc_fini();
return 0;
}