blob: 0d37a649a59eaa1fc320859aaf92921ac64673ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _IPXE_UHEAP_H
#define _IPXE_UHEAP_H
/** @file
*
* External ("user") heap
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
FILE_SECBOOT ( PERMITTED );
#ifdef UMALLOC_UHEAP
#define UMALLOC_PREFIX_uheap
#else
#define UMALLOC_PREFIX_uheap __uheap_
#endif
extern physaddr_t uheap_limit;
extern physaddr_t uheap_start;
extern physaddr_t uheap_end;
#endif /* _IPXE_UHEAP_H */
|