xv6-cs450/defs.h

149 lines
4.2 KiB
C
Raw Normal View History

2007-08-24 01:58:19 +02:00
struct buf;
struct file;
struct inode;
struct jmpbuf;
struct pipe;
2006-06-12 17:22:12 +02:00
struct proc;
struct spinlock;
2007-08-24 01:58:19 +02:00
struct stat;
2006-06-15 18:02:20 +02:00
2007-08-24 01:58:19 +02:00
// 8253pit.c
void pit8253_timerinit(void);
2006-06-15 18:02:20 +02:00
2007-08-24 01:58:19 +02:00
// bio.c
void binit(void);
struct buf* bread(uint, uint);
void brelse(struct buf*);
void bwrite(struct buf*);
2006-06-15 18:02:20 +02:00
2007-08-24 01:58:19 +02:00
// console.c
void console_init(void);
void cprintf(char*, ...);
void kbd_intr(void);
void panic(char*) __attribute__((noreturn));
2006-06-16 22:29:25 +02:00
2007-08-24 01:58:19 +02:00
// exec.c
2007-08-27 14:48:20 +02:00
int exec(char*, char**);
2007-08-24 01:58:19 +02:00
// file.c
struct file* filealloc(void);
void fileclose(struct file*);
struct file* filedup(struct file*);
2007-08-24 01:58:19 +02: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 03:53:07 +02:00
2007-08-24 01:58:19 +02:00
// fs.c
int dirlink(struct inode*, char*, uint);
struct inode* dirlookup(struct inode*, char*, uint*);
struct inode* ialloc(uint, short);
struct inode* idup(struct inode*);
2007-08-24 01:58:19 +02:00
void iinit(void);
void ilock(struct inode*);
void iput(struct inode*);
void iunlock(struct inode*);
void iunlockput(struct inode*);
2007-08-24 01:58:19 +02:00
void iupdate(struct inode*);
int namecmp(const char*, const char*);
struct inode* namei(char*);
struct inode* nameiparent(char*, char*);
2007-08-24 01:58:19 +02:00
int readi(struct inode*, char*, uint, uint);
void stati(struct inode*, struct stat*);
int writei(struct inode*, char*, uint, uint);
2006-07-12 19:00:54 +02:00
2007-08-24 01:58:19 +02:00
// ide.c
void ide_init(void);
void ide_intr(void);
2007-08-24 21:32:36 +02:00
void ide_rw(struct buf *);
2006-09-08 16:40:51 +02:00
// ioapic.c
2007-08-24 01:58:19 +02:00
void ioapic_enable(int irq, int cpu);
extern uchar ioapic_id;
void ioapic_init(void);
2007-08-24 01:58:19 +02:00
// kalloc.c
char* kalloc(int);
void kfree(char*, int);
void kinit(void);
// lapic.c
int cpu(void);
extern volatile uint* lapic;
2007-08-24 01:58:19 +02:00
void lapic_disableintr(void);
void lapic_enableintr(void);
void lapic_eoi(void);
void lapic_init(int);
void lapic_startap(uchar, uint);
2007-08-24 01:58:19 +02:00
void lapic_timerinit(void);
void lapic_timerintr(void);
// mp.c
extern int ismp;
int mp_bcpu(void);
void mp_init(void);
void mp_startthem(void);
2006-06-21 03:53:07 +02:00
2007-08-24 01:58:19 +02:00
// picirq.c
void irq_enable(int);
void pic_init(void);
2006-06-27 16:35:53 +02:00
// pipe.c
2007-08-24 01:58:19 +02:00
int pipe_alloc(struct file**, struct file**);
void pipe_close(struct pipe*, int);
int pipe_read(struct pipe*, char*, int);
int pipe_write(struct pipe*, char*, int);
2006-06-27 16:35:53 +02:00
2007-08-24 01:58:19 +02:00
// proc.c
struct proc* copyproc(struct proc*);
int growproc(int);
void pinit(void);
void proc_exit(void);
int proc_kill(int);
int proc_wait(void);
void procdump(void);
2007-08-28 01:32:16 +02:00
void scheduler(void) __attribute__((noreturn));
2007-08-24 01:58:19 +02:00
void setupsegs(struct proc*);
void sleep(void*, struct spinlock*);
void userinit(void);
void wakeup(void*);
void yield(void);
2007-08-24 01:58:19 +02:00
// setjmp.S
void longjmp(struct jmpbuf*);
int setjmp(struct jmpbuf*);
2007-08-24 01:58:19 +02:00
// spinlock.c
void acquire(struct spinlock*);
void getcallerpcs(void*, uint*);
int holding(struct spinlock*);
void initlock(struct spinlock*, char*);
void release(struct spinlock*);
2007-08-24 01:58:19 +02: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 23:00:02 +02:00
char* strncpy(char*, const char*, int);
2007-08-24 01:58:19 +02: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);
// trap.c
void idtinit(void);
2007-08-27 15:34:35 +02:00
extern int ticks;
2007-08-24 01:58:19 +02:00
void tvinit(void);
2007-08-27 15:34:35 +02:00
extern struct spinlock tickslock;
2007-08-08 11:41:21 +02:00
// number of elements in fixed-size array
#define NELEM(x) (sizeof(x)/sizeof((x)[0]))