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
|
|
|
|
2023-03-22 16:01:55 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "compat.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
|
|
|
|
|
|
|
int ntasks = 100;
|
|
|
|
uint32_t typeid = 1;
|
|
|
|
|
2022-08-23 16:40:44 +02:00
|
|
|
instr_nanos6_type_create(typeid);
|
2022-07-07 16:31:15 +02:00
|
|
|
|
|
|
|
/* Create and run the tasks, one nested into another */
|
2022-09-29 15:34:44 +02:00
|
|
|
for (int i = 0; i < ntasks; i++) {
|
2022-09-21 13:17:38 +02:00
|
|
|
instr_nanos6_handle_task_enter();
|
2022-08-23 16:40:44 +02:00
|
|
|
instr_nanos6_task_create_and_execute(i + 1, typeid);
|
2023-03-22 16:01:55 +01:00
|
|
|
sleep_us(500);
|
2023-10-23 15:12:43 +02:00
|
|
|
instr_nanos6_task_pause(i + 1);
|
2022-07-07 16:31:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* End the tasks in the opposite order */
|
2022-09-29 15:34:44 +02:00
|
|
|
for (int i = ntasks - 1; i >= 0; i--) {
|
2023-10-23 15:12:43 +02:00
|
|
|
instr_nanos6_task_resume(i + 1);
|
2022-08-23 16:40:44 +02:00
|
|
|
instr_nanos6_task_end(i + 1);
|
2022-09-21 17:31:28 +02:00
|
|
|
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;
|
|
|
|
}
|