Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Feb 2017 03:32:37 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r313715 - head/sys/sys
Message-ID:  <201702140332.v1E3Wb9h008247@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702140332.v1E3Wb9h008247>