All task-related events now require the body id as argument. Additionally, in nOS-V, nested tasks require the parents to be paused.
		
			
				
	
	
		
			39 lines
		
	
	
		
			768 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			768 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* Copyright (c) 2023 Barcelona Supercomputing Center (BSC)
 | 
						|
 * SPDX-License-Identifier: GPL-3.0-or-later */
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include "compat.h"
 | 
						|
#include "instr.h"
 | 
						|
#include "instr_nosv.h"
 | 
						|
#include "emu/task.h"
 | 
						|
 | 
						|
/* Run two task parallel bodies without pausing the previous one. */
 | 
						|
 | 
						|
int
 | 
						|
main(void)
 | 
						|
{
 | 
						|
	instr_start(0, 1);
 | 
						|
	instr_nosv_init();
 | 
						|
 | 
						|
	uint32_t typeid = 100;
 | 
						|
 | 
						|
	instr_nosv_type_create(typeid);
 | 
						|
	instr_nosv_task_create_par(1, typeid);
 | 
						|
	instr_nosv_task_create_par(2, typeid);
 | 
						|
 | 
						|
	instr_nosv_submit_enter();
 | 
						|
	instr_nosv_task_execute(1, 1);
 | 
						|
	{
 | 
						|
		instr_nosv_submit_enter();
 | 
						|
		instr_nosv_task_execute(2, 1); /* Must panic */
 | 
						|
		instr_nosv_task_end(2, 1);
 | 
						|
		instr_nosv_submit_exit();
 | 
						|
	}
 | 
						|
	instr_nosv_task_end(1, 1);
 | 
						|
	instr_nosv_submit_exit();
 | 
						|
 | 
						|
	instr_end();
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 |