2023-02-27 13:40:20 +01:00
|
|
|
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
|
2022-09-19 12:39:02 +02:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
2022-06-01 17:01:51 +02:00
|
|
|
|
2022-08-23 16:40:44 +02:00
|
|
|
#include "instr_nosv.h"
|
2022-06-01 17:01:51 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
instr_start(0, 1);
|
|
|
|
|
2022-08-23 16:40:44 +02:00
|
|
|
uint32_t typeid = 666;
|
|
|
|
instr_nosv_type_create(typeid);
|
|
|
|
|
|
|
|
uint32_t taskid = 1;
|
|
|
|
instr_nosv_task_create(taskid, typeid);
|
|
|
|
instr_nosv_task_execute(taskid);
|
2023-02-16 16:07:19 +01:00
|
|
|
/* Change subsystem to prevent duplicates */
|
|
|
|
instr_nosv_submit_enter();
|
2022-08-23 16:40:44 +02:00
|
|
|
/* Run another nested task with same id (should fail) */
|
|
|
|
instr_nosv_task_execute(taskid);
|
2022-06-01 17:01:51 +02:00
|
|
|
|
|
|
|
instr_end();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|