blob: c201b6c77a6b6cd658ca05331f4b23d1145b1edb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _IPXE_HART_H
#define _IPXE_HART_H
/** @file
*
* Hardware threads (harts)
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
extern unsigned long boot_hart;
extern int hart_supported ( const char *ext );
#endif /* _IPXE_HART_H */
|