]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
QUIC ENGINE: Notify when ticking
authorHugo Landau <hlandau@openssl.org>
Wed, 24 Apr 2024 11:26:40 +0000 (12:26 +0100)
committerNeil Horman <nhorman@openssl.org>
Mon, 17 Feb 2025 16:27:32 +0000 (11:27 -0500)
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24971)

ssl/quic/quic_engine.c

index 240362a87136a39111991af352f8a968a3477b0c..c6ecde24a3ffd6a8bc06839531158b5decaad368 100644 (file)
@@ -166,4 +166,6 @@ static void qeng_tick(QUIC_TICK_RESULT *res, void *arg, uint32_t flags)
         ossl_quic_port_subtick(port, &subr, flags);
         ossl_quic_tick_result_merge_into(res, &subr);
     }
+
+    ossl_quic_reactor_notify_other_threads(&qeng->rtor, qeng->mutex);
 }