summaryrefslogtreecommitdiff
path: root/source3/lib/pthreadpool/pthreadpool.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-04-24 10:09:45 +0200
committerVolker Lendecke <vl@samba.org>2011-04-25 09:50:32 +0200
commitf4a0f856f31291dd316a937f8060d2f205e8d4d6 (patch)
tree61d622c0313252607f4be984d34e58ffdd08a769 /source3/lib/pthreadpool/pthreadpool.h
parent3c405f5e1d81d33a01ab822aeba93634338d5b25 (diff)
downloadsamba-f4a0f856f31291dd316a937f8060d2f205e8d4d6.tar.gz
samba-f4a0f856f31291dd316a937f8060d2f205e8d4d6.tar.bz2
samba-f4a0f856f31291dd316a937f8060d2f205e8d4d6.zip
s3: pthreadpool_sig_fd->pthreadpool_signal_fd
Diffstat (limited to 'source3/lib/pthreadpool/pthreadpool.h')
-rw-r--r--source3/lib/pthreadpool/pthreadpool.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/pthreadpool/pthreadpool.h b/source3/lib/pthreadpool/pthreadpool.h
index 9608e7ff9c..255393377f 100644
--- a/source3/lib/pthreadpool/pthreadpool.h
+++ b/source3/lib/pthreadpool/pthreadpool.h
@@ -73,18 +73,18 @@ int pthreadpool_add_job(struct pthreadpool *pool, int job_id,
* @brief Get the signalling fd from a pthreadpool
*
* Completion of a job is indicated by readability of the fd retuned
- * by pthreadpool_sig_fd().
+ * by pthreadpool_signal_fd().
*
* @param[in] pool The pool in question
* @return The fd to listen on for readability
*/
-int pthreadpool_sig_fd(struct pthreadpool *pool);
+int pthreadpool_signal_fd(struct pthreadpool *pool);
/**
* @brief Get the job_id of a finished job
*
* This blocks until a job has finished unless the fd returned by
- * pthreadpool_sig_fd() is readable.
+ * pthreadpool_signal_fd() is readable.
*
* @param[in] pool The pool to query for finished jobs
* @return The job_id of the finished job