2023-10-23 15:12:43 +02:00
|
|
|
/* Copyright (c) 2023-2024 Barcelona Supercomputing Center (BSC)
|
2023-11-14 11:52:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "compat.h"
|
|
|
|
#include "instr.h"
|
|
|
|
#include "instr_nosv.h"
|
|
|
|
|
|
|
|
/* With the introduction of ovni.level in nOS-V, we can have the
|
|
|
|
* situation in which two VTx events are emitted without the subsystem
|
|
|
|
* events. This causes the subsystem channel to push twice the same
|
|
|
|
* value ST_TASK_BODY. */
|
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
instr_start(0, 1);
|
2023-11-10 12:34:57 +01:00
|
|
|
instr_nosv_init();
|
2023-11-14 11:52:10 +01:00
|
|
|
|
|
|
|
instr_nosv_type_create(10);
|
|
|
|
instr_nosv_task_create(1, 10);
|
|
|
|
instr_nosv_task_create(2, 10);
|
2023-10-23 15:12:43 +02:00
|
|
|
instr_nosv_task_execute(1, 0);
|
|
|
|
instr_nosv_task_pause(1, 0);
|
|
|
|
instr_nosv_task_execute(2, 0);
|
|
|
|
instr_nosv_task_end(2, 0);
|
|
|
|
instr_nosv_task_resume(1, 0);
|
|
|
|
instr_nosv_task_end(1, 0);
|
2023-11-14 11:52:10 +01:00
|
|
|
|
|
|
|
instr_end();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|