eventset_insert()
#include "eventset.h"
err_t eventset_insert(EVENTSET *evs, ACTIVE_JOB *acp)
The eventset_insert()
function
inserts an event into an EVENTSET
. Note that the ACTIVE_JOB
object has no constructor and must be initialized by hand before
calling eventset_insert()
. You
must initialize the following fields of the ACTIVE_JOB structure
before calling eventset_insert():
eventset_insert()
returns NULL
if successful, or non-NULL otherwise. If non-NULL, the err_t
object contains error strings
which may be printed or otherwise communicated to the user.