aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2017-02-14 03:32:37 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2017-02-14 03:32:37 +0000
commit3fdcf9ef27594349801e2ebf049babacad548789 (patch)
treec55f4543f797bf75715dc3fa00a7363ca9776dca
parent05d58177e8e5568ffdfe258eb5a25aa639d01f1a (diff)
downloadsrc-3fdcf9ef27594349801e2ebf049babacad548789.tar.gz
src-3fdcf9ef27594349801e2ebf049babacad548789.zip
Order alphabetically.
Noted by: alc MFC after: 3 days
Notes
Notes: svn path=/head/; revision=313715
-rw-r--r--sys/sys/syscallsubr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/syscallsubr.h b/sys/sys/syscallsubr.h
index dfaab4f54f6e..ef8326e01148 100644
--- a/sys/sys/syscallsubr.h
+++ b/sys/sys/syscallsubr.h
@@ -162,8 +162,8 @@ int kern_mmap(struct thread *td, uintptr_t addr, size_t size, int prot,
int flags, int fd, off_t pos);
int kern_mprotect(struct thread *td, uintptr_t addr, size_t size, int prot);
int kern_msgctl(struct thread *, int, int, struct msqid_ds *);
-int kern_msgsnd(struct thread *, int, const void *, size_t, int, long);
int kern_msgrcv(struct thread *, int, void *, size_t, long, int, long *);
+int kern_msgsnd(struct thread *, int, const void *, size_t, int, long);
int kern_msync(struct thread *td, uintptr_t addr, size_t size, int flags);
int kern_munlock(struct thread *td, uintptr_t addr, size_t size);
int kern_munmap(struct thread *td, uintptr_t addr, size_t size);