12345678910111213141516171819202122 |
- // SPDX-License-Identifier: GPL-3.0-or-later
- #ifndef NETDATA_COMPLETION_H
- #define NETDATA_COMPLETION_H
- #include "../libnetdata.h"
- struct completion {
- uv_mutex_t mutex;
- uv_cond_t cond;
- volatile unsigned completed;
- };
- void completion_init(struct completion *p);
- void completion_destroy(struct completion *p);
- void completion_wait_for(struct completion *p);
- void completion_mark_complete(struct completion *p);
- #endif /* NETDATA_COMPLETION_H */
|