diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-09-29 14:47:36 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-09-29 14:47:36 +0200 |
commit | 0e45906f27f51f89326de479b7a9cb60fc2920b8 (patch) | |
tree | b65ec00afdce0826fe32bdf5f85a3dbb563b68de /lib/ThreadsafeQueue.h | |
parent | 87fce948967230707de283b3e7d0e833f00bfad2 (diff) | |
download | dabmod-0e45906f27f51f89326de479b7a9cb60fc2920b8.tar.gz dabmod-0e45906f27f51f89326de479b7a9cb60fc2920b8.tar.bz2 dabmod-0e45906f27f51f89326de479b7a9cb60fc2920b8.zip |
common 53fdfd2: Fix race condition in TCPDataDispatcher get_statsnext
Diffstat (limited to 'lib/ThreadsafeQueue.h')
-rw-r--r-- | lib/ThreadsafeQueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ThreadsafeQueue.h b/lib/ThreadsafeQueue.h index 13bc19e..a8d2e85 100644 --- a/lib/ThreadsafeQueue.h +++ b/lib/ThreadsafeQueue.h @@ -31,7 +31,7 @@ #include <functional> #include <mutex> #include <condition_variable> -#include <queue> +#include <deque> #include <utility> #include <cassert> |