summaryrefslogtreecommitdiff
path: root/pjmedia/include/pjmedia/endpoint.h
diff options
context:
space:
mode:
Diffstat (limited to 'pjmedia/include/pjmedia/endpoint.h')
-rw-r--r--pjmedia/include/pjmedia/endpoint.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/pjmedia/include/pjmedia/endpoint.h b/pjmedia/include/pjmedia/endpoint.h
index 2455bcea..108dee62 100644
--- a/pjmedia/include/pjmedia/endpoint.h
+++ b/pjmedia/include/pjmedia/endpoint.h
@@ -212,7 +212,10 @@ PJ_DECL(pj_status_t) pjmedia_endpt_dump(pjmedia_endpt *endpt);
/**
* Register cleanup function to be called by media endpoint when
- * #pjmedia_endpt_destroy() is called.
+ * #pjmedia_endpt_destroy() is called. Note that application should not
+ * use or access any endpoint resource (such as pool, ioqueue) from within
+ * the callback as such resource may have been released when the callback
+ * function is invoked.
*
* @param endpt The media endpoint.
* @param func The function to be registered.