Sunday Feb 05
Move
Display 0 | 5 | 10 | 15 Stories

Gadget

Topics
Top Story

Waterproof LCD for Bathrooms

Waterproof LCD for Bathrooms

  Have you been wishing for a waterproof LCD TV for use in you bathroom? Good for you, Vu has launched...

PlayStation 4 Release date and Features

PlayStation 4 Release date and Features

  The next generation PlayStation may arrive sooner than we think.. maybe even in 2009! But based...

XBox 720 Release date and Features

  In an interview with the head of Microsoft’s Interactive Entertainment Business division, Peter...

Wii 2 Release date and Features

  Nintendo are selling Wii’s faster than stores can stock them and some may believe that they...

PSP 2 Release date and Features

  The PS2P should be available in 2009 - 10, to compete with the upgraded Nintendo DS. Some features...

Upcoming Game Consoles

Gadget

Move
Display 0 | 5 | 10 | 15 Stories

Software Tutorials

Topics
Top Story

How to Enable / Disable Autoformat in word 2007

How to Enable / Disable Autoformat in word 2007

  The interface of Office 2007 does does not offer an intuitive tool to enable or disable the autocorrect...

How to use old MSN Messenger without upgrading

  If you dont like the newer version of MSN Live Messenger and want to use the old MSN Messenger...

Software Tutorials

 

Move
Display 0 | 5 | 10 | 15 Stories

General

Topics
Top Story

PRAM model of Parallel Computation

PRAM model of Parallel Computation

  A PRAM consists of a control unit, global memory, and an unbounded set of processors,each with its...

The Crisis of Credit Visualized

A Vimeo video by Jonathan Jarvis attempting to visually explain the credit crisis -   The Crisis...

How to carry money while travelling

If you are planning to go abroad for any purpose, like higher studies, tourism or business purpose,...

How to call from US to india

  There are many ways to call back to india You can take a sim card from the Matrix company and...

Translation of source code to object module : The Preprocessor Compilation Process

