fd.* -> file.*
This commit is contained in:
parent
39593d2f1a
commit
9936bffa45
8 changed files with 8 additions and 8 deletions
4
Makefile
4
Makefile
|
@ -1,6 +1,6 @@
|
||||||
OBJS = \
|
OBJS = \
|
||||||
console.o\
|
console.o\
|
||||||
fd.o\
|
file.o\
|
||||||
ide.o\
|
ide.o\
|
||||||
kalloc.o\
|
kalloc.o\
|
||||||
lapic.o\
|
lapic.o\
|
||||||
|
@ -66,7 +66,7 @@ PRINT = \
|
||||||
bootasm.S bootother.S main.c init.c spinlock.c\
|
bootasm.S bootother.S main.c init.c spinlock.c\
|
||||||
proc.h proc.c setjmp.S kalloc.c\
|
proc.h proc.c setjmp.S kalloc.c\
|
||||||
syscall.h trapasm.S traps.h trap.c vectors.pl syscall.c\
|
syscall.h trapasm.S traps.h trap.c vectors.pl syscall.c\
|
||||||
buf.h dev.h fcntl.h stat.h fd.h fs.h fsvar.h fd.c fs.c bio.c ide.c\
|
buf.h dev.h fcntl.h stat.h file.h fs.h fsvar.h fd.c fs.c bio.c ide.c\
|
||||||
pipe.c\
|
pipe.c\
|
||||||
mp.h ioapic.h mp.c lapic.c ioapic.c picirq.c\
|
mp.h ioapic.h mp.c lapic.c ioapic.c picirq.c\
|
||||||
console.c\
|
console.c\
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#include "mmu.h"
|
#include "mmu.h"
|
||||||
#include "proc.h"
|
#include "proc.h"
|
||||||
#include "defs.h"
|
#include "defs.h"
|
||||||
#include "fd.h"
|
#include "file.h"
|
||||||
#include "spinlock.h"
|
#include "spinlock.h"
|
||||||
#include "dev.h"
|
#include "dev.h"
|
||||||
#include "fs.h"
|
#include "fs.h"
|
2
pipe.c
2
pipe.c
|
@ -4,7 +4,7 @@
|
||||||
#include "mmu.h"
|
#include "mmu.h"
|
||||||
#include "proc.h"
|
#include "proc.h"
|
||||||
#include "defs.h"
|
#include "defs.h"
|
||||||
#include "fd.h"
|
#include "file.h"
|
||||||
#include "spinlock.h"
|
#include "spinlock.h"
|
||||||
|
|
||||||
#define PIPESIZE 512
|
#define PIPESIZE 512
|
||||||
|
|
2
proc.c
2
proc.c
|
@ -2,7 +2,7 @@
|
||||||
#include "mmu.h"
|
#include "mmu.h"
|
||||||
#include "x86.h"
|
#include "x86.h"
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "fd.h"
|
#include "file.h"
|
||||||
#include "proc.h"
|
#include "proc.h"
|
||||||
#include "defs.h"
|
#include "defs.h"
|
||||||
#include "spinlock.h"
|
#include "spinlock.h"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include "fs.h"
|
#include "fs.h"
|
||||||
#include "fsvar.h"
|
#include "fsvar.h"
|
||||||
#include "elf.h"
|
#include "elf.h"
|
||||||
#include "fd.h"
|
#include "file.h"
|
||||||
#include "fcntl.h"
|
#include "fcntl.h"
|
||||||
|
|
||||||
// User code makes a system call with INT T_SYSCALL.
|
// User code makes a system call with INT T_SYSCALL.
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include "fs.h"
|
#include "fs.h"
|
||||||
#include "fsvar.h"
|
#include "fsvar.h"
|
||||||
#include "elf.h"
|
#include "elf.h"
|
||||||
#include "fd.h"
|
#include "file.h"
|
||||||
#include "fcntl.h"
|
#include "fcntl.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include "fs.h"
|
#include "fs.h"
|
||||||
#include "fsvar.h"
|
#include "fsvar.h"
|
||||||
#include "elf.h"
|
#include "elf.h"
|
||||||
#include "fd.h"
|
#include "file.h"
|
||||||
#include "fcntl.h"
|
#include "fcntl.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in a new issue