Changes between Version 3 and Version 4 of library_barrier
- Timestamp:
- Aug 4, 2014, 3:15:26 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_barrier
v3 v4 13 13 14 14 The available functions are: 15 * '''barrier_init( giet_barrier_t * barrier, unsigned int ntasks ) ‘‘‘15 * '''barrier_init( giet_barrier_t * barrier, unsigned int ntasks )''' 16 16 * '''barrier_wait( giet_barrier_t * barrier )''' 17 18 The ''barrier'' argument is a pointer on a ''giet_barrier_t'' object. The ''ntasks'' argument is the number of expected tasks. 17 19 18 20 Neither the barrier_init(), nor the barrier_wait() function contains a system call. … … 28 30 29 31 The available functions are: 30 * '''sbt_barrier_init( giet_sbt_barrier_t * barrier, unsigned int ntasks ) ‘‘‘32 * '''sbt_barrier_init( giet_sbt_barrier_t * barrier, unsigned int ntasks )''' 31 33 * '''sbt_barrier_wait( giet_sbt_barrier_t * barrier )''' 34 35 The ''barrier'' argument is a pointer on a ''giet_barrier_t'' object. The ''ntasks'' argument is the number of expected tasks. 32 36 33 37 The sbt_barrier_init() contains a system call, but the sbt_barrier_wait does not.