Skip to content

Assignments of CSE-344 / System Programming on POSIX using mutexes server client communication, pthreads, parent child communication, semaphores, daemon process, systemV / POSIX / binary semaphores, detached/joinable threads, supplier consumer relationship, pipes

sglbl/CSE-344

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Assignments of CSE-344 / System Programming on POSIX Systems

String replacement with low-level system calls.

Simulating parent-child process relationship. Parent process reads input coordinates from file and forward them for calculations to children processes.

Simulating bakers synchronization problem using named and unnamed semaphores. (inspired by cigarette smokers synchronization problem)

Simulating supplier thread - consumer threads relationship using System V semaphores / semaphore sets.

Using;

  • semget => creating a semaphore set (multiple semaphores)
  • semctl => initializing semaphore set indexes to a number (Using SemUnion)
  • semctl => Checking value of semaphore set index.
  • semop => Incrementing/decrementing the value of semaphore (or multiple semaphores together) using struct sembuf.
  • tprintf=> Variadic function which uses snprintf() and vprintf() to act like a printf with timestamp.
  • detached thread (for supplier) and joinable threads (for clients)

Simulating the usage of POSIX threads to parallelize a couple of mathematical tasks.

Simulating 2 process-pooled servers (Y and Z) executing on the same system as the clients. Which;

  • Y and Z are daemon processes that have no controlling terminal.
  • Y is singleton (measure against double instantiation).
  • Y have p children processes (workers).
  • If children of Y are already busy, they send requests to Z through pipe.
  • Z is a server instantiated by Server Y.
  • Z have children process pool (workers) and delegates requests to its children using shared memory segment.
  • Client connects to server Y through the server fifo (given as a commandline argument), sends its request, receives its response through its client fifo, prints it to STDOUT and exit. (Also it exits gracefully in case of SIGINT)

Simulating a connection system wihch have 3 programs. The servant processes will answer the requests coming from the server through sockets. The client will make requests to the server through sockets, and the server will respond to those requests via the information acquired from the servants. (Using ip address and unique port numbers). It's not fully implemented due to time restrictions.

About

Assignments of CSE-344 / System Programming on POSIX using mutexes server client communication, pthreads, parent child communication, semaphores, daemon process, systemV / POSIX / binary semaphores, detached/joinable threads, supplier consumer relationship, pipes

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published