forked from eden-emu/eden
Update boost process dependency for debugger.
This commit is contained in:
parent
05e31d1e76
commit
002feb9d89
1 changed files with 1 additions and 9 deletions
|
@ -4,12 +4,8 @@
|
|||
#include <mutex>
|
||||
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION > 108300 && !defined(_WINDOWS) && !defined(ANDROID)
|
||||
#include <boost/process/v1/async_pipe.hpp>
|
||||
#else
|
||||
#include <boost/process/async_pipe.hpp>
|
||||
#endif
|
||||
#include <boost/version.hpp>
|
||||
|
||||
#include "common/logging/log.h"
|
||||
#include "common/polyfill_thread.h"
|
||||
|
@ -329,11 +325,7 @@ private:
|
|||
|
||||
struct ConnectionState {
|
||||
boost::asio::ip::tcp::socket client_socket;
|
||||
#if BOOST_VERSION > 108300 && !defined(_WINDOWS) && !defined(ANDROID)
|
||||
boost::process::v1::async_pipe signal_pipe;
|
||||
#else
|
||||
boost::process::async_pipe signal_pipe;
|
||||
#endif
|
||||
|
||||
SignalInfo info;
|
||||
Kernel::KScopedAutoObject<Kernel::KThread> active_thread;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue