blob: 39c5c71462efc7b22049c7a2d4ecddcc8002eab1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
src/core/debugger/debugger.cpp:9:10: fatal error: 'boost/process/async_pipe.hpp' file not found
9 | #include <boost/process/async_pipe.hpp>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--- src/core/debugger/debugger.cpp.orig 2024-03-01 07:57:00 UTC
+++ src/core/debugger/debugger.cpp
@@ -6,7 +6,7 @@
#include <thread>
#include <boost/asio.hpp>
-#include <boost/process/async_pipe.hpp>
+#include <boost/process/v1/async_pipe.hpp>
#include "common/logging/log.h"
#include "common/polyfill_thread.h"
@@ -326,7 +326,7 @@ class DebuggerImpl : public DebuggerBackend { (private
struct ConnectionState {
boost::asio::ip::tcp::socket client_socket;
- boost::process::async_pipe signal_pipe;
+ boost::process::v1::async_pipe signal_pipe;
SignalInfo info;
Kernel::KScopedAutoObject<Kernel::KThread> active_thread;
|