Lines Matching refs:errseq_t
2 The errseq_t datatype
5 An errseq_t is a way of recording errors in one place, and allowing any
34 The general idea is for "watchers" to sample an errseq_t value and keep
41 A new errseq_t should always be zeroed out. An errseq_t value of all zeroes
66 errseq_t wd_err; /* for recording errors */
73 wd.wd_err = (errseq_t)0;
79 errseq_t s_wd_err; /* private "cursor" for wd_err */
119 He can just sample the current errseq_t in the worker, and then use that
122 errseq_t since = errseq_sample(&wd.wd_err);
130 Serializing errseq_t cursor updates
133 Note that the errseq_t API does not protect the errseq_t cursor during a
136 same errseq_t cursor at the same time, it's important to serialize