forked from wolfSSL/wolfssl
Merge pull request #5316 from LinuxJedi/fix-embos-mutex
Use the correct mutex type for embOS
This commit is contained in:
@@ -2270,7 +2270,7 @@ int wolfSSL_CryptHwMutexUnLock(void)
|
|||||||
|
|
||||||
int wc_LockMutex(wolfSSL_Mutex* m)
|
int wc_LockMutex(wolfSSL_Mutex* m)
|
||||||
{
|
{
|
||||||
OS_MUTEX_Lock((OS_MUTEX*) m);
|
OS_MUTEX_LockBlocked((OS_MUTEX*) m);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user