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
This commit is contained in:
Andrew Turner 2021-01-04 17:44:10 +00:00
parent 58661b3ba9
commit a7d8bd8c23

View File

@ -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;
};