diff options
| author | rsc <rsc> | 2007-08-28 04:22:35 +0000 |
|---|---|---|
| committer | rsc <rsc> | 2007-08-28 04:22:35 +0000 |
| commit | 7834cca60426ea156822ba05d702cf56a914467d (patch) | |
| tree | 31b30e67a8df5e70fc5605abc6dac0912f489f20 /defs.h | |
| parent | 76f09d7dd00f84bf69f7b83983c3b4843223f616 (diff) | |
| download | xv6-labs-2022-7834cca60426ea156822ba05d702cf56a914467d.tar.xz xv6-labs-2022-7834cca60426ea156822ba05d702cf56a914467d.zip | |
remove _ from pipe; be like file
Diffstat (limited to 'defs.h')
| -rw-r--r-- | defs.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -92,10 +92,10 @@ void irq_enable(int); void pic_init(void); // pipe.c -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); +int pipealloc(struct file**, struct file**); +void pipeclose(struct pipe*, int); +int piperead(struct pipe*, char*, int); +int pipewrite(struct pipe*, char*, int); // proc.c struct proc* copyproc(struct proc*); |
