svn commit: r313843 - stable/11/sys/sys

Konstantin Belousov kib at FreeBSD.org
Fri Feb 17 00:36:14 UTC 2017


Author: kib
Date: Fri Feb 17 00:36:12 2017
New Revision: 313843
URL: https://svnweb.freebsd.org/changeset/base/313843

Log:
  MFC r313715:
  Order alphabetically.

Modified:
  stable/11/sys/sys/syscallsubr.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/sys/syscallsubr.h
==============================================================================
--- stable/11/sys/sys/syscallsubr.h	Thu Feb 16 23:38:30 2017	(r313842)
+++ stable/11/sys/sys/syscallsubr.h	Fri Feb 17 00:36:12 2017	(r313843)
@@ -145,8 +145,8 @@ int	kern_mkfifoat(struct thread *td, int
 int	kern_mknodat(struct thread *td, int fd, char *path,
 	    enum uio_seg pathseg, int mode, int dev);
 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_nanosleep(struct thread *td, struct timespec *rqt,
 	    struct timespec *rmt);
 int	kern_ogetdirentries(struct thread *td, struct ogetdirentries_args *uap,


More information about the svn-src-all mailing list