Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 522 → Rev 523

/kernel/trunk/generic/src/main/kinit.c
57,8 → 57,14
#include <test.h>
#endif /* CONFIG_TEST */
 
 
 
/** Kernel initialization thread.
*
* kinit takes care of higher level kernel
* initialization (i.e. thread creation,
* userspace initialization etc.).
*
* @param arg Not used.
*/
void kinit(void *arg)
{
vm_t *m;
/kernel/trunk/generic/src/main/main.c
76,8 → 76,8
config_t config;
context_t ctx;
 
/*
* These 'hardcoded' variables will be intialised by
/**
* These 'hardcoded' variables will be intialized by
* the linker or the low level assembler code with
* appropriate sizes and addresses.
*/
88,18 → 88,18
__address init_addr = 0;
size_t init_size = 0;
 
/*
/**
* Size of memory in bytes taken by kernel and heap.
*/
static size_t kernel_size;
 
/*
/**
* Size of heap.
*/
static size_t heap_size;
 
 
/*
/**
* Extra space between heap and stack
* enforced by alignment requirements.
*/