123456789101112131415161718192021222324252627282930313233 |
- /*
- * @Author: jiejie
- * @Github: https://github.com/jiejieTop
- * @Date: 2019-12-15 18:27:19
- * @LastEditTime: 2020-02-23 15:01:06
- * @Description: the code belongs to jiejie, please keep the author information and source code according to the license.
- */
- #include "platform_mutex.h"
- int platform_mutex_init(platform_mutex_t* m)
- {
- return pthread_mutex_init(&(m->mutex), NULL);
- }
- int platform_mutex_lock(platform_mutex_t* m)
- {
- return pthread_mutex_lock(&(m->mutex));
- }
- int platform_mutex_trylock(platform_mutex_t* m)
- {
- return pthread_mutex_trylock(&(m->mutex));
- }
- int platform_mutex_unlock(platform_mutex_t* m)
- {
- return pthread_mutex_unlock(&(m->mutex));
- }
- int platform_mutex_destroy(platform_mutex_t* m)
- {
- return pthread_mutex_destroy(&(m->mutex));
- }
|