svn commit: r313715 - head/sys/sys
Konstantin Belousov
kib at FreeBSD.org
Tue Feb 14 03:32:38 UTC 2017
Author: kib
Date: Tue Feb 14 03:32:37 2017
New Revision: 313715
URL: https://svnweb.freebsd.org/changeset/base/313715
Log:
Order alphabetically.
Noted by: alc
MFC after: 3 days
Modified:
head/sys/sys/syscallsubr.h
Modified: head/sys/sys/syscallsubr.h
==============================================================================
--- head/sys/sys/syscallsubr.h Tue Feb 14 01:20:03 2017 (r313714)
+++ head/sys/sys/syscallsubr.h Tue Feb 14 03:32:37 2017 (r313715)
@@ -162,8 +162,8 @@ int kern_mmap(struct thread *td, uintptr
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);
More information about the svn-src-all
mailing list