1
0
mirror of https://github.com/FreeRTOS/FreeRTOS.git synced 2025-07-17 23:55:05 +08:00

Correct API call used to create mutex.

This commit is contained in:
Richard Barry
2008-02-04 08:42:12 +00:00
parent 05920be92a
commit 7d0f249fad

@ -119,7 +119,7 @@ void vStartRecursiveMutexTasks( void )
{
/* Just creates the mutex and the three tasks. */
xMutex = xSemaphoreCreateMutex();
xMutex = xSemaphoreCreateRecursiveMutex();
if( xMutex != NULL )
{