35 lines
618 B
C
35 lines
618 B
C
// kalloc.c
|
|
char *kalloc(int n);
|
|
void kfree(char *cp, int len);
|
|
void kinit(void);
|
|
|
|
// console.c
|
|
void cprintf(char *fmt, ...);
|
|
void panic(char *s);
|
|
|
|
// proc.c
|
|
struct proc;
|
|
void setupsegs(struct proc *);
|
|
struct proc * newproc(void);
|
|
void swtch(void);
|
|
void sleep(void *);
|
|
void wakeup(void *);
|
|
|
|
// trap.c
|
|
void tinit(void);
|
|
|
|
// string.c
|
|
void * memcpy(void *dst, void *src, unsigned n);
|
|
void * memset(void *dst, int c, unsigned n);
|
|
int memcmp(const void *v1, const void *v2, unsigned n);
|
|
|
|
// syscall.c
|
|
void syscall(void);
|
|
|
|
// picirq.c
|
|
void irq_setmask_8259A(uint16_t mask);
|
|
void pic_init(void);
|
|
|
|
// mp.c
|
|
void mpinit(void);
|
|
|