aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/filedesc.h
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2002-03-23 08:46:52 +0000
committerBruce Evans <bde@FreeBSD.org>2002-03-23 08:46:52 +0000
commitc58eb46e8a8b4c6ecc40f95611173fee3deacd58 (patch)
tree4fbccf4faf4a4159d59e5692f41ff89787b0d730 /sys/sys/filedesc.h
parent391b5c4a912a5ffccd2cb09a930b0df05677cf98 (diff)
downloadsrc-c58eb46e8a8b4c6ecc40f95611173fee3deacd58.tar.gz
src-c58eb46e8a8b4c6ecc40f95611173fee3deacd58.zip
Fixed some style bugs in the removal of __P(()). The main ones were
not removing tabs before "__P((", and not outdenting continuation lines to preserve non-KNF lining up of code with parentheses. Switch to KNF formatting and/or rewrap the whole prototype in some cases.
Notes
Notes: svn path=/head/; revision=93008
Diffstat (limited to 'sys/sys/filedesc.h')
-rw-r--r--sys/sys/filedesc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/filedesc.h b/sys/sys/filedesc.h
index 05bb4e09975a..ebb478d8d76f 100644
--- a/sys/sys/filedesc.h
+++ b/sys/sys/filedesc.h
@@ -139,8 +139,8 @@ SLIST_HEAD(sigiolst, sigio);
#define FILEDESC_LOCK_ASSERT(fd, type) mtx_assert(&(fd)->fd_mtx, (type))
int closef(struct file *fp, struct thread *p);
-int dupfdopen(struct thread *td, struct filedesc *fdp, int indx,
- int dfd, int mode, int error);
+int dupfdopen(struct thread *td, struct filedesc *fdp, int indx, int dfd,
+ int mode, int error);
int falloc(struct thread *p, struct file **resultfp, int *resultfd);
int fdalloc(struct thread *p, int want, int *result);
int fdavail(struct thread *td, int n);