[BACK]Return to subr_autoconf.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_autoconf.c between version 1.144 and 1.144.2.1

version 1.144, 2008/04/14 18:07:51 version 1.144.2.1, 2008/05/18 12:35:09
Line 406  void
Line 406  void
 configure(void)  configure(void)
 {  {
         extern void ssp_init(void);          extern void ssp_init(void);
         int i;          int i, s;
   
         /* Initialize data structures. */          /* Initialize data structures. */
         config_init();          config_init();
Line 433  configure(void)
Line 433  configure(void)
         /* Initialize SSP. */          /* Initialize SSP. */
         ssp_init();          ssp_init();
   
         /* Initialize callouts, part 2. */  
         callout_startup2();  
   
         /*          /*
          * Now that we've found all the hardware, start the real time           * Now that we've found all the hardware, start the real time
          * and statistics clocks.           * and statistics clocks.
Line 443  configure(void)
Line 440  configure(void)
         initclocks();          initclocks();
   
         cold = 0;       /* clocks are running, we're warm now! */          cold = 0;       /* clocks are running, we're warm now! */
           s = splsched();
           curcpu()->ci_schedstate.spc_flags |= SPCF_RUNNING;
           splx(s);
   
         /* Boot the secondary processors. */          /* Boot the secondary processors. */
         mp_online = true;          mp_online = true;
Line 450  configure(void)
Line 450  configure(void)
         cpu_boot_secondary_processors();          cpu_boot_secondary_processors();
 #endif  #endif
   
         /* Setup the scheduler. */          /* Setup the runqueues and scheduler. */
           runq_init();
         sched_init();          sched_init();
   
         /*          /*

Legend:
Removed from v.1.144  
changed lines
  Added in v.1.144.2.1

CVSweb <webmaster@jp.NetBSD.org>