svn commit: r194848 - projects/libprocstat/sys/sys

Ulf Lilleengen lulf at FreeBSD.org
Wed Jun 24 15:44:52 UTC 2009


Author: lulf
Date: Wed Jun 24 15:44:51 2009
New Revision: 194848
URL: http://svn.freebsd.org/changeset/base/194848

Log:
  - Fix indentation.

Modified:
  projects/libprocstat/sys/sys/user.h

Modified: projects/libprocstat/sys/sys/user.h
==============================================================================
--- projects/libprocstat/sys/sys/user.h	Wed Jun 24 15:44:04 2009	(r194847)
+++ projects/libprocstat/sys/sys/user.h	Wed Jun 24 15:44:51 2009	(r194848)
@@ -311,18 +311,18 @@ struct kinfo_ofile {
 #endif
 
 struct kinfo_file {
-	int	kf_structsize;			/* Variable size of record. */
+	int		kf_structsize;		/* Variable size of record. */
 	uint16_t	kf_status;		/* Status flags. */
-	int	kf_type;			/* Descriptor type. */
-	int	kf_fd;				/* Array index. */
-	int	kf_ref_count;			/* Reference count. */
-	int	kf_flags;			/* Flags. */
-	int	_kf_pad0;			/* Round to 64 bit alignment */
-	int64_t	kf_offset;			/* Seek location. */
-	int	kf_vnode_type;			/* Vnode type. */
-	int	kf_sock_domain;			/* Socket domain. */
-	int	kf_sock_type;			/* Socket type. */
-	int	kf_sock_protocol;		/* Socket protocol. */
+	int		kf_type;		/* Descriptor type. */
+	int		kf_fd;			/* Array index. */
+	int		kf_ref_count;		/* Reference count. */
+	int		kf_flags;		/* Flags. */
+	int		_kf_pad0;		/* Round to 64 bit alignment */
+	int64_t		kf_offset;		/* Seek location. */
+	int		kf_vnode_type;		/* Vnode type. */
+	int		kf_sock_domain;		/* Socket domain. */
+	int		kf_sock_type;		/* Socket type. */
+	int		kf_sock_protocol;	/* Socket protocol. */
 	struct sockaddr_storage kf_sa_local;	/* Socket address. */
 	struct sockaddr_storage	kf_sa_peer;	/* Peer address. */
 	dev_t		kf_file_fsid;		/* Vnode filesystem id. */
@@ -330,9 +330,9 @@ struct kinfo_file {
 	mode_t		kf_file_mode;		/* File mode. */
 	off_t		kf_file_size;		/* File size. */
 	dev_t		kf_file_rdev;		/* File device. */
-	int	_kf_ispare[9];			/* Space for more stuff. */
+	int		_kf_ispare[9];		/* Space for more stuff. */
 	/* Truncated before copyout in sysctl */
-	char	kf_path[PATH_MAX];		/* Path to file, if any. */
+	char		kf_path[PATH_MAX];	/* Path to file, if any. */
 };
 
 /*


More information about the svn-src-projects mailing list