Session 17: Mutexes

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Session 17: Mutexes

Session 17: Mutexes

This video presentation is the seventeenth installment of the Essentials of MQX RTOS Application Development training course. In this session, you will be introduced to Mutexes.

This training was created by Embedded Access Inc., a Freescale sponsored training provider and proven partner.

Session 17 Course LineLab Outline
  • Overview of how Mutexes work
  • Examples of how Mutexes are used
  • How the queue of waiting tasks is managed
  • Strict Mutexes
  • Use of Mutexes to deal with priority inversion
  • Atributes of Mutexes
  • Data structures used with Mutexes
  • API for Mutexes
  • Mutexes vs Message Passing, Events, and Semaphores
  • Declaring a Mutex
  • Initializing a Mutex
  • Locking and unlocking the Mutex in the Health Task
  • Locking and unlocking the Mutex in the UI Task

First, watch the video for Session 17: Mutexes.

Then, follow through with the interactive lab assignment below.

SESSION 17: LAB ASSIGNMENT

INTRODUCTION

In this lab a mutex will be used to protect the logging that we added in the lab for session 13 on memory services. If you followed through the lab for session 13 you will recall that the Health Task was logging information into Health Records and then copying them onto a queue. When commanded to do so by the user, the UI Task would traverse the queue to read all of the Health Records and print them out. However, a corruption can occur during the time that the UI task is accessing the queue to retrieve and remove the Health Records if, at the same time, the Health Task is trying to add to the queue.The operation of mutexes is quite straight forward as you saw in the video, and given that we don't need to flesh out any more of our application at this stage this is a fairly short lab.

OBJECTIVE

The objective of this lab is to see the operation of a mutex to protect access to a resource, and to see how simple they are to implement.

ASSIGNMENT

DECLARING AND INITIALIZING THE MUTEX

    1. Since mutexes are an optional component of MQX you'll need to add the mutex.h include file to main.h.
    2. We'll need global access to our mutex so declare an external variable 'log_mutex' of type MUTEX_STRUCT in main.c where the other global structures are declared, and make this an extern in main.h.
    3. The mutex needs to be initialized which can be done in the Health Task at the same time the queue is initialized (with the _queue_init() function) using the _mutex_init() function. We'll just use the default values so you can use NULL as the mutex attribute struct.
      cheat.png
      Cheat 17-1.png

UPDATING THE HEALTH TASK

    1. In the while(1) loop of the Health Task where the LOG_TICK_MESSAGE message types are processed is where the Health Records are added to the queue using the _queue_enqueue() function. Since the job of the mutex is to prevent simultaneous access to the mutex, just before the record is logged is where we want to lock the mutex. And immediately after the Health Record has been added to the queue is where the mutex should be unlocked since we're done accessing the queue for now. Use the _mutex_lock() and _mutex_unlock() functions for this.
      whiteboard.png
      Whiteboard 17-1.jpg
      cheat.png
      Cheat 17-2.png

UPDATING THE UI TASK

  1. The UI Task traverses the list of Health Records in the queue when the user requests that the logs be printed. This is done in the Shell_log() function. Use the _mutex_lock() and the _mutex_unlock() functions to protect the queue for the entire time that the list is being traversed.
    cheat.png
    Cheat 17-3.png
  2. Compile and run your code. You first may want to comment out any periodic print statements. Use the 'log' function in the shell to see a print out of logged Health Records and ensure that a new record was being made every second.
    results.png
    Results 17-1.png

Need more help? The full source code for this lab can be found in the 'Lab Source Code' folder here.

No ratings
Version history
Last update:
‎06-30-2016 03:10 PM
Updated by: