fix file names
This commit is contained in:
parent
8be7e703ca
commit
66d46d691d
1 changed files with 3 additions and 3 deletions
6
defs.h
6
defs.h
|
@ -26,7 +26,7 @@ int proc_wait(void);
|
||||||
void yield(void);
|
void yield(void);
|
||||||
void procdump(void);
|
void procdump(void);
|
||||||
|
|
||||||
// swtch.S
|
// setjmp.S
|
||||||
struct jmpbuf;
|
struct jmpbuf;
|
||||||
int setjmp(struct jmpbuf*);
|
int setjmp(struct jmpbuf*);
|
||||||
void longjmp(struct jmpbuf*);
|
void longjmp(struct jmpbuf*);
|
||||||
|
@ -62,7 +62,7 @@ void mp_init(void);
|
||||||
void mp_startthem(void);
|
void mp_startthem(void);
|
||||||
int mp_bcpu(void);
|
int mp_bcpu(void);
|
||||||
|
|
||||||
// lapic
|
// lapic.c
|
||||||
extern uint *lapicaddr;
|
extern uint *lapicaddr;
|
||||||
void lapic_init(int);
|
void lapic_init(int);
|
||||||
void lapic_startap(uchar, int);
|
void lapic_startap(uchar, int);
|
||||||
|
@ -73,7 +73,7 @@ void lapic_disableintr(void);
|
||||||
void lapic_eoi(void);
|
void lapic_eoi(void);
|
||||||
int cpu(void);
|
int cpu(void);
|
||||||
|
|
||||||
// ioapic
|
// ioapic.c
|
||||||
extern uchar ioapic_id;
|
extern uchar ioapic_id;
|
||||||
void ioapic_init(void);
|
void ioapic_init(void);
|
||||||
void ioapic_enable(int irq, int cpu);
|
void ioapic_enable(int irq, int cpu);
|
||||||
|
|
Loading…
Reference in a new issue