Fixed a pedantic syntax error (a stray semicolon at the end of
PCPU_MD_FIELDS).
This commit is contained in:
parent
fc779a7573
commit
59742d249e
@ -41,7 +41,7 @@
|
||||
#define PCPU_MD_FIELDS \
|
||||
struct pcpu *pc_prvspace; /* Self-reference */ \
|
||||
register_t pc_scratch_rsp; /* User %rsp in syscall */ \
|
||||
u_int pc_acpi_id; /* ACPI CPU id */
|
||||
u_int pc_acpi_id /* ACPI CPU id */
|
||||
|
||||
#if defined(lint)
|
||||
|
||||
|
@ -49,7 +49,7 @@
|
||||
struct segment_descriptor *pc_tss_gdt; \
|
||||
int pc_currentldt; \
|
||||
u_int pc_acpi_id; \
|
||||
u_int pc_apic_id;
|
||||
u_int pc_apic_id
|
||||
|
||||
#if defined(lint)
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
||||
uint32_t pc_awake:1; /* CPU is awake? */ \
|
||||
uint64_t pc_clock; /* Clock counter. */ \
|
||||
uint64_t pc_clockadj; /* Clock adjust. */ \
|
||||
uint32_t pc_acpi_id; /* ACPI CPU id. */
|
||||
uint32_t pc_acpi_id /* ACPI CPU id. */
|
||||
|
||||
struct pcpu;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user