* Return the current write sequence number. This is not the same as the * current goal which may be in the future. */
| 88 | * current goal which may be in the future. |
| 89 | */ |
| 90 | static inline smr_seq_t |
| 91 | smr_shared_current(smr_shared_t s) |
| 92 | { |
| 93 | |
| 94 | return (atomic_load_int(&s->s_wr.seq)); |
| 95 | } |
| 96 | |
| 97 | static inline smr_seq_t |
| 98 | smr_current(smr_t smr) |
no outgoing calls
no test coverage detected