From 55bb95823c4e7bde7e656df3587afcd16b2b44b1 Mon Sep 17 00:00:00 2001 From: Takashi Kojo Date: Wed, 24 Jun 2020 07:31:20 +0900 Subject: [PATCH] coding template --- wolfcrypt/src/wc_port.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wolfcrypt/src/wc_port.c b/wolfcrypt/src/wc_port.c index 5b67c2633..3b07e3d84 100644 --- a/wolfcrypt/src/wc_port.c +++ b/wolfcrypt/src/wc_port.c @@ -1849,6 +1849,13 @@ int wolfSSL_CryptHwMutexUnLock(void) { #elif defined(WOLFSSL_USER_MUTEX) /* Use user own mutex */ + + /* + int wc_InitMutex(wolfSSL_Mutex* m) { ... } + int wc_FreeMutex(wolfSSL_Mutex *m) { ... } + int wc_LockMutex(wolfSSL_Mutex *m) { ... } + int wc_UnLockMutex(wolfSSL_Mutex *m) { ... } + */ #else #warning No mutex handling defined