summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/os.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-06-16 16:52:51 +0000
committerBenny Prijono <bennylp@teluu.com>2006-06-16 16:52:51 +0000
commitedf38f478920a443dc29cf3d638e6b27d7a838e6 (patch)
tree36429dc70ed27c292dc61949ff262fb3bcdc80f7 /pjlib/include/pj/os.h
parentb7898cf10e4e9048d28d858ccffcdf3937703752 (diff)
Fixed pjlib doxygen documentation
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@514 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/os.h')
-rw-r--r--pjlib/include/pj/os.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/pjlib/include/pj/os.h b/pjlib/include/pj/os.h
index 439b0864..2a57ab87 100644
--- a/pjlib/include/pj/os.h
+++ b/pjlib/include/pj/os.h
@@ -509,6 +509,13 @@ PJ_DECL(pj_status_t) pj_mutex_destroy(pj_mutex_t *mutex);
* readers can acquire the mutex, but only a single writer can acquire the
* mutex.
*/
+
+/**
+ * Opaque declaration for reader/writer mutex.
+ * Reader/writer mutex is a classic synchronization object where multiple
+ * readers can acquire the mutex, but only a single writer can acquire the
+ * mutex.
+ */
typedef struct pj_rwmutex_t pj_rwmutex_t;
/**