2024-07-24 17:02:57 +02:00
|
|
|
/* Copyright (c) 2023-2024 Barcelona Supercomputing Center (BSC)
|
2023-10-23 15:12:43 +02:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "compat.h"
|
|
|
|
#include "instr.h"
|
|
|
|
#include "instr_nosv.h"
|
|
|
|
#include "emu/task.h"
|
|
|
|
|
|
|
|
/* Run a parallel task body (taskid=1,bodyid=1) and before it finishes, attempt
|
|
|
|
* to run switch to another body from another task (taskid=2,bodyid=2). This is
|
|
|
|
* not valid because nOS-V cannot execute a inline task from a parallel task. */
|
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
instr_start(0, 1);
|
|
|
|
instr_nosv_init();
|
|
|
|
|
|
|
|
uint32_t typeid = 100;
|
|
|
|
|
2024-07-24 17:02:57 +02:00
|
|
|
instr_nosv_type_create((int32_t) typeid);
|
2023-10-23 15:12:43 +02:00
|
|
|
instr_nosv_task_create_par(1, typeid);
|
|
|
|
instr_nosv_task_create_par(2, typeid);
|
|
|
|
|
|
|
|
instr_nosv_submit_enter();
|
|
|
|
instr_nosv_task_execute(1, 1);
|
|
|
|
{
|
|
|
|
instr_nosv_submit_enter();
|
|
|
|
instr_nosv_task_execute(2, 2); /* Should fail */
|
|
|
|
sleep_us(10);
|
|
|
|
instr_nosv_task_end(2, 2);
|
|
|
|
instr_nosv_submit_exit();
|
|
|
|
}
|
|
|
|
instr_nosv_task_end(1, 1);
|
|
|
|
instr_nosv_submit_exit();
|
|
|
|
|
|
|
|
instr_end();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|