Rev 1196 | Rev 1341 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1196 | Rev 1248 | ||
---|---|---|---|
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 | /** |
|
- | 30 | * @file kinit.c |
|
- | 31 | * @brief Kernel initialization thread. |
|
- | 32 | * |
|
- | 33 | * This file contains kinit kernel thread which carries out |
|
- | 34 | * high level system initialization. |
|
- | 35 | * |
|
- | 36 | * This file is responsible for finishing SMP configuration |
|
- | 37 | * and creation of userspace init tasks. |
|
- | 38 | */ |
|
- | 39 | ||
29 | #include <main/kinit.h> |
40 | #include <main/kinit.h> |
30 | #include <config.h> |
41 | #include <config.h> |
31 | #include <arch.h> |
42 | #include <arch.h> |
32 | #include <proc/scheduler.h> |
43 | #include <proc/scheduler.h> |
33 | #include <proc/task.h> |
44 | #include <proc/task.h> |