EVENTSET: eventset_dtor() - destroy an EVENTSET

Name

eventset_dtor()

Synopsis

#include "eventset.h"
void eventset_dtor(EVENTSET *evs)

Description

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().

Return value

eventset_dtor() has no return value.

See also

eventset()