Subversion Repositories HelenOS-historic

Rev

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

Rev 1702 Rev 1757
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 generic   
29
/** @addtogroup generic
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
Line 54... Line 54...
54
    count_t cnt;
54
    count_t cnt;
55
    init_task_t tasks[CONFIG_INIT_TASKS];
55
    init_task_t tasks[CONFIG_INIT_TASKS];
56
} init_t;
56
} init_t;
57
 
57
 
58
typedef struct {
58
typedef struct {
59
    count_t cpu_count;
59
    count_t cpu_count;      /**< Number of processors detected. */
60
    volatile count_t cpu_active;
60
    volatile count_t cpu_active;    /**< Number of processors that are up and running. */
61
 
61
 
62
    __address base;
62
    __address base;
63
    size_t memory_size;
63
    size_t memory_size;     /**< Size of detected memory in bytes. */
64
    size_t kernel_size;           /**< Size of memory in bytes taken by kernel and stack */
64
    size_t kernel_size;     /**< Size of memory in bytes taken by kernel and stack */
65
   
-
 
66
    bool mm_initialized;
-
 
67
} config_t;
65
} config_t;
68
 
66
 
69
extern config_t config;
67
extern config_t config;
70
extern init_t init;
68
extern init_t init;
71
 
69
 
72
#endif
70
#endif
73
 
71
 
74
 /** @}
72
/** @}
75
 */
73
 */
76
 
-