<< Chapter < Page Chapter >> Page >
This module describes the basics of the TI DSP/BIOS Semaphore Module (SEM).

Introduction

The DSP/BIOS real-time operating system provides for inter-task synchronization through the use of semaphores. The module that provides this function is the SEM module. This module will describe the basic use of SEM objects that are initialized in the configuration tool.

Reading

  • SPRU423 TMS320 DSP/BIOS Users Guide: Read the section on Semaphores.

Sem module

Semaphores provide a way for intertask communication and synchronization. They are used to coordinate access to a shared resource being accessed by multiple tasks. The SEM objects are counting semaphores which means they keep a record of the number of corresponding resources available.

There are two main functions for using a semaphore once it has been created.

  • SEM_pend is used to wait for a semaphore. If the semaphore has a positive value, this function will simply decrement the semaphore and return. If the value of the semaphore is 0, the task calling SEM_pend is blocked and its state is changed to TSK_BLOCKED . The timeout parameter to SEM_pend allows the task to wait until a timeout occurs, wait indefinitely ( SYS_FOREVER ), or not wait at all. SEM_pend 's return value is used to indicate if the semaphore was signaled successfully.
  • SEM_post is used to signal a semaphore. If a particular task is waiting for the semaphore (in the TSK_BLOCKED state), SEM_post removes the task from the semaphore queue and puts it on the ready queue (in the TSK_READY state). In this case, the semaphore remains at 0. If no tasks are waiting, SEM_post simply increments the semaphore count and returns.

To create an SEM object, open the configuration file, right click on Syncronization->SEM and select Insert SEM . You can right click on the object and select Properties to change its properties. The following figure shows a semaphore, SEM0, in the configuration tool with an initial value of 1.

Semaphore in configuration tool

As an example, suppose there are two tasks, TSK0 and TSK1, that are at the same priority. When program execution begins, TSK0 starts first. The semaphore, SEM0, is initialized to 1. The following code is used for the two tasks.

funTSK0(){ 1 LOG_printf(&trace,"TSK0 Start"); 2 SEM_pend(&SEM0,SYS_FOREVER); 3 LOG_printf(&trace,"TSK0 1"); 4 SEM_pend(&SEM0); 11 LOG_printf(&trace,"TSK0 2"); 12 SEM_post(&SEM0); 13 SEM_post(&SEM0); 14 LOG_printf(&trace,"TSK0 3"); 15 SEM_post(&SEM0); 16 LOG_printf(&trace,"TSK0 Finish"); }funTSK1(){ 5 LOG_printf(&trace,"TSK1 Start"); 6 SEM_post(&SEM0); 7 LOG_printf(&trace,"TSK1 1"); 8 SEM_post(&SEM0); 9 SEM_pend(&SEM0); 10 SEM_pend(&SEM0); 17 LOG_printf(&trace,"TSK1 2"); 18 LOG_printf(&trace,"TSK1 Finish"); }

The following table shows the order of execution, the state of the two tasks, the value of the semaphore and any output printed. The Code Line # indicates which line of code is executed. The line in the table indicates the result after the line of code is executed. For instance, the line 1 indicates that the following line of code is executed:

Questions & Answers

how to create a software using Android phone
Wiseman Reply
how
basra
what is the difference between C and C++.
Yan Reply
what is software
Sami Reply
software is a instructions like programs
Shambhu
what is the difference between C and C++.
Yan
yes, how?
Hayder
what is software engineering
Ahmad
software engineering is a the branch of computer science deals with the design,development, testing and maintenance of software applications.
Hayder
who is best bw software engineering and cyber security
Ahmad
Both software engineering and cybersecurity offer exciting career prospects, but your choice ultimately depends on your interests and skills. If you enjoy problem-solving, programming, and designing software syste
Hayder
what's software processes
Ntege Reply
I haven't started reading yet. by device (hardware) or for improving design Lol? Here. Requirement, Design, Implementation, Verification, Maintenance.
Vernon
I can give you a more valid answer by 5:00 By the way gm.
Vernon
it is all about designing,developing, testing, implementing and maintaining of software systems.
Ehenew
hello assalamualaikum
Sami
My name M Sami I m 2nd year student
Sami
what is the specific IDE for flutter programs?
Mwami Reply
jegudgdtgd my Name my Name is M and I have been talking about iey my papa john's university of washington post I tagged I will be in
Mwaqas Reply
yes
usman
how disign photo
atul Reply
hlo
Navya
hi
Michael
yes
Subhan
Show the necessary steps with description in resource monitoring process (CPU,memory,disk and network)
samuel Reply
What is software engineering
Tafadzwa Reply
Software engineering is a branch of computer science directed to writing programs to develop Softwares that can drive or enable the functionality of some hardwares like phone , automobile and others
kelvin
if any requirement engineer is gathering requirements from client and after getting he/she Analyze them this process is called
Alqa Reply
The following text is encoded in base 64. Ik5ldmVyIHRydXN0IGEgY29tcHV0ZXIgeW91IGNhbid0IHRocm93IG91dCBhIHdpbmRvdyIgLSBTdGV2ZSBXb3puaWFr Decode it, and paste the decoded text here
Julian Reply
what to do you mean
Vincent
hello
ALI
how are you ?
ALI
What is the command to list the contents of a directory in Unix and Unix-like operating systems
George Reply
how can i make my own software free of cost
Faizan Reply
like how
usman
hi
Hayder
The name of the author of our software engineering book is Ian Sommerville.
Doha Reply
what is software
Sampson Reply
the set of intruction given to the computer to perform a task
Noor
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Ti dsp/bios lab. OpenStax CNX. Sep 03, 2013 Download for free at http://cnx.org/content/col11265/1.8
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Ti dsp/bios lab' conversation and receive update notifications?

Ask