Skip to content
Snippets Groups Projects
Commit 51716a86 authored by rsc's avatar rsc
Browse files

Rename fd_reference to more suggestive fd_incref.
(Fd_reference sounds like it might just return the ref count.)
parent 856e1fc1
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ struct fd * fd_alloc(); ...@@ -84,7 +84,7 @@ struct fd * fd_alloc();
void fd_close(struct fd *); void fd_close(struct fd *);
int fd_read(struct fd *fd, char *addr, int n); int fd_read(struct fd *fd, char *addr, int n);
int fd_write(struct fd *fd, char *addr, int n); int fd_write(struct fd *fd, char *addr, int n);
void fd_reference(struct fd *fd); void fd_incref(struct fd *fd);
// ide.c // ide.c
void ide_init(void); void ide_init(void);
......
...@@ -99,7 +99,7 @@ fd_close(struct fd *fd) ...@@ -99,7 +99,7 @@ fd_close(struct fd *fd)
} }
void void
fd_reference(struct fd *fd) fd_incref(struct fd *fd)
{ {
acquire(&fd_table_lock); acquire(&fd_table_lock);
if(fd->count < 1 || fd->type == FD_CLOSED) if(fd->count < 1 || fd->type == FD_CLOSED)
......
...@@ -118,7 +118,7 @@ copyproc(struct proc* p) ...@@ -118,7 +118,7 @@ copyproc(struct proc* p)
for(i = 0; i < NOFILE; i++){ for(i = 0; i < NOFILE; i++){
np->fds[i] = p->fds[i]; np->fds[i] = p->fds[i];
if(np->fds[i]) if(np->fds[i])
fd_reference(np->fds[i]); fd_incref(np->fds[i]);
} }
return np; return np;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment