kern

diff src/timer.c @ 47:f65b348780e3

continuing with the process implementation. not done yet, panics.
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 28 Jul 2011 05:43:04 +0300
parents 710739e33da8
children b1e8c8251884
line diff
     1.1 --- a/src/timer.c	Thu Jul 28 05:33:59 2011 +0300
     1.2 +++ b/src/timer.c	Thu Jul 28 05:43:04 2011 +0300
     1.3 @@ -69,9 +69,4 @@
     1.4  static void intr_handler()
     1.5  {
     1.6  	nticks++;
     1.7 -
     1.8 -	if(nticks % TICK_FREQ_HZ == 0) {
     1.9 -		time_t t = time(0);
    1.10 -		printf("%s", asctime(gmtime(&t)));
    1.11 -	}
    1.12  }