Subversion Repositories HelenOS

Rev

Rev 3766 | Rev 3934 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3766 Rev 3782
Line 104... Line 104...
104
{
104
{
105
    if (!bootinfo->hello_configured)
105
    if (!bootinfo->hello_configured)
106
        return;
106
        return;
107
   
107
   
108
    /*
108
    /*
109
     * If we have not system prepared by hello, we are not able to start
109
     * If we have not got system prepared by hello, we are not able to start
110
     * AP's. This means we are running on a simulator.
110
     * AP's. This means we are running on a simulator.
111
     */
111
     */
112
   
112
   
113
    sapic_init();
113
    sapic_init();
114
    ipi_broadcast_arch_all(bootinfo->wakeup_intno);
114
    ipi_broadcast_arch_all(bootinfo->wakeup_intno);
Line 163... Line 163...
163
                }
163
                }
164
}
164
}
165
 
165
 
166
#endif
166
#endif
167
 
167
 
168
 
-
 
169
#ifndef CONFIG_SMP
-
 
170
 
-
 
171
/* This is just a hack for linking with assembler - may be removed in future. */
-
 
172
void main_ap(void);
-
 
173
void main_ap(void)
-
 
174
{
-
 
175
    while(1)
-
 
176
        ;
-
 
177
}
-
 
178
 
-
 
179
#endif
-
 
180
 
-
 
181
/** @}
168
/** @}
182
 */
169
 */
183
 
170