]> git.sur5r.net Git - openldap/blobdiff - include/ldap_rq.h
Remove a few obsolete uses
[openldap] / include / ldap_rq.h
index 551a1eada7bd1fb5fd7c03423e52f38d3adbfd7f..4d3923b26e527b599e5cfe98396d2915fc0d7b8c 100644 (file)
@@ -27,6 +27,8 @@ typedef struct re_s {
        LDAP_STAILQ_ENTRY(re_s) rnext;
        ldap_pvt_thread_start_t *routine;
        void *arg;
+       char *tname;
+       char *tspec;
 } re_t;
 
 typedef struct runqueue_s {
@@ -35,12 +37,14 @@ typedef struct runqueue_s {
        ldap_pvt_thread_mutex_t rq_mutex;
 } runqueue_t;
 
-LDAP_F( void )
+LDAP_F( struct re_s* )
 ldap_pvt_runqueue_insert(
        struct runqueue_s* rq,
        time_t interval,
        ldap_pvt_thread_start_t* routine,
-       void *arg
+       void *arg,
+       char *tname,
+       char *tspec
 );
 
 LDAP_F( struct re_s* )