From 80ab7aae5c632f7b8ffe4e3c4db63f865d149ae4 Mon Sep 17 00:00:00 2001 From: jhb Date: Thu, 16 Apr 2015 12:58:51 +0000 Subject: [PATCH] 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 --- sys/sys/procfs.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/sys/procfs.h b/sys/sys/procfs.h index 7066a9891a94..6b32dfd11721 100644 --- a/sys/sys/procfs.h +++ b/sys/sys/procfs.h @@ -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) */