diff options
| author | Michael Brown | 2008-10-13 05:32:11 +0200 |
|---|---|---|
| committer | Michael Brown | 2008-10-13 06:33:14 +0200 |
| commit | 831e4cfc2718b0784bc22c2d00045481ab3c65b5 (patch) | |
| tree | 34d26c6b88381b490d71c020bc9e72b0e90eca37 /src/config | |
| parent | [uaccess] Formalise the uaccess API (diff) | |
| download | ipxe-831e4cfc2718b0784bc22c2d00045481ab3c65b5.tar.gz ipxe-831e4cfc2718b0784bc22c2d00045481ab3c65b5.tar.xz ipxe-831e4cfc2718b0784bc22c2d00045481ab3c65b5.zip | |
[umalloc] Formalise the user memory allocation API
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/defaults/pcbios.h | 1 | ||||
| -rw-r--r-- | src/config/umalloc.h | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/config/defaults/pcbios.h b/src/config/defaults/pcbios.h index 211f28cf7..b782647c8 100644 --- a/src/config/defaults/pcbios.h +++ b/src/config/defaults/pcbios.h @@ -13,5 +13,6 @@ #define TIMER_PCBIOS #define CONSOLE_PCBIOS #define NAP_PCBIOS +#define UMALLOC_MEMTOP #endif /* CONFIG_DEFAULTS_PCBIOS_H */ diff --git a/src/config/umalloc.h b/src/config/umalloc.h new file mode 100644 index 000000000..de4019e50 --- /dev/null +++ b/src/config/umalloc.h @@ -0,0 +1,12 @@ +#ifndef CONFIG_UMALLOC_H +#define CONFIG_UMALLOC_H + +/** @file + * + * User memory allocation API configuration + * + */ + +#include <config/defaults.h> + +#endif /* CONFIG_UMALLOC_H */ |
