* Blocking wait for all readers to observe 'goal'. */
| 234 | * Blocking wait for all readers to observe 'goal'. |
| 235 | */ |
| 236 | static inline bool |
| 237 | smr_wait(smr_t smr, smr_seq_t goal) |
| 238 | { |
| 239 | |
| 240 | return (smr_poll(smr, goal, true)); |
| 241 | } |
| 242 | |
| 243 | /* |
| 244 | * Synchronize advances the write sequence and returns when all |
no test coverage detected