ovni/test/emu/nanos6/nested-tasks-bad.c

27 lines
501 B
C
Raw Normal View History

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-07-07 16:31:15 +02:00
#include <stdint.h>
#include "instr.h"
#include "instr_nanos6.h"
2022-07-07 16:31:15 +02:00
int
main(void)
{
instr_start(0, 1);
instr_nanos6_init();
2022-07-07 16:31:15 +02:00
uint32_t typeid = 666;
instr_nanos6_type_create(typeid);
uint32_t taskid = 1;
2022-09-12 16:52:27 +02:00
instr_nanos6_task_create_and_execute(taskid, typeid);
/* Run another nested task with same id (should fail) */
instr_nanos6_task_execute(taskid);
2022-07-07 16:31:15 +02:00
instr_end();
return 0;
}