mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
13 lines
230 B
C
13 lines
230 B
C
|
/* $OpenLDAP$ */
|
||
|
|
||
|
typedef struct re_s {
|
||
|
struct timeval next_sched;
|
||
|
struct timeval interval;
|
||
|
LDAP_STAILQ_ENTRY(re_s) next;
|
||
|
void *private;
|
||
|
} re_t;
|
||
|
|
||
|
typedef struct runqueue_s {
|
||
|
LDAP_STAILQ_HEAD(rl, re_s) run_list;
|
||
|
} runqueue_t;
|