53 lines
1.5 KiB
C
53 lines
1.5 KiB
C
/*
|
|
* Copyright (c) 2022 Barcelona Supercomputing Center (BSC)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef OVNI_TEST_INSTR_NOSV_H
|
|
#define OVNI_TEST_INSTR_NOSV_H
|
|
|
|
#include "test/instr.h"
|
|
#include "compat.h"
|
|
|
|
static inline void
|
|
instr_nosv_type_create(int32_t typeid)
|
|
{
|
|
struct ovni_ev ev = {0};
|
|
|
|
ovni_ev_set_mcv(&ev, "VYc");
|
|
ovni_ev_set_clock(&ev, ovni_clock_now());
|
|
|
|
char buf[256];
|
|
char *p = buf;
|
|
|
|
size_t nbytes = 0;
|
|
memcpy(buf, &typeid, sizeof(typeid));
|
|
p += sizeof(typeid);
|
|
nbytes += sizeof(typeid);
|
|
sprintf(p, "testtype%d", typeid);
|
|
nbytes += strlen(p) + 1;
|
|
|
|
ovni_ev_jumbo_emit(&ev, (uint8_t *) buf, nbytes);
|
|
}
|
|
|
|
INSTR_2ARG(instr_nosv_task_create, "VTc", int32_t, id, uint32_t, typeid)
|
|
INSTR_1ARG(instr_nosv_task_execute, "VTx", int32_t, id)
|
|
INSTR_1ARG(instr_nosv_task_pause, "VTp", int32_t, id)
|
|
INSTR_1ARG(instr_nosv_task_resume, "VTr", int32_t, id)
|
|
INSTR_1ARG(instr_nosv_task_end, "VTe", int32_t, id)
|
|
|
|
|
|
#endif /* OVNI_TEST_INSTR_NOSV_H */
|