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=f45e313daba4dc617f3036ca0ce0e6de305a4ba5;hpb=12e2b88170b3bf7a55beb692c717470752ad51eb 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.