- File:
-
- 1 edited
-
libcfa/src/concurrency/thread.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/thread.hfa
r12b5e94a reaf269d 10 10 // Created On : Tue Jan 17 12:27:26 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Feb 9 22:10:14202213 // Update Count : 1412 // Last Modified On : Thu Jan 6 16:40:16 2022 13 // Update Count : 7 14 14 // 15 15 … … 130 130 T & join( T & this ); 131 131 132 //----------133 static inline {134 uint32_t prng( thread$ & th ) __attribute__(( warn_unused_result )) { return LCG( th.random_state ); } // [0,UINT_MAX]135 uint32_t prng( thread$ & th, uint32_t u ) __attribute__(( warn_unused_result )) { return prng( th ) % u; } // [0,u)136 uint32_t prng( thread$ & th, uint32_t l, uint32_t u ) __attribute__(( warn_unused_result )) { return prng( th, u - l + 1 ) + l; } // [l,u]137 } // prng138 139 132 // Local Variables: // 140 133 // mode: c //
Note:
See TracChangeset
for help on using the changeset viewer.