Module Name:    src
Committed By:   pgoyette
Date:           Mon Jul 15 19:34:45 UTC 2019

Modified Files:
        src/sys/sys: proc.h

Log Message:
Move a comment line get it next to the line it describes, avoiding
intervening unrelated text.

NFCI


To generate a diff of this commit:
cvs rdiff -u -r1.354 -r1.355 src/sys/sys/proc.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/proc.h
diff -u src/sys/sys/proc.h:1.354 src/sys/sys/proc.h:1.355
--- src/sys/sys/proc.h:1.354	Fri Jun 21 01:03:51 2019
+++ src/sys/sys/proc.h	Mon Jul 15 19:34:45 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: proc.h,v 1.354 2019/06/21 01:03:51 kamil Exp $	*/
+/*	$NetBSD: proc.h,v 1.355 2019/07/15 19:34:45 pgoyette Exp $	*/
 
 /*-
  * Copyright (c) 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -153,8 +153,8 @@ struct emul {
 	const uint32_t	*e_nomodbits;	/* sys_nosys/sys_nomodule flags
 					 * for syscall_disestablish() */
 	const char * const *e_syscallnames; /* System call name array */
+	struct sc_autoload *e_sc_autoload; /* List of autoloadable syscalls */
 					/* Signal sending function */
-	struct sc_autoload *e_sc_autoload;	/* List of autoloadable syscalls */
 	void		(*e_sendsig)(const struct ksiginfo *,
 					  const sigset_t *);
 	void		(*e_trapsignal)(struct lwp *, struct ksiginfo *);

Reply via email to