From 3b5e2ef3150b0bdba155069ec494368000d1e136 Mon Sep 17 00:00:00 2001 From: richardbarry Date: Mon, 4 Feb 2008 08:42:12 +0000 Subject: [PATCH] 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 --- Demo/Common/Minimal/recmutex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) { -- 2.39.5