Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > 589b38626859682dda0b4289ae4806af > files > 81

coccinelle-examples-1.0.7-2.mga7.i586.rpm

int do_setitimer(int which, struct itimerval *value, 
                 struct itimerval *ovalue)
{
   unsigned long expire;
   cputime_t cputime;
   int k;
   if (ovalue && (k = do_getitimer(which, ovalue)) < 0)
     return k;
   switch (which) {
     case ITIMER_VIRTUAL:
       cputime = timeval_to_cputime(&value->it_value);
      if (cputime_eq(cputime, cputime_zero))
	  cputime = jiffies_to_cputime(1);
       current->it_virt_value = cputime;
       cputime = timeval_to_cputime(&value->it_interval);
       current->it_virt_incr = cputime;
       break;
     case ITIMER_PROF:
       cputime = timeval_to_cputime(&value->it_value);
        if (cputime_eq(cputime, cputime_zero))
	    cputime = jiffies_to_cputime(1);
         current->it_prof_value = cputime;
         cputime = timeval_to_cputime(&value->it_interval);
         current->it_prof_incr = cputime;
         break;
       default:
         return -EINVAL;
   }
   return 0;
}