Adds forwards declarations in headers and includes all headers in sources, even if they are found by transitive includes.
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
 | 
						|
 * SPDX-License-Identifier: GPL-3.0-or-later */
 | 
						|
 | 
						|
#ifndef INSTR_NOSV_H
 | 
						|
#define INSTR_NOSV_H
 | 
						|
 | 
						|
#include "instr.h"
 | 
						|
 | 
						|
#include "task.h"
 | 
						|
 | 
						|
static inline uint32_t
 | 
						|
instr_nosv_type_create(int32_t typeid)
 | 
						|
{
 | 
						|
	struct ovni_ev ev = {0};
 | 
						|
 | 
						|
	ovni_ev_set_mcv(&ev, "VYc");
 | 
						|
	ovni_ev_set_clock(&ev, get_clock());
 | 
						|
 | 
						|
	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);
 | 
						|
 | 
						|
	return task_get_type_gid(p);
 | 
						|
}
 | 
						|
 | 
						|
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)
 | 
						|
 | 
						|
INSTR_0ARG(instr_nosv_submit_enter, "VAs")
 | 
						|
INSTR_0ARG(instr_nosv_submit_exit,  "VAS")
 | 
						|
 | 
						|
 | 
						|
#endif /* INSTR_NOSV_H */
 |