<< 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

what is microbiology
Agebe Reply
What is a cell
Odelana Reply
what is cell
Mohammed
how does Neisseria cause meningitis
Nyibol Reply
what is microbiologist
Muhammad Reply
what is errata
Muhammad
is the branch of biology that deals with the study of microorganisms.
Ntefuni Reply
What is microbiology
Mercy Reply
studies of microbes
Louisiaste
when we takee the specimen which lumbar,spin,
Ziyad Reply
How bacteria create energy to survive?
Muhamad Reply
Bacteria doesn't produce energy they are dependent upon their substrate in case of lack of nutrients they are able to make spores which helps them to sustain in harsh environments
_Adnan
But not all bacteria make spores, l mean Eukaryotic cells have Mitochondria which acts as powerhouse for them, since bacteria don't have it, what is the substitution for it?
Muhamad
they make spores
Louisiaste
what is sporadic nd endemic, epidemic
Aminu Reply
the significance of food webs for disease transmission
Abreham
food webs brings about an infection as an individual depends on number of diseased foods or carriers dully.
Mark
explain assimilatory nitrate reduction
Esinniobiwa Reply
Assimilatory nitrate reduction is a process that occurs in some microorganisms, such as bacteria and archaea, in which nitrate (NO3-) is reduced to nitrite (NO2-), and then further reduced to ammonia (NH3).
Elkana
This process is called assimilatory nitrate reduction because the nitrogen that is produced is incorporated in the cells of microorganisms where it can be used in the synthesis of amino acids and other nitrogen products
Elkana
Examples of thermophilic organisms
Shu Reply
Give Examples of thermophilic organisms
Shu
advantages of normal Flora to the host
Micheal Reply
Prevent foreign microbes to the host
Abubakar
they provide healthier benefits to their hosts
ayesha
They are friends to host only when Host immune system is strong and become enemies when the host immune system is weakened . very bad relationship!
Mark
what is cell
faisal Reply
cell is the smallest unit of life
Fauziya
cell is the smallest unit of life
Akanni
ok
Innocent
cell is the structural and functional unit of life
Hasan
is the fundamental units of Life
Musa
what are emergency diseases
Micheal Reply
There are nothing like emergency disease but there are some common medical emergency which can occur simultaneously like Bleeding,heart attack,Breathing difficulties,severe pain heart stock.Hope you will get my point .Have a nice day ❣️
_Adnan
define infection ,prevention and control
Innocent
I think infection prevention and control is the avoidance of all things we do that gives out break of infections and promotion of health practices that promote life
Lubega
Heyy Lubega hussein where are u from?
_Adnan
en français
Adama
which site have a normal flora
ESTHER Reply
Many sites of the body have it Skin Nasal cavity Oral cavity Gastro intestinal tract
Safaa
skin
Asiina
skin,Oral,Nasal,GIt
Sadik
How can Commensal can Bacteria change into pathogen?
Sadik
How can Commensal Bacteria change into pathogen?
Sadik
all
Tesfaye
by fussion
Asiina
what are the advantages of normal Flora to the host
Micheal
what are the ways of control and prevention of nosocomial infection in the hospital
Micheal
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