Date: Wed, 24 Jun 2009 16:34:58 +0000 (UTC) From: Ulf Lilleengen <lulf@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r194855 - projects/libprocstat/sys/sys Message-ID: <200906241634.n5OGYw5h020525@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lulf Date: Wed Jun 24 16:34:58 2009 New Revision: 194855 URL: http://svn.freebsd.org/changeset/base/194855 Log: - Move kf_status so that we don't break compatibility. Pointed out by: jhb Modified: projects/libprocstat/sys/sys/user.h Modified: projects/libprocstat/sys/sys/user.h ============================================================================== --- projects/libprocstat/sys/sys/user.h Wed Jun 24 16:25:17 2009 (r194854) +++ projects/libprocstat/sys/sys/user.h Wed Jun 24 16:34:58 2009 (r194855) @@ -312,7 +312,6 @@ struct kinfo_ofile { struct kinfo_file { 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. */ @@ -328,6 +327,7 @@ struct kinfo_file { dev_t kf_file_fsid; /* Vnode filesystem id. */ uint64_t kf_file_fileid; /* Global file id. */ mode_t kf_file_mode; /* File mode. */ + uint16_t kf_status; /* Status flags. */ off_t kf_file_size; /* File size. */ dev_t kf_file_rdev; /* File device. */ int _kf_ispare[9]; /* Space for more stuff. */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906241634.n5OGYw5h020525>