limine: Fix definition of limine_goto_address type
This commit is contained in:
parent
8b2cafc875
commit
88a2cc6cd8
|
@ -368,7 +368,7 @@ 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
|
||||||
typedef void (*limine_goto_address)(void);
|
typedef void (*limine_goto_address)(struct limine_smp_info *);
|
||||||
|
|
||||||
struct limine_smp_info {
|
struct limine_smp_info {
|
||||||
uint32_t processor_id;
|
uint32_t processor_id;
|
||||||
|
|
2
limine.h
2
limine.h
|
@ -143,7 +143,7 @@ struct limine_5_level_paging_request {
|
||||||
|
|
||||||
#define LIMINE_SMP_X2APIC (1 << 0)
|
#define LIMINE_SMP_X2APIC (1 << 0)
|
||||||
|
|
||||||
typedef void (*limine_goto_address)(void);
|
typedef void (*limine_goto_address)(struct limine_smp_info *);
|
||||||
|
|
||||||
struct limine_smp_info {
|
struct limine_smp_info {
|
||||||
uint32_t processor_id;
|
uint32_t processor_id;
|
||||||
|
|
Loading…
Reference in New Issue