aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2021-01-04 17:44:10 +0000
committerAndrew Turner <andrew@FreeBSD.org>2021-01-05 10:03:05 +0000
commita7d8bd8c239ed743866006636c1e99491023d3c6 (patch)
tree69d33c1d6dad4cb2d526b62e7154077721d7e75f
parent58661b3ba9ebe82f889cbc336afe618ad7f7940a (diff)
downloadsrc-a7d8bd8c239ed743866006636c1e99491023d3c6.tar.gz
src-a7d8bd8c239ed743866006636c1e99491023d3c6.zip
Add missing structs to pmclog_entry
This is used to size allocations so needs to incude all log structs to ensure its size is correct. Sponsored by: Innovate UK
-rw-r--r--sys/sys/pmclog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/sys/pmclog.h b/sys/sys/pmclog.h
index 51a8a20d14a6..0ee9b7e2e853 100644
--- a/sys/sys/pmclog.h
+++ b/sys/sys/pmclog.h
@@ -267,10 +267,13 @@ union pmclog_entry { /* only used to size scratch areas */
struct pmclog_pmcattach pl_t;
struct pmclog_pmcdetach pl_d;
struct pmclog_proccsw pl_c;
+ struct pmclog_proccreate pl_pc;
struct pmclog_procexec pl_x;
struct pmclog_procexit pl_e;
struct pmclog_procfork pl_f;
struct pmclog_sysexit pl_se;
+ struct pmclog_threadcreate pl_tc;
+ struct pmclog_threadexit pl_te;
struct pmclog_userdata pl_u;
};