ex_mutx2.c
来自「picoos源码。The RTOS and the TCP/IP stack 」· C语言 代码 · 共 161 行
C
161 行
/*
* pico]OS mutex example 2
*
* How to use a mutex to protect a task reentrant, shared resource.
*
* License: modified BSD, see license.txt in the picoos root directory.
*
*/
/* Include source code for pico]OS
* initialization with nano layer.
*/
#include "ex_init4.c"
/* we need some features to be enabled */
#if POSCFG_FEATURE_SLEEP == 0
#error The feature POSCFG_FEATURE_SLEEP is not enabled!
#endif
#if POSCFG_FEATURE_MUTEXES == 0
#error The feature POSCFG_FEATURE_MUTEXES is not enabled!
#endif
#if NOSCFG_FEATURE_CONOUT == 0
#error The feature NOSCFG_FEATURE_CONOUT is not enabled!
#endif
/* function prototypes */
void incrementCounter(int tasknbr, int r);
void task1(void *arg);
void task2(void *arg);
/* global variable: handle to mutex */
POSMUTEX_t mutex;
/* global variable: this resource is protected by the mutex */
int counter = 0;
/* This function is called from two tasks.
* It increments and prints a global counter variable.
* The function uses a mutex to protect the shared variable,
* so only one task is allowed to modify the variable at the time.
* Note that this function calls itself recursively. This is
* only possible with a mutex as synchronization element.
* The use of a semphore would result into a deadlock.
*/
void incrementCounter(int tasknbr, int r)
{
int c;
/* wait for exclusive access to counter variable */
posMutexLock(mutex);
/* print some text */
nosPrintf3("task%i(%i): counter = %i\n", tasknbr, r, counter);
/* increment counter (read... */
c = counter;
/* ...modify... */
c++;
/* waste some time (an other task may disturb as now) */
posTaskSleep(MS(400));
/* ...write) */
counter = c;
if (r < 2)
{
/* We call this function recursively.
*
* Note:
* We keep the mutex locked. This is the difference between
* mutexes and semaphores, this construct (repeated acquiring
* of the synchronization element) is only possible with a mutex.
*/
incrementCounter(tasknbr, r + 1);
}
/* quit exclusive access to the counter variable */
posMutexUnlock(mutex);
}
/* This function is executed by the first task.
*/
void task1(void *arg)
{
/* avoid compiler warning */
(void) arg;
for(;;)
{
/* call function */
incrementCounter(1, 0);
/* do something here and waste some time */
posTaskSleep(MS(100));
}
}
/* This function is executed by the second task that is set up
* in the function firsttask() by a call to nosTaskCreate()
*/
void task2(void *arg)
{
/* avoid compiler warning */
(void) arg;
for(;;)
{
/* call function */
incrementCounter(2, 0);
/* do something here and waste some time */
posTaskSleep(MS(100));
}
}
/* This is the first function that is called in the multitasking context.
* (See file ex_init4.c for how to setup pico]OS).
*/
void firsttask(void *arg)
{
POSTASK_t t;
/* create a mutex */
mutex = posMutexCreate();
if (mutex == NULL)
{
nosPrint("Failed to create a mutex!\n");
return;
}
/* start a second task */
t = nosTaskCreate(task2, /* pointer to new task-function */
NULL, /* optional argument for the task-function */
2, /* priority level of the new task */
0, /* stack size (0 = default size) */
"task2"); /* optional name of the second task */
if (t == NULL)
{
nosPrint("Failed to start second task!\n");
}
/* continue execution in function task1 */
task1(arg);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?