]> wirehaze git hosting - ppos.git/blob - ppos/kernel/time.h

wirehaze git hosting

add ppos/
[ppos.git] / ppos / kernel / time.h
1 // PingPongOS - PingPong Operating System
2 // Prof. Carlos A. Maziero, DINF UFPR
3 // Versão 2.0 -- Junho de 2025
4
5 // ATENÇÃO: ESTE ARQUIVO NÃO DEVE SER ALTERADO;
6 // ALTERAÇÕES SERÃO DESCARTADAS NA CORREÇÃO.
7
8 #ifndef __PPOS_TIME__
9 #define __PPOS_TIME__
10
11 // duracao default do quantum em ticks (ms)
12 #define QUANTUM 10
13
14 // inicia o subsistema de gestão do tempo
15 void time_init();
16
17 // informa o valor atual do relógio (milissegundos)
18 int systime();
19
20 #endif