Beispiel #1
0
void tick() 
{
	++YKTickNum;
	//call the given function in addition to our function:
	mytick();

	//Decrement one from each TCB in Suspended list
	YKTickHandler();
}
Beispiel #2
0
//? void extern tick()
void tick() 
{
        char *tick_message;
        tick_message = "TICK ";

        ++t;
        
        printNewLine();
        printString(tick_message);
        printUInt(t);
        printNewLine();
		
	//Decrement one from each TCB in Suspended list
	YKTickHandler();
}
Beispiel #3
0
void tickHandler(void)
{
	YKTickHandler();
}