1 / 12

Εργαστήριο Λειτουργικών Συστημάτων Φροντιστήριο 5– System Calls

Εργαστήριο Λειτουργικών Συστημάτων Φροντιστήριο 5– System Calls. Ντίρλης Νικόλαος. Minix Kernel. System Calls (1). System Calls. System Calls (2). A user-level process cannot directly access a disk. Instead it asks the kernel to obtain data from a file for it (the read system call).

drew
Download Presentation

Εργαστήριο Λειτουργικών Συστημάτων Φροντιστήριο 5– System Calls

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Εργαστήριο Λειτουργικών ΣυστημάτωνΦροντιστήριο5– System Calls Ντίρλης Νικόλαος

  2. Minix Kernel

  3. System Calls (1) System Calls

  4. System Calls (2) • A user-level process cannot directly access a disk. Instead it asks the kernel to obtain data from a file for it (the read system call). • A user-level process cannot create another process. Instead, it asks the kernel to create one for it. • To Minixέχει ένα σετ από system calls που μπορούμε να βρούμε στο table.c • usr/src/servers/vfs/table.c • αλλά και pfs/table.c και mfs/table.c

  5. System Calls – Βήματα • Βρίσκω μια κενή θέση στο κατάλληλο table.c

  6. table.c

  7. table.c replace

  8. System Calls – Βήματα • Βρίσκω μια κενή θέση στο κατάλληλο table.c • Δηλώνω το system call μου στο proto.h

  9. proto.h

  10. System Calls – Βήματα • Βρίσκω μια κενή θέση στο κατάλληλο table.c • Δηλώνω το system call μου στο proto.h • Kernel Modification

  11. /usr/include/minix/callnr.h • #define MYCALL (NUMBER) • Increase (number of calls) by 1

  12. System Calls – Βήματα • Βρίσκω μια κενή θέση στο κατάλληλο table.c • Δηλώνω το system call μου στο proto.h • Kernel Modification • Inform the library

More Related