2024-07-24 17:02:57 +02:00
|
|
|
/* 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
|
|
|
|
2023-03-22 16:01:55 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "instr.h"
|
2022-08-25 18:56:55 +02:00
|
|
|
#include "instr_nanos6.h"
|
2022-07-07 16:31:15 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
instr_start(0, 1);
|
2023-11-10 12:34:57 +01:00
|
|
|
instr_nanos6_init();
|
2022-07-07 16:31:15 +02:00
|
|
|
|
2022-08-23 16:40:44 +02:00
|
|
|
uint32_t typeid = 666;
|
2024-07-24 17:02:57 +02:00
|
|
|
instr_nanos6_type_create((int32_t) typeid);
|
2022-08-23 16:40:44 +02:00
|
|
|
|
|
|
|
uint32_t taskid = 1;
|
2024-07-24 17:02:57 +02:00
|
|
|
instr_nanos6_task_create_and_execute((int32_t) taskid, typeid);
|
2022-09-12 16:52:27 +02:00
|
|
|
|
2022-08-23 16:40:44 +02:00
|
|
|
/* Run another nested task with same id (should fail) */
|
2024-07-24 17:02:57 +02:00
|
|
|
instr_nanos6_task_execute((int32_t) taskid);
|
2022-07-07 16:31:15 +02:00
|
|
|
|
|
|
|
instr_end();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|