ovni/test/emu/nanos6/ss-mismatch.c
Rodrigo Arias 354f2f50eb Register emulation models only if required
Until now, emulation models were always being registered via probe(),
which causes the emulator to initialize all the channels. To reduce the
overhead, the channels were not connected or registered in the bay
until the first event of that model was received. This delayed connect
was causing issues in muxes where the newly connected model required
refreshing the touched channels. Which in turn was causing unexpected
PRV events.

By determining which models we need to enable, we can remove the delayed
connect mechanism and just enable those models at initialization time,
and connect the channels.
2023-11-16 12:39:05 +01:00

23 lines
466 B
C

/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
#include "instr.h"
#include "instr_nanos6.h"
int
main(void)
{
/* Test that a thread ending while the subsystem still has a value in
* the stack causes the emulator to fail */
instr_start(0, 1);
instr_nanos6_init();
instr_nanos6_worker_loop_enter();
/* The thread is left in the worker loop state (should fail) */
instr_end();
return 0;
}