Changes between Version 45 and Version 46 of OpenMPTransformation


Ignore:
Timestamp:
06/10/14 15:08:58 (12 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenMPTransformation

    v45 v46  
    4141== Support Types ==
    4242
    43 * `$omp_gteam`: global team object, represents a team of threads executing in a parallel region.  A handle type.
     43* `$omp_gteam`: global team object, represents a team of threads executing in a parallel region.  A handle type.  This is where all the state needed to correctly execute a parallel region will be stored.   This includes all the shared object data, and a worksharking queue for every thread.
    4444* `$omp_team`: local object belonging to a single thread and referencing the global team object.  A handle type.
    4545* `$omp_gshared`: global shared object, used to represent the state of a shared variable.  A handle type.
     
    441441* `omp_get_thread_num()` => `_tid`
    442442
    443