Changeset 1084 for Whitix

Show
Ignore:
Timestamp:
10/04/08 23:56:38 (2 months ago)
Author:
mwhitworth
Message:

Rearrange init calls, so process code can call Ic* functions.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/keobject/kernel/main.c

    r1074 r1084  
    4949        TimeInit(); 
    5050        ShutdownInit(); 
    51  
     51         
     52        /* Set up the device-related subsystems. */ 
     53        IcInit(); 
     54         
    5255        ThrInit(); 
    5356         
    54         /* Set up the device-related subsystems. */ 
    55         IcInit();        
    5657        VfsInit(); 
    5758        DevFsInit(); 
     
    6768        ThrIdleFunc(); 
    6869} 
     70