<< Chapter < Page Chapter >> Page >
This module describes the basics of Microsoft Visual Basic Threads and Semaphores.

Introduction

Microsoft Visual Basic provides resources for managing threads and semaphores. This module will give a basic overview of threads and semaphores in Visual Basic (VB). This module presents threads and semaphores in VB in a very simplistic manner. There are much better ways to use threads in VB but they will be presented here in a way that makes the programs much easier to write. The threads described here will be methods of the Form class. This is what makes the programming very simple. Threads should/could be classes on their own but it is not necessary. This module is not intended to make you proficient in using threads and semaphores in Visual Basic.

Reading

Module prerequisites

It would be helpful to have completed the TSK and SEM modules for the DSP/BIOS operating system but it is not necessary if you are familiar with tasks and semaphores.

Visual basic threads

A thread is simply a separate method or function that gets executed apart from the main program flow. There can be many threads executing simultaneously in a system. In VB the System.Threading namespace needs to be imported into the program. This is done by putting the following at the very top of your code:

Imports System.Threading

If this is not included at the top of your program then it will not know what threads are.

The following is the basic structure of your program for this lab. Each part of the example code is described in the comments.

' This imports the threading namespace so the program knows about threads Imports System.Threading' This is the class that executes the form for the programPublic Class Form1 ' This is a definition of a thread. The thread object is thread1 and' it uses the method Task1() below as its code. Dim thread1 As New Thread(AddressOf Task1)' When the form program starts or is loaded the following function is' called. This is where you can put the commands to set up our program. ' The code for starting up the threads can be put here.Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load' Make this a background thread so it automatically ' aborts when the main program stops.thread1.IsBackground = True ' Set the thread prioritythread1.Priority = ThreadPriority.Lowest ' This command starts the thread. The method Task1() then' starts to execute. thread1.Start()End SubPrivate Sub Task1() ' This is where your code goes for this threadEnd SubEnd Class

The real-time operating system in Visual Studio is not a deterministic operating system. This means that you cannot be sure of how the threads will execute. Windows assigns time to threads at the same priority in a round-robin fashion. When threads at a particular level do not need to execute the operating system assigns time to lower priority threads.

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