X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Finclude%2Fctdl_module.h;h=932e0fe387428c71341190cc6745174ca928014c;hb=8c538eeb2d9b024970c350730b4748b870762c5f;hp=b0508a96bf80482b7e79b444c2249fe9df630493;hpb=76afe54e0bbcf663a0fdf7e4c338b24f9ace4a57;p=citadel.git diff --git a/citadel/include/ctdl_module.h b/citadel/include/ctdl_module.h index b0508a96b..932e0fe38 100644 --- a/citadel/include/ctdl_module.h +++ b/citadel/include/ctdl_module.h @@ -113,6 +113,7 @@ void CtdlModuleStartCryptoMsgs(char *ok_response, char *nosup_response, char *er * Citadel Threads API */ struct CtdlThreadNode *CtdlThreadCreate(char *name, long flags, void *(*thread_func) (void *arg), void *args); +struct CtdlThreadNode *CtdlThreadSchedule(char *name, long flags, void *(*thread_func) (void *arg), void *args, time_t when); void CtdlThreadSleep(int secs); void CtdlThreadStop(struct CtdlThreadNode *thread); int CtdlThreadCheckStop(void);