diff options
author | jhb <jhb@FreeBSD.org> | 2015-06-02 14:55:55 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2015-06-02 14:55:55 +0000 |
commit | a5ce7c460fec8769bc2c31b584061bf3b7d09439 (patch) | |
tree | 0a8a65c3a627bbf0f81635f47ca990cec6c104cc | |
parent | cb2edec922e11c0dcda53db951d9f33ae4096cd5 (diff) | |
download | FreeBSD-src-a5ce7c460fec8769bc2c31b584061bf3b7d09439.zip FreeBSD-src-a5ce7c460fec8769bc2c31b584061bf3b7d09439.tar.gz |
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.
-rw-r--r-- | sys/sys/procfs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/sys/procfs.h b/sys/sys/procfs.h index 7066a98..6b32dfd 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) */ |