summaryrefslogtreecommitdiff
path: root/include/asterisk/heap.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/heap.h')
-rw-r--r--include/asterisk/heap.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asterisk/heap.h b/include/asterisk/heap.h
index 86f4e3d5c..a868ac589 100644
--- a/include/asterisk/heap.h
+++ b/include/asterisk/heap.h
@@ -213,6 +213,7 @@ size_t ast_heap_size(struct ast_heap *h);
* \brief Write-Lock a heap
*
* \param h the heap
+ * \param file, func, line
*
* A lock is provided for convenience. It can be assumed that none of the
* ast_heap API calls are thread safe. This lock does not have to be used
@@ -227,6 +228,7 @@ int __ast_heap_wrlock(struct ast_heap *h, const char *file, const char *func, in
* \brief Read-Lock a heap
*
* \param h the heap
+ * \param file, func, line
*
* A lock is provided for convenience. It can be assumed that none of the
* ast_heap API calls are thread safe. This lock does not have to be used
@@ -241,6 +243,7 @@ int __ast_heap_rdlock(struct ast_heap *h, const char *file, const char *func, in
* \brief Unlock a heap
*
* \param h the heap
+ * \param file, func, line
*
* \return see the documentation for pthread_rwlock_unlock()
* \since 1.6.1