svn commit: r243134 - head/sys/sys

Konstantin Belousov kib at FreeBSD.org
Fri Nov 16 06:25:21 UTC 2012


Author: kib
Date: Fri Nov 16 06:25:20 2012
New Revision: 243134
URL: http://svnweb.freebsd.org/changeset/base/243134

Log:
  Alphabetically reorder the forward-declarations of the structures.
  Add the declaration for enum idtype, to be used later.
  
  Reported and reviewed by:	bde
  MFC after:	28 days

Modified:
  head/sys/sys/syscallsubr.h

Modified: head/sys/sys/syscallsubr.h
==============================================================================
--- head/sys/sys/syscallsubr.h	Fri Nov 16 06:22:14 2012	(r243133)
+++ head/sys/sys/syscallsubr.h	Fri Nov 16 06:25:20 2012	(r243134)
@@ -35,25 +35,26 @@
 #include <sys/mount.h>
 
 struct file;
+enum idtype;
 struct itimerval;
 struct image_args;
 struct jail;
+struct kevent;
+struct kevent_copyops;
+struct kld_file_stat;
+struct ksiginfo;
 struct mbuf;
 struct msghdr;
 struct msqid_ds;
+struct ogetdirentries_args;
 struct rlimit;
 struct rusage;
-struct __wrusage;
 union semun;
+struct sendfile_args;
 struct sockaddr;
 struct stat;
-struct kevent;
-struct kevent_copyops;
-struct kld_file_stat;
-struct ksiginfo;
-struct sendfile_args;
 struct thr_param;
-struct ogetdirentries_args;
+struct __wrusage;
 
 int	kern___getcwd(struct thread *td, u_char *buf, enum uio_seg bufseg,
 	    u_int buflen);


More information about the svn-src-head mailing list