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

34 lines
671 B
C
Raw Normal View History

2022-09-19 12:39:02 +02:00
/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
2022-07-07 16:31:15 +02:00
#include "instr_nanos6.h"
2022-07-07 16:31:15 +02:00
int
main(void)
{
instr_start(0, 1);
int ntasks = 100;
uint32_t typeid = 1;
instr_nanos6_type_create(typeid);
2022-07-07 16:31:15 +02:00
/* Create and run the tasks, one nested into another */
for (int i = 0; i < ntasks; i++) {
2022-09-21 13:17:38 +02:00
instr_nanos6_handle_task_enter();
instr_nanos6_task_create_and_execute(i + 1, typeid);
2022-07-07 16:31:15 +02:00
usleep(500);
}
/* End the tasks in the opposite order */
for (int i = ntasks - 1; i >= 0; i--) {
instr_nanos6_task_end(i + 1);
instr_nanos6_task_body_exit();
2022-09-21 13:17:38 +02:00
instr_nanos6_handle_task_exit();
}
2022-07-07 16:31:15 +02:00
instr_end();
return 0;
}