ovni/test/emu/ovni/sort.c
Rodrigo Arias c8750b9dfd Enable -Wconversion and -Wsign-conversion
Prevents implicit conversions to go undetected, as they will have to be
explicit now.
2024-09-09 08:28:02 +02:00

65 lines
1.2 KiB
C

/* Copyright (c) 2021-2024 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
#include <stddef.h>
#include <stdint.h>
#include "compat.h"
#include "instr.h"
#include "ovni.h"
static void
emit_jumbo(uint8_t *buf, size_t size, int64_t clock)
{
struct ovni_ev ev = {0};
ovni_ev_set_mcv(&ev, "OUj");
ovni_ev_set_clock(&ev, (uint64_t) clock);
ovni_ev_jumbo_emit(&ev, buf, (uint32_t) size);
}
static void
emit(char *mcv, int64_t clock)
{
struct ovni_ev ev = {0};
ovni_ev_set_mcv(&ev, mcv);
ovni_ev_set_clock(&ev, (uint64_t) clock);
ovni_ev_emit(&ev);
}
#define BUFSIZE 128
int
main(void)
{
uint8_t buf[BUFSIZE];
instr_start(0, 1);
/* Leave some room to prevent clashes */
sleep_us(100); /* 100000 us */
int64_t t0 = (int64_t) ovni_clock_now();
emit("OU[", t0);
int64_t t = t0 - 10000;
for (int i = 0; i < 100; i++) {
emit("OB.", t);
t += 33;
}
/* Also test jumbo events */
for (int i = 0; i < BUFSIZE; i++)
buf[i] = (uint8_t) (i & 0xff);
emit_jumbo(buf, BUFSIZE, t);
/* Sleep a bit to prevent early OU] */
while ((int64_t) ovni_clock_now() < t)
sleep_us(10);
emit("OU]", (int64_t) ovni_clock_now());
instr_end();
return 0;
}