|
| iMatix home page | << | < | > | >> |
SMTVersion 2.81 |
#include "smtlib.h"
int
event_destroy (
EVENT *event /* Event block to destroy */
)
Destroys the specified event, which is assumed not to be linked into any queue. Typically you'll call this after processing an event you received with event accept(). Returns 0 if okay.
{
#if (defined (SMT_TRACE))
trace ("event_destroy: event=%s", event-> name);
#endif
node_destroy (event); /* Unlink and destroy event */
return (0);
}
| | << | < | > | >> |
|