diff options
author | Tiago Vignatti <tiago.vignatti@nokia.com> | 2010-01-05 18:42:33 +0200 |
---|---|---|
committer | Tiago Vignatti <tiago.vignatti@nokia.com> | 2010-01-05 18:44:30 +0200 |
commit | fda0acbc420efa876fc1ac9797305572f80a849f (patch) | |
tree | 7c4c141abf12ce2c62f8aa2cec900d262f572b25 /src/lrmi/common.c | |
parent | cd3a35fb27b26824e3c539ff64462eb3db2babe6 (diff) |
vm86: import real-mode allocating functions from X
and hide this monster here to protect normal human beings.
(soundtrack: The Mars Volta, Cassandra Gemini V)
Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com>
Diffstat (limited to 'src/lrmi/common.c')
-rw-r--r-- | src/lrmi/common.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lrmi/common.c b/src/lrmi/common.c index 585fd14..cd16aba 100644 --- a/src/lrmi/common.c +++ b/src/lrmi/common.c @@ -146,6 +146,8 @@ delete_block(int i) (mem_info.count - i) * sizeof(struct mem_block)); } +/*TODO: do it backend specific */ +#if 0 void * LRMI_alloc_real(int size) { @@ -207,7 +209,7 @@ LRMI_free_real(void *m) delete_block(i); } } - +#endif int LRMI_common_init(void) { void *m; |