Allow OpenMP tasks to run again

This commit is contained in:
Rodrigo Arias 2025-01-27 16:08:14 +01:00
parent 84ae4ee056
commit e4b87609e7

View File

@ -153,6 +153,9 @@ create_task(struct emu *emu)
* task, so we relax the model to allow this for now. */
uint32_t flags = TASK_FLAG_RELAX_NESTING;
/* https://gitlab.pm.bsc.es/rarias/ovni/-/issues/208 */
flags |= TASK_FLAG_RESURRECT;
if (task_create(info, typeid, taskid, flags) != 0) {
err("task_create failed");
return -1;