From: richardbarry Date: Mon, 4 Feb 2008 08:42:12 +0000 (+0000) Subject: Correct API call used to create mutex. X-Git-Tag: V4.7.2~61 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3b5e2ef3150b0bdba155069ec494368000d1e136;p=freertos Correct API call used to create mutex. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@151 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/Common/Minimal/recmutex.c b/Demo/Common/Minimal/recmutex.c index 3a7d398a4..755505cd9 100644 --- a/Demo/Common/Minimal/recmutex.c +++ b/Demo/Common/Minimal/recmutex.c @@ -119,7 +119,7 @@ void vStartRecursiveMutexTasks( void ) { /* Just creates the mutex and the three tasks. */ - xMutex = xSemaphoreCreateMutex(); + xMutex = xSemaphoreCreateRecursiveMutex(); if( xMutex != NULL ) {