2007-08-23 23:58:19 +00:00
|
|
|
struct buf;
|
2007-08-28 12:48:33 +00:00
|
|
|
struct context;
|
2007-08-23 23:58:19 +00:00
|
|
|
struct file;
|
|
|
|
struct inode;
|
|
|
|
struct pipe;
|
2006-06-12 15:22:12 +00:00
|
|
|
struct proc;
|
2006-07-15 12:03:57 +00:00
|
|
|
struct spinlock;
|
2007-08-23 23:58:19 +00:00
|
|
|
struct stat;
|
2011-07-28 00:35:46 +00:00
|
|
|
struct superblock;
|
2006-06-15 16:02:20 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// bio.c
|
|
|
|
void binit(void);
|
|
|
|
struct buf* bread(uint, uint);
|
|
|
|
void brelse(struct buf*);
|
|
|
|
void bwrite(struct buf*);
|
2006-06-15 16:02:20 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// console.c
|
2009-03-08 22:07:13 +00:00
|
|
|
void consoleinit(void);
|
2007-08-23 23:58:19 +00:00
|
|
|
void cprintf(char*, ...);
|
2009-03-08 22:07:13 +00:00
|
|
|
void consoleintr(int(*)(void));
|
2007-08-23 23:58:19 +00:00
|
|
|
void panic(char*) __attribute__((noreturn));
|
2006-06-16 20:29:25 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// exec.c
|
2007-08-27 12:48:20 +00:00
|
|
|
int exec(char*, char**);
|
2006-09-07 01:37:58 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// file.c
|
|
|
|
struct file* filealloc(void);
|
|
|
|
void fileclose(struct file*);
|
2007-08-27 14:35:09 +00:00
|
|
|
struct file* filedup(struct file*);
|
2007-08-23 23:58:19 +00:00
|
|
|
void fileinit(void);
|
|
|
|
int fileread(struct file*, char*, int n);
|
|
|
|
int filestat(struct file*, struct stat*);
|
|
|
|
int filewrite(struct file*, char*, int n);
|
2006-06-21 01:53:07 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// fs.c
|
2011-07-28 00:35:46 +00:00
|
|
|
void readsb(int dev, struct superblock *sb);
|
2007-08-23 23:58:19 +00:00
|
|
|
int dirlink(struct inode*, char*, uint);
|
2007-08-24 20:54:23 +00:00
|
|
|
struct inode* dirlookup(struct inode*, char*, uint*);
|
|
|
|
struct inode* ialloc(uint, short);
|
|
|
|
struct inode* idup(struct inode*);
|
2007-08-23 23:58:19 +00:00
|
|
|
void iinit(void);
|
2007-08-24 20:54:23 +00:00
|
|
|
void ilock(struct inode*);
|
|
|
|
void iput(struct inode*);
|
|
|
|
void iunlock(struct inode*);
|
|
|
|
void iunlockput(struct inode*);
|
2007-08-23 23:58:19 +00:00
|
|
|
void iupdate(struct inode*);
|
|
|
|
int namecmp(const char*, const char*);
|
2007-08-24 20:54:23 +00:00
|
|
|
struct inode* namei(char*);
|
|
|
|
struct inode* nameiparent(char*, char*);
|
2007-08-23 23:58:19 +00:00
|
|
|
int readi(struct inode*, char*, uint, uint);
|
|
|
|
void stati(struct inode*, struct stat*);
|
|
|
|
int writei(struct inode*, char*, uint, uint);
|
2006-07-12 17:00:54 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// ide.c
|
2009-03-08 22:07:13 +00:00
|
|
|
void ideinit(void);
|
|
|
|
void ideintr(void);
|
2009-07-12 02:28:29 +00:00
|
|
|
void iderw(struct buf*);
|
2006-06-22 01:28:57 +00:00
|
|
|
|
2006-09-08 14:40:51 +00:00
|
|
|
// ioapic.c
|
2009-03-08 22:07:13 +00:00
|
|
|
void ioapicenable(int irq, int cpu);
|
|
|
|
extern uchar ioapicid;
|
|
|
|
void ioapicinit(void);
|
2006-08-04 18:12:31 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// kalloc.c
|
2011-08-16 00:11:13 +00:00
|
|
|
char* enter_alloc(void);
|
2010-08-31 16:54:47 +00:00
|
|
|
char* kalloc(void);
|
|
|
|
void kfree(char*);
|
2011-01-11 18:01:13 +00:00
|
|
|
void kinit(void);
|
2011-08-16 19:47:22 +00:00
|
|
|
uint detect_memory(void);
|
2007-08-23 23:58:19 +00:00
|
|
|
|
2007-08-28 03:28:13 +00:00
|
|
|
// kbd.c
|
2009-03-08 22:07:13 +00:00
|
|
|
void kbdintr(void);
|
2007-08-28 03:28:13 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// lapic.c
|
2009-08-31 06:02:08 +00:00
|
|
|
int cpunum(void);
|
2007-08-27 16:57:13 +00:00
|
|
|
extern volatile uint* lapic;
|
2009-03-08 22:07:13 +00:00
|
|
|
void lapiceoi(void);
|
|
|
|
void lapicinit(int);
|
|
|
|
void lapicstartap(uchar, uint);
|
2009-05-31 00:28:45 +00:00
|
|
|
void microdelay(int);
|
2007-08-23 23:58:19 +00:00
|
|
|
|
2011-07-28 00:35:46 +00:00
|
|
|
// log.c
|
|
|
|
void initlog(void);
|
|
|
|
void log_write(struct buf*);
|
|
|
|
void begin_trans();
|
|
|
|
void commit_trans();
|
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// mp.c
|
|
|
|
extern int ismp;
|
2009-03-08 22:07:13 +00:00
|
|
|
int mpbcpu(void);
|
|
|
|
void mpinit(void);
|
|
|
|
void mpstartthem(void);
|
2006-06-21 01:53:07 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// picirq.c
|
2009-03-08 22:07:13 +00:00
|
|
|
void picenable(int);
|
|
|
|
void picinit(void);
|
2006-06-27 14:35:53 +00:00
|
|
|
|
|
|
|
// pipe.c
|
2007-08-28 04:22:35 +00:00
|
|
|
int pipealloc(struct file**, struct file**);
|
|
|
|
void pipeclose(struct pipe*, int);
|
|
|
|
int piperead(struct pipe*, char*, int);
|
|
|
|
int pipewrite(struct pipe*, char*, int);
|
2006-06-27 14:35:53 +00:00
|
|
|
|
2009-08-08 08:07:30 +00:00
|
|
|
//PAGEBREAK: 16
|
2007-08-23 23:58:19 +00:00
|
|
|
// proc.c
|
|
|
|
struct proc* copyproc(struct proc*);
|
2007-08-28 19:25:04 +00:00
|
|
|
void exit(void);
|
2009-05-31 00:38:51 +00:00
|
|
|
int fork(void);
|
2007-08-23 23:58:19 +00:00
|
|
|
int growproc(int);
|
2007-08-28 19:25:04 +00:00
|
|
|
int kill(int);
|
2007-08-23 23:58:19 +00:00
|
|
|
void pinit(void);
|
|
|
|
void procdump(void);
|
2007-08-27 23:32:16 +00:00
|
|
|
void scheduler(void) __attribute__((noreturn));
|
2010-09-02 18:30:06 +00:00
|
|
|
void sched(void);
|
2007-08-23 23:58:19 +00:00
|
|
|
void sleep(void*, struct spinlock*);
|
|
|
|
void userinit(void);
|
2007-08-28 19:25:04 +00:00
|
|
|
int wait(void);
|
2007-08-23 23:58:19 +00:00
|
|
|
void wakeup(void*);
|
|
|
|
void yield(void);
|
2006-07-05 20:00:14 +00:00
|
|
|
|
2007-08-28 12:48:33 +00:00
|
|
|
// swtch.S
|
2009-07-12 02:28:29 +00:00
|
|
|
void swtch(struct context**, struct context*);
|
2006-07-16 01:47:40 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// spinlock.c
|
|
|
|
void acquire(struct spinlock*);
|
|
|
|
void getcallerpcs(void*, uint*);
|
|
|
|
int holding(struct spinlock*);
|
|
|
|
void initlock(struct spinlock*, char*);
|
|
|
|
void release(struct spinlock*);
|
2011-01-11 18:01:13 +00:00
|
|
|
void pushcli(void);
|
|
|
|
void popcli(void);
|
2006-07-21 13:18:04 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// string.c
|
|
|
|
int memcmp(const void*, const void*, uint);
|
|
|
|
void* memmove(void*, const void*, uint);
|
|
|
|
void* memset(void*, int, uint);
|
|
|
|
char* safestrcpy(char*, const char*, int);
|
|
|
|
int strlen(const char*);
|
|
|
|
int strncmp(const char*, const char*, uint);
|
2007-08-24 21:00:02 +00:00
|
|
|
char* strncpy(char*, const char*, int);
|
2007-08-21 19:22:08 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// syscall.c
|
|
|
|
int argint(int, int*);
|
|
|
|
int argptr(int, char**, int);
|
|
|
|
int argstr(int, char**);
|
|
|
|
int fetchint(struct proc*, uint, int*);
|
|
|
|
int fetchstr(struct proc*, uint, char**);
|
|
|
|
void syscall(void);
|
|
|
|
|
2007-08-28 04:40:58 +00:00
|
|
|
// timer.c
|
2009-03-08 22:07:13 +00:00
|
|
|
void timerinit(void);
|
2007-08-28 04:40:58 +00:00
|
|
|
|
2007-08-23 23:58:19 +00:00
|
|
|
// trap.c
|
|
|
|
void idtinit(void);
|
2010-08-11 18:34:45 +00:00
|
|
|
extern uint ticks;
|
2007-08-23 23:58:19 +00:00
|
|
|
void tvinit(void);
|
2007-08-27 13:34:35 +00:00
|
|
|
extern struct spinlock tickslock;
|
2007-08-08 09:41:21 +00:00
|
|
|
|
2009-05-31 00:28:45 +00:00
|
|
|
// uart.c
|
2009-05-31 00:38:51 +00:00
|
|
|
void uartinit(void);
|
|
|
|
void uartintr(void);
|
|
|
|
void uartputc(int);
|
2009-05-31 00:28:45 +00:00
|
|
|
|
2010-07-02 18:51:53 +00:00
|
|
|
// vm.c
|
2010-09-13 19:34:44 +00:00
|
|
|
void seginit(void);
|
2010-07-23 11:41:13 +00:00
|
|
|
void kvmalloc(void);
|
2010-08-30 14:13:49 +00:00
|
|
|
void vmenable(void);
|
2011-08-10 01:37:35 +00:00
|
|
|
pde_t* setupkvm(char* (*alloc)());
|
2010-07-26 00:30:21 +00:00
|
|
|
char* uva2ka(pde_t*, char*);
|
2010-09-02 22:28:36 +00:00
|
|
|
int allocuvm(pde_t*, uint, uint);
|
|
|
|
int deallocuvm(pde_t*, uint, uint);
|
2010-07-26 00:30:21 +00:00
|
|
|
void freevm(pde_t*);
|
2010-09-02 19:37:05 +00:00
|
|
|
void inituvm(pde_t*, char*, uint);
|
2011-01-11 18:51:40 +00:00
|
|
|
int loaduvm(pde_t*, char*, struct inode*, uint, uint);
|
|
|
|
pde_t* copyuvm(pde_t*, uint);
|
2010-08-06 15:12:18 +00:00
|
|
|
void switchuvm(struct proc*);
|
2011-01-11 18:01:13 +00:00
|
|
|
void switchkvm(void);
|
2011-01-11 18:51:40 +00:00
|
|
|
int copyout(pde_t*, uint, void*, uint);
|
2010-07-02 18:51:53 +00:00
|
|
|
|
2007-08-08 09:41:21 +00:00
|
|
|
// number of elements in fixed-size array
|
|
|
|
#define NELEM(x) (sizeof(x)/sizeof((x)[0]))
|