[Openmp-commits] [openmp] [clang][OpenMP] OpenMP ThreadSet clause - basic runtime (PR #144409)

via Openmp-commits openmp-commits at lists.llvm.org
Tue Jun 17 08:58:59 PDT 2025


================
@@ -2763,7 +2764,9 @@ typedef struct kmp_tasking_flags { /* Total struct must be exactly 32 bits */
                                       setting for the task */
   unsigned detachable : 1; /* 1 == can detach */
   unsigned hidden_helper : 1; /* 1 == hidden helper task */
-  unsigned reserved : 8; /* reserved for compiler use */
+  unsigned reserved : 7; /* reserved for compiler use */
+  unsigned free_agent_eligible : 1; /* set if task can be executed by a
----------------
Ritanya-B-Bharadwaj wrote:

Shouldn't it be the reverse of the above?

https://github.com/llvm/llvm-project/pull/144409


More information about the Openmp-commits mailing list