From cb1f49ff9325f6576ae5103e9cd2958a01f82447 Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Fri, 31 Aug 2018 17:43:32 +0200 Subject: [PATCH] MINOR: connections: Add a "handle" field to wait_list. Add a new field to struct wait_list, "handle", that can be used by the entity in charge of subscribing. --- include/types/connection.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/types/connection.h b/include/types/connection.h index 1fa0b7381f..998ecacb0e 100644 --- a/include/types/connection.h +++ b/include/types/connection.h @@ -52,6 +52,7 @@ enum sub_event_type { struct wait_list { struct tasklet *task; struct list list; + void *handle; /* To be used by the callee */ int wait_reason; }; -- 2.47.3