Merge pull request #5316 from LinuxJedi/fix-embos-mutex

Use the correct mutex type for embOS
This commit is contained in:
David Garske
2022-07-04 11:51:20 -07:00
committed by GitHub

View File

@@ -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;
} }