Fixed a pedantic syntax error (a stray semicolon at the end of

PCPU_MD_FIELDS).
This commit is contained in:
bde 2003-11-17 03:40:41 +00:00
parent fc779a7573
commit 59742d249e
3 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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;