This repository has been archived by the owner on Sep 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b1fe21
commit ed6ec38
Showing
8 changed files
with
132 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
/** | ||
* | ||
* @file init_proc.h | ||
* @brief Modulo con le funzioni per la creazione dei processi utente di test. | ||
* | ||
*/ | ||
#ifndef INIT_PROC_H | ||
#define INIT_PROC_H | ||
|
||
/** | ||
* @brief Crea, inizializza e lancia gli 8 processi utente di test. | ||
*/ | ||
extern void instantiator_proc(void); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,24 @@ | ||
/** | ||
* @file vm_support.h | ||
* @brief Modulo contenente le funzioni per la gestione della memoria virtuale | ||
* */ | ||
#ifndef VM_SUPPORT | ||
#define VM_SUPPORT | ||
|
||
/** | ||
* @var Semaforo mutex per la Swap Pool | ||
* */ | ||
extern int swp_pl_sem; | ||
|
||
/** | ||
* @brief Inizializza tutte le strutture dati necessarie per la gestione | ||
* della memoria virtuale. | ||
* */ | ||
extern void init_supp_structures(void); | ||
|
||
/** | ||
* @brief Gestore delle eccezioni del TLB. The pager | ||
* */ | ||
extern void tlb_exc_handler(void); | ||
|
||
#endif |