[BACK]Return to subr_xcall.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/kern/subr_xcall.c between version 1.4.2.3 and 1.4.2.4

version 1.4.2.3, 2007/11/15 11:44:50 version 1.4.2.4, 2008/03/17 09:15:34
Line 131  xc_init_cpu(struct cpu_info *ci)
Line 131  xc_init_cpu(struct cpu_info *ci)
   
         cv_init(&ci->ci_data.cpu_xcall, "xcall");          cv_init(&ci->ci_data.cpu_xcall, "xcall");
         error = kthread_create(PRI_XCALL, KTHREAD_MPSAFE, ci, xc_thread,          error = kthread_create(PRI_XCALL, KTHREAD_MPSAFE, ci, xc_thread,
             NULL, NULL, "xcall/%d", (int)ci->ci_cpuid);              NULL, NULL, "xcall/%u", ci->ci_index);
         if (error != 0)          if (error != 0)
                 panic("xc_init_cpu: error %d", error);                  panic("xc_init_cpu: error %d", error);
 }  }

Legend:
Removed from v.1.4.2.3  
changed lines
  Added in v.1.4.2.4

CVSweb <webmaster@jp.NetBSD.org>