| 2042 | } |
| 2043 | |
| 2044 | void |
| 2045 | falloc_abort(struct thread *td, struct file *fp) |
| 2046 | { |
| 2047 | |
| 2048 | /* |
| 2049 | * For assertion purposes. |
| 2050 | */ |
| 2051 | refcount_init(&fp->f_count, 0); |
| 2052 | _fdrop(fp, td); |
| 2053 | } |
| 2054 | |
| 2055 | /* |
| 2056 | * Install a file in a file descriptor table. |
no test coverage detected