#include "dnxJobList.h"
Go to the source code of this file.
Data Structures | |
struct | DnxTimer |
DNX job expiration timer abstract type. More... | |
Functions | |
int | dnxTimerCreate (DnxJobList *joblist, int sleeptime, DnxTimer **ptimer) |
Create a new job list expiration timer object. | |
void | dnxTimerDestroy (DnxTimer *timer) |
Destroy an existing job list expiration timer object. |
int dnxTimerCreate | ( | DnxJobList * | joblist, | |
int | sleeptime, | |||
DnxTimer ** | ptimer | |||
) |
Create a new job list expiration timer object.
[in] | joblist | - the job list that should be expired by the timer. |
[in] | sleeptime | - time between expiration checks, in milliseconds. |
[out] | ptimer | - the address of storage for returning the new object reference. |
Definition at line 166 of file dnxTimer.c.
void dnxTimerDestroy | ( | DnxTimer * | timer | ) |
Destroy an existing job list expiration timer object.
[in] | timer | - the timer object to be destroyed. |
Definition at line 200 of file dnxTimer.c.