From: Dave West Date: Fri, 30 Nov 2007 21:24:08 +0000 (+0000) Subject: Add prototype for CtdlThreadGetWorkers() X-Git-Tag: v7.86~2715 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=19b844589214eba19ce8e0ef0411cf7e590b85d2;p=citadel.git Add prototype for CtdlThreadGetWorkers() --- diff --git a/citadel/include/ctdl_module.h b/citadel/include/ctdl_module.h index cce4906cc..c83555c8f 100644 --- a/citadel/include/ctdl_module.h +++ b/citadel/include/ctdl_module.h @@ -116,6 +116,7 @@ void CtdlThreadCancel(struct CtdlThreadNode *thread); char *CtdlThreadName(struct CtdlThreadNode *thread, char *name); struct CtdlThreadNode *CtdlThreadSelf(void); int CtdlThreadGetCount(void); +int CtdlThreadGetWorkers(void); void CtdlThreadGC(void); void CtdlThreadStopAll(void); int CtdlThreadSelect(int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct timeval *timeout, struct CtdlThreadNode *self);