Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Apr 2015 12:58:51 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r281601 - head/sys/sys
Message-ID:  <201504161258.t3GCwpjg045831@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Thu Apr 16 12:58:51 2015
New Revision: 281601
URL: https://svnweb.freebsd.org/changeset/base/281601

Log:
  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.
  
  Discussed with:	kib
  MFC after:	2 weeks

Modified:
  head/sys/sys/procfs.h

Modified: head/sys/sys/procfs.h
==============================================================================
--- head/sys/sys/procfs.h	Thu Apr 16 12:54:28 2015	(r281600)
+++ head/sys/sys/procfs.h	Thu Apr 16 12:58:51 2015	(r281601)
@@ -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?201504161258.t3GCwpjg045831>