The preposessor (We'll be talking of the C preprocessor) is a seperate program invoked by the compiler...

Virtua Kitchen - The Kitchen Operating System

What is a Synergistic Processing Element / SPE

What is a Power Processor Element / PPE

What is the Element Interconnect Bus / EIB

What is the Cell Architecture

Why use Automated Testing Tools

What is the Software Testing Life Cycle (STLC)

What is Software Testing

AudioSurf - Ride Your Music !

Ubuntu 8.10 is out!

Move
Display 0 | 5 | 10 | 15 Stories

Programming

Topics
Top Story

Code for Writing a xlsx file in java

Here is a small code to write xlsx file though java code.    You may need to include some of...

Code for Reading a xlsx file in java

Here is a small code to read xlsx file thoug java code.    You may need to include some of the...

How to read and write data from socket in java

   ServerSocket serverSocket=new ServerSocket(port);  // The below statement will wait for the...

Producer Consumer Problem in C using Semaphores and Shared Memory

  The classic bounded-buffer problem can be implemented using a variety of synchronization mechanisms....

Common Intermediate Language

Common Intermediate Language (formerly called Microsoft Intermediate Language or MSIL) is the lowest-level...

Common Type System in C#

Common Language Runtime

A Quick Introduction to C# Features

Code for updating database using hibernate framework in java

Conversion of int to byte and vice versa

Web Crawler in Python

Neural Network in Python

Programming

Move
Display 0 | 5 | 10 | 15 Stories

Graphics

Topics
Top Story
Move
Display 0 | 5 | 10 | 15 Stories

Linux

Topics
Top Story

Linux

 

Move
Display 0 | 5 | 10 | 15 Stories

Web

Topics
Top Story

What is Kosmix

  I am guessing that you looked up the term ' What is Kosmix ' on google after hearing somewhere about...

What is a meta tag

  There was a time when I didnt know of Meta tags myself. I'm glad I do now as they have really helped...

Why some search results have no description

  Before I go on to explain why some search results have no description , I woud like to state that...

What is the Facebook Bill of Rights

Have you also been wondering what the facebook bill of rights is? Here is the short answer to the popular...

The Fastest Safari Browser

  Apple has announced the public beta of Safari 4 for Macintosh and Windows PCs, which is the fastest...

Web

Move
Display 0 | 5 | 10 | 15 Stories

Games

Topics
Top Story

Games

 

Move
Display 0 | 5 | 10 | 15 Stories

Windows

Topics
Top Story

Windows

 

Producer Consumer Problem in C using Semaphores and Shared Memory

(10 votes, average: 4.20 out of 5)





 

The classic bounded-buffer problem can be implemented using a variety of synchronization mechanisms. One may use Monitors, disable scheduling, or even disable scheduling including interrupts to ensure critical region safety. A common mechanism is to use semaphores. I have implemented this classic problem in C using semaphores and shared memory. I have used the pthread library instead of sys/sem.h. However I have not used any threads and just used the operations for sem_t type defined in semaphore.h from the pthread library. Inter process communication is done between heavyweight processes using shared memory.

The source C file can be downloaded here.

Executable generation process :


gcc procon5.c -o procon5 -lpthread

Executable file can be downloaded here. (to run : ./procon5 )

Explanation :


The master process starts by allocating shared memory for the buffer and other shared variables. The buffer is taken s an array based stack.
The functions used for this are :

shmget() : to allocate shared memory.
shmat() : to attach pointers to shared memory for performing operations on them.

The master process then initializes semaphores of type sem_t (defined in semaphore.h) using

sem_init() : used to initialize sem_t semaphore (provided in pthread.h). On providing the second argument as non zero, the semaphore can be used in IPC using shared memory.

Then it initializes the following shared variables :

len - Length of input string entered.
pr_countp - Number of items produced.
co_countp - Number of items consumed.
buff_top - Poition of top indicator in buffer.
run - Control variable, required to be set for process execution.

After determining number of producers and consumers desired from command line user input, the master process goes on to create the required number of producers and consumers using the fork() call in a loop. The return value from the fork call is used to control program flow beyond this instruction. On returning a non‐zero, positive value the process continues as parent and the pid is stored in an array of children_pids. On returning 0, a produce() or consume() procedure is called based on previous user input. The produce() and consume() procedures do not start actual execution at this time.

After all the producer and consumer processes have been created , the shared variable ‘run’ is set to 1, in order to start actual execution of processes.

The master process then waits for all the child processes to terminate using waitpid().

Finally, the space for shared memory & semaphores is deallocated and the pointers are detached, using shmdt(),shmctl() & sem_destroy().

Semaphores –


Mutex – For mutual exclusion while performing actual operation on shared memory.
Empty – For counting number of empty slots and blocking consumers if 0 empty slots.
Full – For counting full slots and blocking producers when buffer is full.

Producer Process –


If (pr_countp > len)
Then Exit (all items have been produced)
Else If (buff_top < buff_size && run == 1)
Wait (empty)
Wait (mutex)
Produce item and put into buffer
Signal (mutex)
Signal (full)

Consumer Process –


If (co_countp > len)
Then Exit (all items have been consumed)
Else If (buff_top < buff_size && run == 1)
Wait (full)
Wait (mutex)
Produce item and put into buffer
Signal (mutex)
Signal (empty)


Add this page to your favorite Social Bookmarking websites
Reddit! Del.icio.us! Google! Live! Facebook! Slashdot! Technorati! StumbleUpon! Spurl! Furl! Yahoo! Squidoo! Ask! DZone! Free Joomla PHP extensions, software, information and tutorials.



Comments

avatar Learner
+2
 
 
Thanks for sharing this!
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar link building sites
0
 
 
Nice post... Great information..... http://linkjuice.co.in
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar Coleman30Melva
-1
 
 
Don't you understand that this is correct time to receive the business loans, which will help you.
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar prmkgu
0
 
 
sfyoash
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar Payday Loan onine
0
 
 
wqnsas http://paydayloans24x7.net/ cash advance xgjRB car loan 3348 http://paydayloansinn.com/" rel="nofollow" target="_blank">payday loans online StEkHq
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar buying viagra online
0
 
 
txfvbc http://bucviagra.com/ cheap viagra aUtCU cialis CFqeF http://buccialis.com/" rel="nofollow" target="_blank">ordering tadalafil 2407
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar cialis
0
 
 
thscpy http://vzikcialis.com/ cialis DICAym order sildenafil 3399 http://scheapcialis.com/" rel="nofollow" target="_blank">cialis %-[[[
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar cheap cialis
0
 
 
tcqhmct http://cheapqcialis.com/" rel="nofollow" target="_blank">cheap cialis zkWsob http://cheapqcialis.net/" rel="nofollow" target="_blank">cialis sale >:-OOO http://cheapqviagra.com/" rel="nofollow" target="_blank">viagra qiSpO http://cheapqviagra.net/" rel="nofollow" target="_blank">sildenafil price >:]]
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar viagra
0
 
 
nctoaf http://cheapqviagra.net/" rel="nofollow" target="_blank">viagra >:]] http://cheapqviagra.com/" rel="nofollow" target="_blank">viagra ASkfgV http://cheapqcialis.net/" rel="nofollow" target="_blank">cheapest cialis vYsgP http://cheapqcialis.com/" rel="nofollow" target="_blank">cialis 8681
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar cash advance uk
0
 
 
fodqtgby http://instantcashadva nce4u.co.uk/" rel="nofollow" target="_blank">cash advance uk jTwyXn http://instantcashadva nce4u.com/" rel="nofollow" target="_blank">instant cash advance fGyqrp http://paydayloans24us.com/" rel="nofollow" target="_blank">payday loans online :-O
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar cash advance
0
 
 
ggmeoxf http://instantcashadva nce4u.co.uk/" rel="nofollow" target="_blank">cash advance 1211 http://instantcashadva nce4u.com/" rel="nofollow" target="_blank">cash advance ybgiOO http://paydayloans24us.com/" rel="nofollow" target="_blank">payday loans WdCgj
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar accutane
0
 
 
hybdbxz http://accutane-skin.com/" rel="nofollow" target="_blank">accutane 4568 http://bcheap-cialis.com/" rel="nofollow" target="_blank">cialis 4326 http://bcheap-viagra.com/" rel="nofollow" target="_blank">generic viagra :-O http://her-propecia.com/" rel="nofollow" target="_blank">propecia =-]
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar generic cialis
0
 
 
ewrbaoew http://bcheap-cialis.com/" rel="nofollow" target="_blank">generic cialis EpBirQ http://her-propecia.com/" rel="nofollow" target="_blank">propecia zZutL http://bcheap-viagra.com/" rel="nofollow" target="_blank">viagra =-] http://accutane-skin.com/" rel="nofollow" target="_blank">accutane rNfTPB
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar AJAY KUMAR
-1
 
 
nice material..
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar cycling gear clothing
0
 
 
I read your post and I want to say that it is very good and informative. I like it and I appreciate you for your effort.Thanks. http://www.xtremebicyclist.com/
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar bullet_theGoli
0
 
 
good
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar Martin Velez
-1
 
 
This is wrong.
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar Abdul Wahid Khan
0
 
 
Why this is wrong?

http://wahid311.blogspot.com" rel="nofollow" target="_blank">http://wahid311.blogspot.com
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar gaurav
0
 
 
Im impressed. Youre truly well informed and very intelligent. You wrote something that people could understand and made the subject intriguing for everyone. Im saving this for future use. http://linkjuice.co.in
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar vid
0
 
 
why is it wrong!?
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar Books and Manuals
0
 
 
Im impressed. Youre truly well informed and very intelligent. You wrote something that people could understand and made the subject intriguing for everyone. Im saving this for future use.

Vivian
Marks Web
www.imarksweb.net
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar air max chaussures
-1
 
 
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar thank you gifts
-1
 
 
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar janice
0
 
 
hmm...your post is good. i really like it. . .nice job keep sharing ;)
http://www.dissertations-w riting.co.uk" rel="nofollow" target="_blank">UK Dissertation writing
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar Rajasthan Tourism
0
 
 
http://www.vardhmanvacatio ns.com/
India Tours Guide Offers - Vardhman Vacations, Vacation Tours India, Rajasthan Holiday Package, Rajasthan Tour Packages, Rajasthan Tourism, Rajasthan Tours, Adventure Tourism India, Taj Mahal Tour Package, India, Wildlife National Parks, Special Ladakh Tours, India Religious Tours, India Adventure Tours, Rajasthan Train Tours, Golden Triangle Tours, Heritage Tour Rajasthan, Kerala Tourism, Budget Tour Package India.
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar Rajasthan Luxury Tours
0
 
 
http://www.rajasthan-luxur ytours.com/
Rajasthan Luxury Tours Offering - Rajasthan Luxury Tour Package, Luxury Tours to Rajasthan, Rajasthan Tour Guide, Rajasthan Luxury Tour Packages, Luxury Tours to Rajasthan India, Rajasthan Tour Packages, Rajasthan Best Tour Packages, Best Packages Rajasthan, Rajasthan Best Packages Tour, Safari Tours of Rajasthan, Luxury Rajasthan Destinations, Rajasthan Pilgrimage Vacations, Culture of Rajasthan, Rajasthan Fairs and Festivals, Rajasthan Wildlife Vacations, Luxury Rajasthan Trains Tours.
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar New Gadgets
0
 
 
Such interesting read and information, thanks for sharing this post.
http://www.weegadgets.com
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar thank you gifts
0
 
 
I am happy here and share http://www.giftbyoccasion.com/ and my experience.
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar air max chaussures
0
 
 
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar Air max tn
0
 
 
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar Retro Jordan Shoes outlet
0
 
 
http://www.nikeretailstore.com/
http://www.shoplouisvuitto nsave.com/
These stores will also sell Uggs at low costs during discount sales. You can also find these at

online stores. Like auction sites, you should do a price comparison among the various

stores.Where to Find Very Cheap JordansAs a rule,
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar tress
0
 
 
wholeslae tresor paris
Wholesale Tresor Paris jewellery offers bracelets,necklaces and packings-Tresor Paris
jewellery all by hand-made with a variety of precious gemstones crystals magnetite balls and fabrics.
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar Stuart Geel
0
 
 
Hip Hop Jewelry
Cheap Hip Hop Jewelry is mainly for sale in fashion Hip Hop Chains,and Hip Hop Pendant
and Disco Ball Chain as well,with brass, cubic zirconia stones and nylon string all by hand-made.
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar NFL Jerseys Wholesale
0
 
 
We are a reliable and professional NFL jerseys wholesaler, more orders to get more discounts. Wholesale NFL Jerseys
we have a large amount of "stocklist", dont hesitate to mail us
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
avatar amaimu
0
 
 
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment
Cancel
B
i
u
Quote
Code
List
List item
URL
Name *
Code   
ChronoComments by Joomla Professional Solutions
Submit Comment

Tag Cloud

Login Form