Name
Procesor Interface -- CPU interface to the other subsystems.
Description
This functions allow the other subsystems to interact, througth the messaging
service, with the CPU.
Details
cpu_register_proc_creat ()
Registers func to be called when ever a new process gets created.
cpu_register_proc_finish ()
Registers func to be called when ever a process is terminated.
proc_creat_callback_t ()
void (*proc_creat_callback_t) (gint pid); |
Function pointer type for the callback used on cpu_register_proc_creat.
proc_finish_callback_t ()
void (*proc_finish_callback_t) (gint pid); |
Function pointer type for the callback used on cpu_register_proc_finish.
CPU_terminate_proc ()
void CPU_terminate_proc (gint pid); |
Terminate process pid.