Rodrigo Arias
354f2f50eb
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.
28 lines
589 B
C
28 lines
589 B
C
/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
#include <stdlib.h>
|
|
#include "compat.h"
|
|
#include "instr.h"
|
|
#include "instr_mpi.h"
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
/* Test that a thread calling the mpi function that is already executing
|
|
* causes the emulator to fail */
|
|
|
|
instr_start(0, 1);
|
|
instr_mpi_init();
|
|
|
|
instr_mpi_init_thread_enter();
|
|
/* The thread runs the same mpi function in a nested way (should fail) */
|
|
instr_mpi_init_thread_enter();
|
|
instr_mpi_init_thread_exit();
|
|
instr_mpi_init_thread_exit();
|
|
|
|
instr_end();
|
|
|
|
return 0;
|
|
}
|