Skip to content

This program implements job execution using monitors

Notifications You must be signed in to change notification settings

RikoAppDev/os-monitors

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Job Execution using Monitors in C

This program demonstrates how to execute processes in a specific order using monitors (mutexes and condition variables) in C.

Process Order

The processes follow this execution order:

    _____P4____
   /           \
 P3------P5-----P8
   \_____P6____/

  • P3: Runs first.
  • P4, P5, P6: Run simultaneously after P3 completes.
  • P8: Runs after P4, P5, and P6 complete.

About

This program implements job execution using monitors

Topics

Resources

Stars

Watchers

Forks

Languages