GIMPLE_OMP_CRITICAL#
-
gomp_critical *gimple_build_omp_critical(gimple_seq body, tree name)#
Build a
GIMPLE_OMP_CRITICALstatement.BODYis the sequence of statements for which only one thread can execute.NAMEis an optional identifier for this critical block.
-
tree gimple_omp_critical_name(const gomp_critical *g)#
Return the name associated with
OMP_CRITICALstatementG.
-
tree *gimple_omp_critical_name_ptr(gomp_critical *g)#
Return a pointer to the name associated with
OMPcritical statementG.
-
void gimple_omp_critical_set_name(gomp_critical *g, tree name)#
Set
NAMEto be the name associated withOMPcritical statementG.