Skip to content
/ fhnw-syspr-work-05 Public template

FHNW Modul System-Programmierung (syspr) Hands-on Lektion 5

Notifications You must be signed in to change notification settings

tamberg/fhnw-syspr-work-05

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

System-Programmierung

Hands-on zu Lektion 5

Für Slides und Code Beispiele, siehe Lektion 5

Achtung: Arbeiten Sie nicht direkt auf diesem Repository.
Prüfen Sie die vorhandenen Forks, um das Repository für Ihre Klasse zu finden.

a) fork(), 15'

  • Schreiben Sie ein Programm my_fork.c, das "forkt".
  • Nutzen Sie die System Calls fork(), exit() und wait().
  • Das Programm soll den folgenden Output ausgeben, mit konkreten Prozess IDs für pid, pid_c und pid_p:
    I'm parent pid of child pid_c
    I'm child pid of parent pid_p

b) Zombie-Prozesse, 15'

  • Schreiben Sie Code, der für 1 Sekunde einen ZombieProzess erzeugt, mit exit(), fork(), sleep() und wait().
    $ ./my_zombie &
    [1] 1001
    $ ps aux | grep my_zombie
    ... 1001 ... ./my_zombie
    ... 1002 ... [my_zombie] <defunct>
  • Hinweis: <defunct> bedeutet Zombie-Prozess.

About

FHNW Modul System-Programmierung (syspr) Hands-on Lektion 5

Resources

Stars

Watchers

Forks

Packages

No packages published