Date: Tue, 2 Jun 2015 14:55:55 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r283911 - stable/10/sys/sys Message-ID: <201506021455.t52EttKe061819@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Tue Jun 2 14:55:55 2015 New Revision: 283911 URL: https://svnweb.freebsd.org/changeset/base/283911 Log: MFC 281601: Remove THRMISC_VERSION. The thrmisc structure doesn't include a version number, so this wasn't used (and can't easily be added). If at some point we want to extend thrmisc, we will probably need to just add a new note type and ensure that the new type includes a version number. Modified: stable/10/sys/sys/procfs.h Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/sys/procfs.h ============================================================================== --- stable/10/sys/sys/procfs.h Tue Jun 2 14:54:53 2015 (r283910) +++ stable/10/sys/sys/procfs.h Tue Jun 2 14:55:55 2015 (r283911) @@ -80,8 +80,6 @@ typedef struct prpsinfo { char pr_psargs[PRARGSZ+1]; /* Arguments, null terminated (1) */ } prpsinfo_t; -#define THRMISC_VERSION 1 /* Current version of thrmisc_t */ - typedef struct thrmisc { char pr_tname[MAXCOMLEN+1]; /* Thread name, null terminated (1) */ u_int _pad; /* Convenience pad, 0-filled (1) */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506021455.t52EttKe061819>