xref: /OK3568_Linux_fs/buildroot/package/uhd/0004-lib-Fix-missing-includes-in-rpc-hpp.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593SmuzhiyunFrom 9c4d9d826a6f40f199c526afd5ec168d5d088591 Mon Sep 17 00:00:00 2001
2*4882a593SmuzhiyunFrom: Martin Braun <martin.braun@ettus.com>
3*4882a593SmuzhiyunDate: Fri, 29 Jan 2021 12:23:50 +0100
4*4882a593SmuzhiyunSubject: [PATCH] lib: Fix missing includes in rpc.hpp
5*4882a593Smuzhiyun
6*4882a593Smuzhiyun[Retrieved from:
7*4882a593Smuzhiyunhttps://github.com/EttusResearch/uhd/commit/9c4d9d826a6f40f199c526afd5ec168d5d088591]
8*4882a593SmuzhiyunSigned-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
9*4882a593Smuzhiyun---
10*4882a593Smuzhiyun host/lib/include/uhdlib/utils/rpc.hpp | 4 ++++
11*4882a593Smuzhiyun 1 file changed, 4 insertions(+)
12*4882a593Smuzhiyun
13*4882a593Smuzhiyundiff --git a/host/lib/include/uhdlib/utils/rpc.hpp b/host/lib/include/uhdlib/utils/rpc.hpp
14*4882a593Smuzhiyunindex e87a2ee324..ca89c10547 100644
15*4882a593Smuzhiyun--- a/host/lib/include/uhdlib/utils/rpc.hpp
16*4882a593Smuzhiyun+++ b/host/lib/include/uhdlib/utils/rpc.hpp
17*4882a593Smuzhiyun@@ -12,7 +12,11 @@
18*4882a593Smuzhiyun #include <rpc/client.h>
19*4882a593Smuzhiyun #include <rpc/rpc_error.h>
20*4882a593Smuzhiyun #include <boost/format.hpp>
21*4882a593Smuzhiyun+#include <chrono>
22*4882a593Smuzhiyun #include <memory>
23*4882a593Smuzhiyun+#include <mutex>
24*4882a593Smuzhiyun+#include <string>
25*4882a593Smuzhiyun+#include <thread>
26*4882a593Smuzhiyun
27*4882a593Smuzhiyun namespace {
28*4882a593Smuzhiyun
29