diff options
author | Haru <haru@dotalux.com> | 2016-03-13 20:50:19 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-07-12 20:58:37 +0200 |
commit | 14d410fc8695049691bfb5e70e881020625f7a85 (patch) | |
tree | a9c0ad09a2aed604878383540cb016d5398ab28c /src/common/mutex.h | |
parent | 02983c41e397060cc2215db44ec43f9cc38c7ace (diff) | |
download | hercules-14d410fc8695049691bfb5e70e881020625f7a85.tar.gz hercules-14d410fc8695049691bfb5e70e881020625f7a85.tar.bz2 hercules-14d410fc8695049691bfb5e70e881020625f7a85.tar.xz hercules-14d410fc8695049691bfb5e70e881020625f7a85.zip |
Various changes to the mutex interface
Mostly stylistic changes. Cleaned up documentation.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/mutex.h')
-rw-r--r-- | src/common/mutex.h | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/src/common/mutex.h b/src/common/mutex.h index 2365cf4e9..0569fb0da 100644 --- a/src/common/mutex.h +++ b/src/common/mutex.h @@ -23,21 +23,28 @@ #include "common/hercules.h" +/** @file + * Mutex and conditional variables implementation for Hercules. + */ + /* Opaque types */ + struct mutex_data; ///< Mutex struct cond_data; ///< Conditional variable /* Interface */ + +/// The mutex interface. struct mutex_interface { /** - * Creates a Mutex + * Creates a mutex. * * @return The created mutex. */ struct mutex_data *(*create) (void); /** - * Destroys a Mutex. + * Destroys a mutex. * * @param m the mutex to destroy. */ @@ -46,6 +53,8 @@ struct mutex_interface { /** * Gets a lock. * + * This function blocks until the lock can be acquired. + * * @param m The mutex to lock. */ void (*lock) (struct mutex_data *m); @@ -53,6 +62,8 @@ struct mutex_interface { /** * Tries to get a lock. * + * This function returns immediately. + * * @param m The mutex to try to lock. * @return success status. * @retval true if the lock was acquired. @@ -67,18 +78,17 @@ struct mutex_interface { */ void (*unlock) (struct mutex_data *m); - /** - * Creates a Condition variable. + * Creates a conditional variable. * - * @return the created condition variable. + * @return the created conditional variable. */ struct cond_data *(*cond_create) (void); /** - * Destroys a Condition variable. + * Destroys a conditional variable. * - * @param c the condition variable to destroy. + * @param c the conditional variable to destroy. */ void (*cond_destroy) (struct cond_data *c); @@ -116,6 +126,6 @@ struct mutex_interface { void mutex_defaults(void); #endif // HERCULES_CORE -HPShared struct mutex_interface *mutex; +HPShared struct mutex_interface *mutex; ///< Pointer to the mutex interface. #endif /* COMMON_MUTEX_H */ |