Chameleon

Chameleon Svn Source Tree

Root/branches/JrCs/i386/libsaio/mem.c

1/*
2 * Copyright 2010 AsereBLN. All rights reserved. <aserebln@googlemail.com>
3 * Released under version 2 of the Gnu Public License (GPLv2).
4 *
5 * mem.c - obtain system memory information
6 */
7
8#include "libsaio.h"
9#include "pci.h"
10#include "platform.h"
11#include "cpu.h"
12#include "mem.h"
13
14#ifndef DEBUG_MEM
15#define DEBUG_MEM 0
16#endif
17
18#if DEBUG_MEM
19#define DBG(x...)printf(x)
20#else
21#define DBG(x...)
22#endif
23
24void scan_memory(PlatformInfo_t *p)
25{
26/* NYI */
27}
28

Archive Download this file

Revision: 15