]> git.sur5r.net Git - freertos/commitdiff
Function rename in task pool demo.
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 16 Jul 2019 18:19:44 +0000 (18:19 +0000)
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 16 Jul 2019 18:19:44 +0000 (18:19 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2683 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS-Plus/Demo/FreeRTOS_Plus_IoT_SDK/task_pool/DemoTasks/SimpleTaskPoolExamples.c

index ad15b13be8dbef56abd4b9c912fe804bf7dd28aa..7b7f0cd2e4ac776c38f623616b9bb71931821439 100644 (file)
@@ -52,7 +52,7 @@ one job. */
  * any of the demos encounter any unexpected behaviour.\r
  */\r
 static void prvExample_BasicSingleJob( void );\r
-static void prvExample_DeferredSingleJob( void );\r
+static void prvExample_DeferredJobAndCancellingJobs( void );\r
 static void prvExample_BasicRecyclableJob( void );\r
 static void prvExample_ReuseRecyclableJobFromLowPriorityTask( void );\r
 static void prvExample_ReuseRecyclableJobFromHighPriorityTask( void );\r
@@ -147,7 +147,7 @@ uint32_t ulLoops = 0;
                /* Demonstrate a job being scheduled to run at some time in the\r
                future, and how a job scheduled to run in the future can be cancelled if\r
                it has not yet started executing.  */\r
-               prvExample_DeferredSingleJob();\r
+               prvExample_DeferredJobAndCancellingJobs();\r
 \r
                /* Demonstrate the most basic use of a recyclable job.  This is similar\r
                to prvExample_BasicSingleJob() but using a recyclable job.  Creating a\r
@@ -250,7 +250,7 @@ IotTaskPoolJobStatus_t xJobStatus;
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-static void prvExample_DeferredSingleJob( void )\r
+static void prvExample_DeferredJobAndCancellingJobs( void )\r
 {\r
 IotTaskPoolJobStorage_t xJobStorage;\r
 IotTaskPoolJob_t xJob;\r