/* Misc. */\r
#define recmuSHORT_DELAY ( 20 / portTICK_RATE_MS )\r
#define recmuNO_DELAY ( ( portTickType ) 0 )\r
-#define recmuONE_TICK_DELAY ( ( portTickType ) 1 )\r
+#define recmuTWO_TICK_DELAY ( ( portTickType ) 2 )\r
\r
/* The three tasks as described at the top of this file. */\r
static void prvRecursiveMutexControllingTask( void *pvParameters );\r
inherit our priority on all but the first cycle of this task. \r
If we did not block attempting to receive the mutex then no\r
priority inheritance would occur. */\r
- if( xSemaphoreTakeRecursive( xMutex, recmuONE_TICK_DELAY ) != pdPASS )\r
+ if( xSemaphoreTakeRecursive( xMutex, recmuTWO_TICK_DELAY ) != pdPASS )\r
{\r
xErrorOccurred = pdTRUE;\r
}\r
}\r
\r
/* Having given it back the same number of times as it was taken, we\r
- should no longer be the mutex owner, so the next give should fail. */\r
+ should no longer be the mutex owner, so the next give sh ould fail. */\r
if( xSemaphoreGiveRecursive( xMutex ) == pdPASS )\r
{\r
xErrorOccurred = pdTRUE;\r