···221221}
222222223223/*!
224224+ * Broadcast (signal to multiple threads).
225225+ *
226226+ * @public @memberof os_cond
227227+ */
228228+static inline int
229229+os_cond_broadcast(struct os_cond *oc)
230230+{
231231+ assert(oc->initialized);
232232+ return pthread_cond_broadcast(&oc->cond);
233233+}
234234+235235+/*!
224236 * Wait.
225237 *
226238 * Be sure to call this in a loop, testing some other condition that you