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

27 lines
531 B
C
Raw Normal View History

/* Copyright (c) 2021-2024 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((int32_t) typeid);
uint32_t taskid = 1;
instr_nanos6_task_create_and_execute((int32_t) taskid, typeid);
2022-09-12 16:52:27 +02:00
/* Run another nested task with same id (should fail) */
instr_nanos6_task_execute((int32_t) taskid);
2022-07-07 16:31:15 +02:00
instr_end();
return 0;
}