limine: Add missing forward declaration of struct limine_smp_info
This commit is contained in:
parent
88a2cc6cd8
commit
e25dd260fd
|
@ -368,6 +368,8 @@ Notes: The presence of this request will prompt the bootloader to bootstrap
|
||||||
the secondary processors. This will not be done if this request is not present.
|
the secondary processors. This will not be done if this request is not present.
|
||||||
|
|
||||||
```c
|
```c
|
||||||
|
struct limine_smp_info;
|
||||||
|
|
||||||
typedef void (*limine_goto_address)(struct limine_smp_info *);
|
typedef void (*limine_goto_address)(struct limine_smp_info *);
|
||||||
|
|
||||||
struct limine_smp_info {
|
struct limine_smp_info {
|
||||||
|
|
2
limine.h
2
limine.h
|
@ -143,6 +143,8 @@ struct limine_5_level_paging_request {
|
||||||
|
|
||||||
#define LIMINE_SMP_X2APIC (1 << 0)
|
#define LIMINE_SMP_X2APIC (1 << 0)
|
||||||
|
|
||||||
|
struct limine_smp_info;
|
||||||
|
|
||||||
typedef void (*limine_goto_address)(struct limine_smp_info *);
|
typedef void (*limine_goto_address)(struct limine_smp_info *);
|
||||||
|
|
||||||
struct limine_smp_info {
|
struct limine_smp_info {
|
||||||
|
|
Loading…
Reference in New Issue