34 lines
758 B
C
34 lines
758 B
C
/*
|
|
* @Author: jiejie
|
|
* @Github: https://github.com/jiejieTop
|
|
* @Date: 2019-12-15 18:27:19
|
|
* @LastEditTime : 2020-01-08 20:23:13
|
|
* @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 tos_mutex_create(&(m->mutex));
|
|
}
|
|
|
|
int platform_mutex_lock(platform_mutex_t* m)
|
|
{
|
|
return tos_mutex_pend(&(m->mutex));
|
|
}
|
|
|
|
int platform_mutex_trylock(platform_mutex_t* m)
|
|
{
|
|
return tos_mutex_pend_timed(&(m->mutex), 0);
|
|
}
|
|
|
|
int platform_mutex_unlock(platform_mutex_t* m)
|
|
{
|
|
return tos_mutex_post(&(m->mutex));
|
|
}
|
|
|
|
int platform_mutex_destroy(platform_mutex_t* m)
|
|
{
|
|
return tos_mutex_destroy(&(m->mutex));
|
|
}
|