X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Flttng-sessiond.h;h=aeb03037073f67dedab460903482891ccb5489e5;hp=6090e086c4f257311c57f068aa75ef71c585c393;hb=0475c50c4d3d2cea973fe4d1f17875d231dea96c;hpb=0b2dc8df2a6d7b3341a72a04767dd6328907c97c diff --git a/src/bin/lttng-sessiond/lttng-sessiond.h b/src/bin/lttng-sessiond/lttng-sessiond.h index 6090e086c..aeb030370 100644 --- a/src/bin/lttng-sessiond/lttng-sessiond.h +++ b/src/bin/lttng-sessiond/lttng-sessiond.h @@ -65,6 +65,24 @@ struct ust_cmd_queue { struct cds_wfq_queue queue; }; +/* + * This is the wait queue containing wait nodes during the application + * registration process. + */ +struct ust_reg_wait_queue { + unsigned long count; + struct cds_list_head head; +}; + +/* + * Use by the dispatch registration to queue UST command socket to wait for the + * notify socket. + */ +struct ust_reg_wait_node { + struct ust_app *app; + struct cds_list_head head; +}; + /* * This pipe is used to inform the thread managing application notify * communication that a command is queued and ready to be processed.