Subversion Repositories HelenOS-historic

Rev

Rev 1595 | Rev 1729 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1595 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup main
-
 
30
 * @{
-
 
31
 */
-
 
32
 
29
/**
33
/**
30
 * @file    main.c
34
 * @file
31
 * @brief   Main initialization kernel function for all processors.
35
 * @brief   Main initialization kernel function for all processors.
32
 *
36
 *
33
 * During kernel boot, all processors, after architecture dependent
37
 * During kernel boot, all processors, after architecture dependent
34
 * initialization, start executing code found in this file. After
38
 * initialization, start executing code found in this file. After
35
 * bringing up all subsystems, control is passed to scheduler().
39
 * bringing up all subsystems, control is passed to scheduler().
Line 317... Line 321...
317
    waitq_wakeup(&ap_completion_wq, WAKEUP_FIRST);
321
    waitq_wakeup(&ap_completion_wq, WAKEUP_FIRST);
318
    scheduler();
322
    scheduler();
319
    /* not reached */
323
    /* not reached */
320
}
324
}
321
#endif /* CONFIG_SMP */
325
#endif /* CONFIG_SMP */
-
 
326
 
-
 
327
 /** @}
-
 
328
 */
-
 
329