Boost.Interprocess hack for Windows (#202)

This commit is contained in:
mehrdadn
2016-07-02 21:08:23 -07:00
committed by Philipp Moritz
parent 84321d3f75
commit fe5dd5d55a
2 changed files with 30 additions and 0 deletions
+17
View File
@@ -4,6 +4,23 @@
#include <iostream>
#include <limits>
#if defined(WIN32) || defined(_WIN32)
namespace boost {
namespace interprocess {
namespace ipcdetail {
template<typename C, bool LazyInit = true, bool Phoenix = false>
class windows_intermodule_singleton;
struct windows_bootstamp;
template<>
class windows_intermodule_singleton<windows_bootstamp> {
public:
static windows_bootstamp get();
};
}
}
}
#endif
#include <boost/interprocess/managed_shared_memory.hpp>
#include <arrow/api.h>