eventset_dtor()
#include "eventset.h"
void eventset_dtor(EVENTSET *evs)
The eventset_dtor()
function destroys an
EVENTSET object. The
eventset_dtor()
function always
succeeds.
Note the eventset must not be in use when it is destroyed, so you
must wait until the worker thread
has returned from eventset_wait() (for example, by
calling pthread_join()) before calling eventset_dtor()
.
eventset_dtor()
has no return
value.