Rodrigo Arias
c8750b9dfd
Prevents implicit conversions to go undetected, as they will have to be explicit now.
39 lines
835 B
C
39 lines
835 B
C
/* Copyright (c) 2021-2024 Barcelona Supercomputing Center (BSC)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include "compat.h"
|
|
#include "instr.h"
|
|
#include "instr_nanos6.h"
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
int rank = atoi(getenv("OVNI_RANK"));
|
|
int nranks = atoi(getenv("OVNI_NRANKS"));
|
|
instr_start(rank, nranks);
|
|
instr_nanos6_init();
|
|
|
|
int us = 500;
|
|
uint32_t typeid = 1;
|
|
uint32_t taskid = 1;
|
|
|
|
instr_nanos6_type_create((int32_t) typeid);
|
|
|
|
instr_nanos6_task_create_and_execute((int32_t) taskid, typeid);
|
|
sleep_us(us);
|
|
instr_nanos6_block_enter();
|
|
instr_nanos6_task_pause((int32_t) taskid);
|
|
sleep_us(us);
|
|
instr_nanos6_task_resume((int32_t) taskid);
|
|
instr_nanos6_block_exit();
|
|
sleep_us(us);
|
|
instr_nanos6_task_end((int32_t) taskid);
|
|
instr_nanos6_task_body_exit();
|
|
|
|
instr_end();
|
|
|
|
return 0;
|
|
}
|